Home » Personal collection » Acorn hard disk » apps » web » !ArcWeb/PublicHTML/ftpinst

!ArcWeb/PublicHTML/ftpinst

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Personal collection » Acorn hard disk » apps » web
Filename: !ArcWeb/PublicHTML/ftpinst
Read OK:
File size: 0B35 bytes
Load address: 0000
Exec address: 0000
Duplicates

There is 1 duplicate copy of this file in the archive:

File contents
<html>
<title>FTP -- File Transfer Protocol</title>
<meta name=description content="Description of how to use FTP within ArcWeb">
<body>
<h1>File Transfer Protocol (FTP)</h1>

ArcWeb contains its own FTP client which is capable of performing most of the
usual FTP activities.  It allows you to upload and download files via
anonymous FTP and <a href="#nonanon">non-anonymous FTP</a> too.  The two
alternate types differ only in the authentication required to use them.  With
anonymous FTP, no secure authentication is require and non-anonymous FTP
requires specific user authentication (although it still isn't that secure
because the password is passed across the network in plain text format
anyway).

<h2>Anonymous FTP</h2>

The format of a URL for anonymous FTP is:

<blockquote><code>ftp://&laquo;FTP server host name&raquo;/&laquo;path to
object&raquo;</code></blockquote>

Provided that the host name you give is running an anonymous FTP service,
then you should be able to access any of the files on it by navigating around
the directory structure by clicking on directories to view those directories,
and clicking on files to download them.

<p>You can also <em>upload</em> files to the server.  It is usual for
anonymous FTP servers to allow uploads only to the <code>/incoming</code>
or <code>/pub/incoming</code> directories (although restrictions are far
less with non-anonymous FTP).  To upload a file, drag it from a Filer window
onto a window displaying an FTP directory listing generated by ArcWeb.  For
more details see the page about <a href="ftpupload">FTP uploads</a>.


<a name=nonanon><h2>Non-anonymous FTP</h2></a>

The format of a URL for non-anonymous FTP is:

<blockquote><code>ftp://&laquo;User name&raquo;@&laquo;FTP server
host name&raquo;/&laquo;path to object&raquo;</code></blockquote>

If the supplied user name requires a password to access the FTP 
service supplied by the FTP server, then you will be prompted for it.  The
password is cached for the duration of the session (permanently if you have
made the authentication database persistent in the Network configuration
window).
<p>
If you really want to, you can specify the password in the URL thus:

<blockquote><code>ftp://&laquo;User
name&raquo;:&laquo;Password&raquo;@&laquo;FTP server host
name&raquo;/&laquo;path to object&raquo;</code></blockquote>

The problem with putting the password in the URL directly, is that it will
end up in your global history like that in plain view for anybody to see.  If
you bookmark a directory listing, it will end up in your bookmark files.  If
you allow ArcWeb to prompt you for the password, then it will only store it
in the authentication database which is stored on disc in an encrypted
format which although not secure would require some work to decrypt.

<hr>
<address>Stewart Brodie<br>5th April 1997</address>

</body> </html>
00000000  3c 68 74 6d 6c 3e 0a 3c  74 69 74 6c 65 3e 46 54  |<html>.<title>FT|
00000010  50 20 2d 2d 20 46 69 6c  65 20 54 72 61 6e 73 66  |P -- File Transf|
00000020  65 72 20 50 72 6f 74 6f  63 6f 6c 3c 2f 74 69 74  |er Protocol</tit|
00000030  6c 65 3e 0a 3c 6d 65 74  61 20 6e 61 6d 65 3d 64  |le>.<meta name=d|
00000040  65 73 63 72 69 70 74 69  6f 6e 20 63 6f 6e 74 65  |escription conte|
00000050  6e 74 3d 22 44 65 73 63  72 69 70 74 69 6f 6e 20  |nt="Description |
00000060  6f 66 20 68 6f 77 20 74  6f 20 75 73 65 20 46 54  |of how to use FT|
00000070  50 20 77 69 74 68 69 6e  20 41 72 63 57 65 62 22  |P within ArcWeb"|
00000080  3e 0a 3c 62 6f 64 79 3e  0a 3c 68 31 3e 46 69 6c  |>.<body>.<h1>Fil|
00000090  65 20 54 72 61 6e 73 66  65 72 20 50 72 6f 74 6f  |e Transfer Proto|
000000a0  63 6f 6c 20 28 46 54 50  29 3c 2f 68 31 3e 0a 0a  |col (FTP)</h1>..|
000000b0  41 72 63 57 65 62 20 63  6f 6e 74 61 69 6e 73 20  |ArcWeb contains |
000000c0  69 74 73 20 6f 77 6e 20  46 54 50 20 63 6c 69 65  |its own FTP clie|
000000d0  6e 74 20 77 68 69 63 68  20 69 73 20 63 61 70 61  |nt which is capa|
000000e0  62 6c 65 20 6f 66 20 70  65 72 66 6f 72 6d 69 6e  |ble of performin|
000000f0  67 20 6d 6f 73 74 20 6f  66 20 74 68 65 0a 75 73  |g most of the.us|
00000100  75 61 6c 20 46 54 50 20  61 63 74 69 76 69 74 69  |ual FTP activiti|
00000110  65 73 2e 20 20 49 74 20  61 6c 6c 6f 77 73 20 79  |es.  It allows y|
00000120  6f 75 20 74 6f 20 75 70  6c 6f 61 64 20 61 6e 64  |ou to upload and|
00000130  20 64 6f 77 6e 6c 6f 61  64 20 66 69 6c 65 73 20  | download files |
00000140  76 69 61 0a 61 6e 6f 6e  79 6d 6f 75 73 20 46 54  |via.anonymous FT|
00000150  50 20 61 6e 64 20 3c 61  20 68 72 65 66 3d 22 23  |P and <a href="#|
00000160  6e 6f 6e 61 6e 6f 6e 22  3e 6e 6f 6e 2d 61 6e 6f  |nonanon">non-ano|
00000170  6e 79 6d 6f 75 73 20 46  54 50 3c 2f 61 3e 20 74  |nymous FTP</a> t|
00000180  6f 6f 2e 20 20 54 68 65  20 74 77 6f 0a 61 6c 74  |oo.  The two.alt|
00000190  65 72 6e 61 74 65 20 74  79 70 65 73 20 64 69 66  |ernate types dif|
000001a0  66 65 72 20 6f 6e 6c 79  20 69 6e 20 74 68 65 20  |fer only in the |
000001b0  61 75 74 68 65 6e 74 69  63 61 74 69 6f 6e 20 72  |authentication r|
000001c0  65 71 75 69 72 65 64 20  74 6f 20 75 73 65 20 74  |equired to use t|
000001d0  68 65 6d 2e 20 20 57 69  74 68 0a 61 6e 6f 6e 79  |hem.  With.anony|
000001e0  6d 6f 75 73 20 46 54 50  2c 20 6e 6f 20 73 65 63  |mous FTP, no sec|
000001f0  75 72 65 20 61 75 74 68  65 6e 74 69 63 61 74 69  |ure authenticati|
00000200  6f 6e 20 69 73 20 72 65  71 75 69 72 65 20 61 6e  |on is require an|
00000210  64 20 6e 6f 6e 2d 61 6e  6f 6e 79 6d 6f 75 73 20  |d non-anonymous |
00000220  46 54 50 0a 72 65 71 75  69 72 65 73 20 73 70 65  |FTP.requires spe|
00000230  63 69 66 69 63 20 75 73  65 72 20 61 75 74 68 65  |cific user authe|
00000240  6e 74 69 63 61 74 69 6f  6e 20 28 61 6c 74 68 6f  |ntication (altho|
00000250  75 67 68 20 69 74 20 73  74 69 6c 6c 20 69 73 6e  |ugh it still isn|
00000260  27 74 20 74 68 61 74 20  73 65 63 75 72 65 0a 62  |'t that secure.b|
00000270  65 63 61 75 73 65 20 74  68 65 20 70 61 73 73 77  |ecause the passw|
00000280  6f 72 64 20 69 73 20 70  61 73 73 65 64 20 61 63  |ord is passed ac|
00000290  72 6f 73 73 20 74 68 65  20 6e 65 74 77 6f 72 6b  |ross the network|
000002a0  20 69 6e 20 70 6c 61 69  6e 20 74 65 78 74 20 66  | in plain text f|
000002b0  6f 72 6d 61 74 0a 61 6e  79 77 61 79 29 2e 0a 0a  |ormat.anyway)...|
000002c0  3c 68 32 3e 41 6e 6f 6e  79 6d 6f 75 73 20 46 54  |<h2>Anonymous FT|
000002d0  50 3c 2f 68 32 3e 0a 0a  54 68 65 20 66 6f 72 6d  |P</h2>..The form|
000002e0  61 74 20 6f 66 20 61 20  55 52 4c 20 66 6f 72 20  |at of a URL for |
000002f0  61 6e 6f 6e 79 6d 6f 75  73 20 46 54 50 20 69 73  |anonymous FTP is|
00000300  3a 0a 0a 3c 62 6c 6f 63  6b 71 75 6f 74 65 3e 3c  |:..<blockquote><|
00000310  63 6f 64 65 3e 66 74 70  3a 2f 2f 26 6c 61 71 75  |code>ftp://&laqu|
00000320  6f 3b 46 54 50 20 73 65  72 76 65 72 20 68 6f 73  |o;FTP server hos|
00000330  74 20 6e 61 6d 65 26 72  61 71 75 6f 3b 2f 26 6c  |t name&raquo;/&l|
00000340  61 71 75 6f 3b 70 61 74  68 20 74 6f 0a 6f 62 6a  |aquo;path to.obj|
00000350  65 63 74 26 72 61 71 75  6f 3b 3c 2f 63 6f 64 65  |ect&raquo;</code|
00000360  3e 3c 2f 62 6c 6f 63 6b  71 75 6f 74 65 3e 0a 0a  |></blockquote>..|
00000370  50 72 6f 76 69 64 65 64  20 74 68 61 74 20 74 68  |Provided that th|
00000380  65 20 68 6f 73 74 20 6e  61 6d 65 20 79 6f 75 20  |e host name you |
00000390  67 69 76 65 20 69 73 20  72 75 6e 6e 69 6e 67 20  |give is running |
000003a0  61 6e 20 61 6e 6f 6e 79  6d 6f 75 73 20 46 54 50  |an anonymous FTP|
000003b0  20 73 65 72 76 69 63 65  2c 0a 74 68 65 6e 20 79  | service,.then y|
000003c0  6f 75 20 73 68 6f 75 6c  64 20 62 65 20 61 62 6c  |ou should be abl|
000003d0  65 20 74 6f 20 61 63 63  65 73 73 20 61 6e 79 20  |e to access any |
000003e0  6f 66 20 74 68 65 20 66  69 6c 65 73 20 6f 6e 20  |of the files on |
000003f0  69 74 20 62 79 20 6e 61  76 69 67 61 74 69 6e 67  |it by navigating|
00000400  20 61 72 6f 75 6e 64 0a  74 68 65 20 64 69 72 65  | around.the dire|
00000410  63 74 6f 72 79 20 73 74  72 75 63 74 75 72 65 20  |ctory structure |
00000420  62 79 20 63 6c 69 63 6b  69 6e 67 20 6f 6e 20 64  |by clicking on d|
00000430  69 72 65 63 74 6f 72 69  65 73 20 74 6f 20 76 69  |irectories to vi|
00000440  65 77 20 74 68 6f 73 65  20 64 69 72 65 63 74 6f  |ew those directo|
00000450  72 69 65 73 2c 0a 61 6e  64 20 63 6c 69 63 6b 69  |ries,.and clicki|
00000460  6e 67 20 6f 6e 20 66 69  6c 65 73 20 74 6f 20 64  |ng on files to d|
00000470  6f 77 6e 6c 6f 61 64 20  74 68 65 6d 2e 0a 0a 3c  |ownload them...<|
00000480  70 3e 59 6f 75 20 63 61  6e 20 61 6c 73 6f 20 3c  |p>You can also <|
00000490  65 6d 3e 75 70 6c 6f 61  64 3c 2f 65 6d 3e 20 66  |em>upload</em> f|
000004a0  69 6c 65 73 20 74 6f 20  74 68 65 20 73 65 72 76  |iles to the serv|
000004b0  65 72 2e 20 20 49 74 20  69 73 20 75 73 75 61 6c  |er.  It is usual|
000004c0  20 66 6f 72 0a 61 6e 6f  6e 79 6d 6f 75 73 20 46  | for.anonymous F|
000004d0  54 50 20 73 65 72 76 65  72 73 20 74 6f 20 61 6c  |TP servers to al|
000004e0  6c 6f 77 20 75 70 6c 6f  61 64 73 20 6f 6e 6c 79  |low uploads only|
000004f0  20 74 6f 20 74 68 65 20  3c 63 6f 64 65 3e 2f 69  | to the <code>/i|
00000500  6e 63 6f 6d 69 6e 67 3c  2f 63 6f 64 65 3e 0a 6f  |ncoming</code>.o|
00000510  72 20 3c 63 6f 64 65 3e  2f 70 75 62 2f 69 6e 63  |r <code>/pub/inc|
00000520  6f 6d 69 6e 67 3c 2f 63  6f 64 65 3e 20 64 69 72  |oming</code> dir|
00000530  65 63 74 6f 72 69 65 73  20 28 61 6c 74 68 6f 75  |ectories (althou|
00000540  67 68 20 72 65 73 74 72  69 63 74 69 6f 6e 73 20  |gh restrictions |
00000550  61 72 65 20 66 61 72 0a  6c 65 73 73 20 77 69 74  |are far.less wit|
00000560  68 20 6e 6f 6e 2d 61 6e  6f 6e 79 6d 6f 75 73 20  |h non-anonymous |
00000570  46 54 50 29 2e 20 20 54  6f 20 75 70 6c 6f 61 64  |FTP).  To upload|
00000580  20 61 20 66 69 6c 65 2c  20 64 72 61 67 20 69 74  | a file, drag it|
00000590  20 66 72 6f 6d 20 61 20  46 69 6c 65 72 20 77 69  | from a Filer wi|
000005a0  6e 64 6f 77 0a 6f 6e 74  6f 20 61 20 77 69 6e 64  |ndow.onto a wind|
000005b0  6f 77 20 64 69 73 70 6c  61 79 69 6e 67 20 61 6e  |ow displaying an|
000005c0  20 46 54 50 20 64 69 72  65 63 74 6f 72 79 20 6c  | FTP directory l|
000005d0  69 73 74 69 6e 67 20 67  65 6e 65 72 61 74 65 64  |isting generated|
000005e0  20 62 79 20 41 72 63 57  65 62 2e 20 20 46 6f 72  | by ArcWeb.  For|
000005f0  0a 6d 6f 72 65 20 64 65  74 61 69 6c 73 20 73 65  |.more details se|
00000600  65 20 74 68 65 20 70 61  67 65 20 61 62 6f 75 74  |e the page about|
00000610  20 3c 61 20 68 72 65 66  3d 22 66 74 70 75 70 6c  | <a href="ftpupl|
00000620  6f 61 64 22 3e 46 54 50  20 75 70 6c 6f 61 64 73  |oad">FTP uploads|
00000630  3c 2f 61 3e 2e 0a 0a 0a  3c 61 20 6e 61 6d 65 3d  |</a>....<a name=|
00000640  6e 6f 6e 61 6e 6f 6e 3e  3c 68 32 3e 4e 6f 6e 2d  |nonanon><h2>Non-|
00000650  61 6e 6f 6e 79 6d 6f 75  73 20 46 54 50 3c 2f 68  |anonymous FTP</h|
00000660  32 3e 3c 2f 61 3e 0a 0a  54 68 65 20 66 6f 72 6d  |2></a>..The form|
00000670  61 74 20 6f 66 20 61 20  55 52 4c 20 66 6f 72 20  |at of a URL for |
00000680  6e 6f 6e 2d 61 6e 6f 6e  79 6d 6f 75 73 20 46 54  |non-anonymous FT|
00000690  50 20 69 73 3a 0a 0a 3c  62 6c 6f 63 6b 71 75 6f  |P is:..<blockquo|
000006a0  74 65 3e 3c 63 6f 64 65  3e 66 74 70 3a 2f 2f 26  |te><code>ftp://&|
000006b0  6c 61 71 75 6f 3b 55 73  65 72 20 6e 61 6d 65 26  |laquo;User name&|
000006c0  72 61 71 75 6f 3b 40 26  6c 61 71 75 6f 3b 46 54  |raquo;@&laquo;FT|
000006d0  50 20 73 65 72 76 65 72  0a 68 6f 73 74 20 6e 61  |P server.host na|
000006e0  6d 65 26 72 61 71 75 6f  3b 2f 26 6c 61 71 75 6f  |me&raquo;/&laquo|
000006f0  3b 70 61 74 68 20 74 6f  20 6f 62 6a 65 63 74 26  |;path to object&|
00000700  72 61 71 75 6f 3b 3c 2f  63 6f 64 65 3e 3c 2f 62  |raquo;</code></b|
00000710  6c 6f 63 6b 71 75 6f 74  65 3e 0a 0a 49 66 20 74  |lockquote>..If t|
00000720  68 65 20 73 75 70 70 6c  69 65 64 20 75 73 65 72  |he supplied user|
00000730  20 6e 61 6d 65 20 72 65  71 75 69 72 65 73 20 61  | name requires a|
00000740  20 70 61 73 73 77 6f 72  64 20 74 6f 20 61 63 63  | password to acc|
00000750  65 73 73 20 74 68 65 20  46 54 50 20 0a 73 65 72  |ess the FTP .ser|
00000760  76 69 63 65 20 73 75 70  70 6c 69 65 64 20 62 79  |vice supplied by|
00000770  20 74 68 65 20 46 54 50  20 73 65 72 76 65 72 2c  | the FTP server,|
00000780  20 74 68 65 6e 20 79 6f  75 20 77 69 6c 6c 20 62  | then you will b|
00000790  65 20 70 72 6f 6d 70 74  65 64 20 66 6f 72 20 69  |e prompted for i|
000007a0  74 2e 20 20 54 68 65 0a  70 61 73 73 77 6f 72 64  |t.  The.password|
000007b0  20 69 73 20 63 61 63 68  65 64 20 66 6f 72 20 74  | is cached for t|
000007c0  68 65 20 64 75 72 61 74  69 6f 6e 20 6f 66 20 74  |he duration of t|
000007d0  68 65 20 73 65 73 73 69  6f 6e 20 28 70 65 72 6d  |he session (perm|
000007e0  61 6e 65 6e 74 6c 79 20  69 66 20 79 6f 75 20 68  |anently if you h|
000007f0  61 76 65 0a 6d 61 64 65  20 74 68 65 20 61 75 74  |ave.made the aut|
00000800  68 65 6e 74 69 63 61 74  69 6f 6e 20 64 61 74 61  |hentication data|
00000810  62 61 73 65 20 70 65 72  73 69 73 74 65 6e 74 20  |base persistent |
00000820  69 6e 20 74 68 65 20 4e  65 74 77 6f 72 6b 20 63  |in the Network c|
00000830  6f 6e 66 69 67 75 72 61  74 69 6f 6e 0a 77 69 6e  |onfiguration.win|
00000840  64 6f 77 29 2e 0a 3c 70  3e 0a 49 66 20 79 6f 75  |dow)..<p>.If you|
00000850  20 72 65 61 6c 6c 79 20  77 61 6e 74 20 74 6f 2c  | really want to,|
00000860  20 79 6f 75 20 63 61 6e  20 73 70 65 63 69 66 79  | you can specify|
00000870  20 74 68 65 20 70 61 73  73 77 6f 72 64 20 69 6e  | the password in|
00000880  20 74 68 65 20 55 52 4c  20 74 68 75 73 3a 0a 0a  | the URL thus:..|
00000890  3c 62 6c 6f 63 6b 71 75  6f 74 65 3e 3c 63 6f 64  |<blockquote><cod|
000008a0  65 3e 66 74 70 3a 2f 2f  26 6c 61 71 75 6f 3b 55  |e>ftp://&laquo;U|
000008b0  73 65 72 0a 6e 61 6d 65  26 72 61 71 75 6f 3b 3a  |ser.name&raquo;:|
000008c0  26 6c 61 71 75 6f 3b 50  61 73 73 77 6f 72 64 26  |&laquo;Password&|
000008d0  72 61 71 75 6f 3b 40 26  6c 61 71 75 6f 3b 46 54  |raquo;@&laquo;FT|
000008e0  50 20 73 65 72 76 65 72  20 68 6f 73 74 0a 6e 61  |P server host.na|
000008f0  6d 65 26 72 61 71 75 6f  3b 2f 26 6c 61 71 75 6f  |me&raquo;/&laquo|
00000900  3b 70 61 74 68 20 74 6f  20 6f 62 6a 65 63 74 26  |;path to object&|
00000910  72 61 71 75 6f 3b 3c 2f  63 6f 64 65 3e 3c 2f 62  |raquo;</code></b|
00000920  6c 6f 63 6b 71 75 6f 74  65 3e 0a 0a 54 68 65 20  |lockquote>..The |
00000930  70 72 6f 62 6c 65 6d 20  77 69 74 68 20 70 75 74  |problem with put|
00000940  74 69 6e 67 20 74 68 65  20 70 61 73 73 77 6f 72  |ting the passwor|
00000950  64 20 69 6e 20 74 68 65  20 55 52 4c 20 64 69 72  |d in the URL dir|
00000960  65 63 74 6c 79 2c 20 69  73 20 74 68 61 74 20 69  |ectly, is that i|
00000970  74 20 77 69 6c 6c 0a 65  6e 64 20 75 70 20 69 6e  |t will.end up in|
00000980  20 79 6f 75 72 20 67 6c  6f 62 61 6c 20 68 69 73  | your global his|
00000990  74 6f 72 79 20 6c 69 6b  65 20 74 68 61 74 20 69  |tory like that i|
000009a0  6e 20 70 6c 61 69 6e 20  76 69 65 77 20 66 6f 72  |n plain view for|
000009b0  20 61 6e 79 62 6f 64 79  20 74 6f 20 73 65 65 2e  | anybody to see.|
000009c0  20 20 49 66 0a 79 6f 75  20 62 6f 6f 6b 6d 61 72  |  If.you bookmar|
000009d0  6b 20 61 20 64 69 72 65  63 74 6f 72 79 20 6c 69  |k a directory li|
000009e0  73 74 69 6e 67 2c 20 69  74 20 77 69 6c 6c 20 65  |sting, it will e|
000009f0  6e 64 20 75 70 20 69 6e  20 79 6f 75 72 20 62 6f  |nd up in your bo|
00000a00  6f 6b 6d 61 72 6b 20 66  69 6c 65 73 2e 20 20 49  |okmark files.  I|
00000a10  66 0a 79 6f 75 20 61 6c  6c 6f 77 20 41 72 63 57  |f.you allow ArcW|
00000a20  65 62 20 74 6f 20 70 72  6f 6d 70 74 20 79 6f 75  |eb to prompt you|
00000a30  20 66 6f 72 20 74 68 65  20 70 61 73 73 77 6f 72  | for the passwor|
00000a40  64 2c 20 74 68 65 6e 20  69 74 20 77 69 6c 6c 20  |d, then it will |
00000a50  6f 6e 6c 79 20 73 74 6f  72 65 20 69 74 0a 69 6e  |only store it.in|
00000a60  20 74 68 65 20 61 75 74  68 65 6e 74 69 63 61 74  | the authenticat|
00000a70  69 6f 6e 20 64 61 74 61  62 61 73 65 20 77 68 69  |ion database whi|
00000a80  63 68 20 69 73 20 73 74  6f 72 65 64 20 6f 6e 20  |ch is stored on |
00000a90  64 69 73 63 20 69 6e 20  61 6e 20 65 6e 63 72 79  |disc in an encry|
00000aa0  70 74 65 64 0a 66 6f 72  6d 61 74 20 77 68 69 63  |pted.format whic|
00000ab0  68 20 61 6c 74 68 6f 75  67 68 20 6e 6f 74 20 73  |h although not s|
00000ac0  65 63 75 72 65 20 77 6f  75 6c 64 20 72 65 71 75  |ecure would requ|
00000ad0  69 72 65 20 73 6f 6d 65  20 77 6f 72 6b 20 74 6f  |ire some work to|
00000ae0  20 64 65 63 72 79 70 74  2e 0a 0a 3c 68 72 3e 0a  | decrypt...<hr>.|
00000af0  3c 61 64 64 72 65 73 73  3e 53 74 65 77 61 72 74  |<address>Stewart|
00000b00  20 42 72 6f 64 69 65 3c  62 72 3e 35 74 68 20 41  | Brodie<br>5th A|
00000b10  70 72 69 6c 20 31 39 39  37 3c 2f 61 64 64 72 65  |pril 1997</addre|
00000b20  73 73 3e 0a 0a 3c 2f 62  6f 64 79 3e 20 3c 2f 68  |ss>..</body> </h|
00000b30  74 6d 6c 3e 0a                                    |tml>.|
00000b35