*BSD News Article 72349


Return to BSD News archive

Path: euryale.cc.adfa.oz.au!newshost.anu.edu.au!harbinger.cc.monash.edu.au!news.mira.net.au!news.mel.connect.com.au!munnari.OZ.AU!spool.mu.edu!howland.reston.ans.net!math.ohio-state.edu!cs.utexas.edu!swrinde!elroy.jpl.nasa.gov!decwrl!news.PBI.net!news.mathworks.com!newsfeed.internetmci.com!in2.uu.net!news1.erols.com!newsmaster@erols.com
From: Ken Bigelow <kbigelow@www.play-hookey.com>
Newsgroups: demon.ip.support,demon.tech.unix,comp.unix.bsd.freebsd.misc
Subject: Re: Batch FTP and Web Pages
Date: Fri, 28 Jun 1996 11:19:13 -0700
Organization: Erols Internet Services
Lines: 26
Message-ID: <31D42221.58C3@www.play-hookey.com>
References: <31c2e7bd.14691630@news.demon.co.uk> <834878464snz@pair.com> <834921960snz@michaels.demon.co.uk> <835206024.5881.2@diltd.demon.co.uk> <slrn4sgtd6.ds.dom@myrddin.demon.co.uk> <835294223.22071.1@diltd.demon.co.uk> <slrn4sjj16.cs.dom@myrddin.demon.co.uk> <199606261821.SAA02204@mauve.demon.co.uk> <4qtcee$n1h@alfie.demon.co.uk>
NNTP-Posting-Host: kenjb05.play-hookey.com
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 2.02 (Win16; I)

Nick Holloway wrote:
> 
> Ian Stirling <root@mauve.demon.co.uk> writes:
> > A www-server that could do reget, or restart or whatever would
> > be very usefull, can such a thing exist?
> 
> I haven't checked the HTTP protocol in detail, but I suspect that it
> doesn't include an offset to continue fetching at.
> 

The problem with that idea is that a Web page is not a single file. The 
main HTML document is (usually) not that big, and consists entirely of 
ASCII text.

All of the images, drawings, colorful lines, etc. are .gif or .jpeg/.jpg 
files which are loaded separately and merged into the display by the 
browser. Even if you save the loaded page as a file and later reload it 
into your browser, the images won't be there and all you'll see is the 
icons provided by the browser itself, embedded in the text. Also, all 
good Web pages get updated regularly, so any effort to reload part of a 
page may be automatically doomed.

There seems to be no good way to retrieve such dynamic files in pieces 
over time.

Ken