How to find out all the sites using Zope? Write some code which will check the web and return results for any site which responds to adding "/manage" Can anyone suggest how make this really work? - Jason ________________________________________________________________ Jason CUNLIFFE = NOMADICS.(Interactive Art and Technology).Design Director
Jason Cunliffe wrote:
How to find out all the sites using Zope?
Write some code which will check the web and return results for any site which responds to adding "/manage"
Can anyone suggest how make this really work?
Even better, use /manage_copyright. That way you will never accidentally generate an e-mail telling of the "unauthorized" access. Use wget or Python's urllib. Shane
Even better, sniff for the Server: directive in the HTTP header... For example, Zope.org returns as an HTTP header: Server: Zope/(unreleased version) ZServer/1.1b1 ----- Original Message ----- From: "Shane Hathaway" <shane@digicool.com> To: <zope@zope.org> Sent: Thursday, September 28, 2000 4:38 PM Subject: Re: [Zope] Zopebot
Jason Cunliffe wrote:
How to find out all the sites using Zope?
Write some code which will check the web and return results for any site which responds to adding "/manage"
Can anyone suggest how make this really work?
Even better, use /manage_copyright. That way you will never accidentally generate an e-mail telling of the "unauthorized" access.
Use wget or Python's urllib.
Shane
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Chris McDonough wrote:
Even better, sniff for the Server: directive in the HTTP header...
For example, Zope.org returns as an HTTP header: Server: Zope/(unreleased version) ZServer/1.1b1
It can be modified by Apache, though. But then there's the "X-Powered-By: Zope ..." header. I wonder if there's any way to count Zope sites. Sometimes you might find a nice surprise, such as: http://www.cbsnewyork.com/manage_copyright Shane
Shane Hathaway wrote: ...
I wonder if there's any way to count Zope sites. Sometimes you might find a nice surprise, such as:
!!! That's cool! -- E PLURIBUS LINUX
participants (4)
-
Bill Anderson -
Chris McDonough -
Jason Cunliffe -
Shane Hathaway