This may very well be a FAQ, but I can't seem to locate the answer. How do I import my old website run by Apache into Zope? Is there an easy way or do I have to sit here and add each individual file? (it's a simple static site) --- Rahsheen Porter __________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/
You could simply fire up an ftp client and ftp everything in (very quick and simple). Or search Zope.org for load_site.py this is a script that imports large amounts into zope for you. http://www.zope.org/Members/itamar/load_site Cheers. -- Andy McKay. ----- Original Message ----- From: "Rahsheen Porter" <cipher_atl@yahoo.com> To: <zope@zope.org> Sent: Monday, May 14, 2001 4:56 PM Subject: [Zope] Converting old site to Zope
This may very well be a FAQ, but I can't seem to locate the answer. How do I import my old website run by Apache into Zope? Is there an easy way or do I have to sit here and add each individual file? (it's a simple static site)
--- Rahsheen Porter
__________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/
_______________________________________________ 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 )
Just did this with a site and while it does not like symbolic links very much it can suck up a 300 page (200 image) site in a few minutes. Very cool utility. In the your_zope/utilities/ folder. BZ At 5:11 PM -0700 5/14/01, Andy McKay wrote:
You could simply fire up an ftp client and ftp everything in (very quick and simple). Or search Zope.org for load_site.py this is a script that imports large amounts into zope for you.
http://www.zope.org/Members/itamar/load_site
Cheers. -- Andy McKay.
----- Original Message ----- From: "Rahsheen Porter" <cipher_atl@yahoo.com> To: <zope@zope.org> Sent: Monday, May 14, 2001 4:56 PM Subject: [Zope] Converting old site to Zope
This may very well be a FAQ, but I can't seem to locate the answer. How do I import my old website run by Apache into Zope? Is there an easy way or do I have to sit here and add each individual file? (it's a simple static site)
--- Rahsheen Porter
__________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/
_______________________________________________ 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 )
_______________________________________________ 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 )
Well, I did end up using loadsite.py. It worked great except that it totally murdered all my header tags, killing all my Javascript and CSS headers. It also bombed out after a while, guess I shoulda paid attention to the errors. Anyway, thanks for the pointer, guys. --- BZ <bz@bwanazulia.com> wrote:
Just did this with a site and while it does not like symbolic links very much it can suck up a 300 page (200 image) site in a few minutes. Very cool utility. In the your_zope/utilities/ folder.
BZ
At 5:11 PM -0700 5/14/01, Andy McKay wrote:
You could simply fire up an ftp client and ftp everything in (very quick and simple). Or search Zope.org for load_site.py this is a script that imports large amounts into zope for you.
http://www.zope.org/Members/itamar/load_site
Cheers. -- Andy McKay.
----- Original Message ----- From: "Rahsheen Porter" <cipher_atl@yahoo.com> To: <zope@zope.org> Sent: Monday, May 14, 2001 4:56 PM Subject: [Zope] Converting old site to Zope
This may very well be a FAQ, but I can't seem to locate the answer. How do I import my old website run by Apache into Zope? Is there an easy way or do I have to sit here and add each individual file? (it's a simple static site)
--- Rahsheen Porter
Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/
_______________________________________________ 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
_______________________________________________ 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
__________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/
On Tue, 15 May 2001, Rahsheen Porter wrote:
Well, I did end up using loadsite.py. It worked great except that it totally murdered all my header tags, killing all my Javascript and CSS headers. It also
It preserves headers in loadsite-head property of an object. Oleg. ---- Oleg Broytmann http://www.zope.org/Members/phd/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.
Yeah, I just stumbled on that this morning. Cool. --- Oleg Broytmann <phd@phd.fep.ru> wrote:
On Tue, 15 May 2001, Rahsheen Porter wrote:
Well, I did end up using loadsite.py. It worked great except that it totally murdered all my header tags, killing all my Javascript and CSS headers. It also
It preserves headers in loadsite-head property of an object.
__________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/
Thank you! :) On Tue, 15 May 2001, Rahsheen Porter wrote:
Yeah, I just stumbled on that this morning. Cool.
It preserves headers in loadsite-head property of an object.
Oleg. ---- Oleg Broytmann http://www.zope.org/Members/phd/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.
Hi Rasheen, there is a load_site.py script to do exacly this. However, I would not recomment this. Try to figure out whats common in your files and isolate it into (Z-)classes. This way you only need to import a very small part of your old site and would use the advantages of Zope. HTH Tino Wildenhain --On Montag, 14. Mai 2001 16:56 -0700 Rahsheen Porter <cipher_atl@yahoo.com> wrote:
This may very well be a FAQ, but I can't seem to locate the answer. How do I import my old website run by Apache into Zope? Is there an easy way or do I have to sit here and add each individual file? (it's a simple static site)
--- Rahsheen Porter
__________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/
_______________________________________________ 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 )
participants (5)
-
Andy McKay -
BZ -
Oleg Broytmann -
Rahsheen Porter -
Tino Wildenhain