Re: Including files

Andrew Payne <payne@n8kei.tiac.net>
Errors-To: listmaster@www0.cern.ch
Date: Thu, 9 Jun 1994 13:32:05 +0200
Errors-To: listmaster@www0.cern.ch
Message-id: <199406091129.HAA05968@n8kei.tiac.net>
Errors-To: listmaster@www0.cern.ch
Reply-To: payne@n8kei.tiac.net
Originator: www-talk@info.cern.ch
Sender: www-talk@www0.cern.ch
Precedence: bulk
From: Andrew Payne <payne@n8kei.tiac.net>
To: Multiple recipients of list <www-talk@www0.cern.ch>
Subject: Re: Including files 
X-Listprocessor-Version: 6.0c -- ListProcessor by Anastasios Kotsikonas

>One extension to HTML that I think would be very usefule would be a
>generalisation of the <img src="URL"> markup.  Ideally I would like a markup
>which would allow the inclusion of any file type e.g. <include src="URL">.

Is the extension you have in mind processed by the server or the client?

For the server, such a feature already exists in NCSA's HTTP server.  When
returning an HTML document, it will process include directives for HTML
text.

For handling on the client end, things get more complicated.  The core 
issue is:  what does it mean to "include" a document of type X into an HTML 
document?  If the included document is HTML, you get stuff like this:

<head><title>Outer</title></head>
<body>
  <head><title>Inner included document</title></head>
  <body>Here it is!</body>
</body>

Is this meaningful?  What does mean to have more than one [pick your favorite
construct] in an HTML document?  

If the included document is some other type, what does it mean to include 
it?   What if I include a Microsoft Excel spreadsheet document--what does 
that look like?

-andy