- From: sunil vanmullem <sunil.vanmullem@btopenworld.com>
- Date: Sat, 31 Mar 2007 00:21:59 +0100
- To: "'Due Per-VCW437'" <Per.Due@motorola.com>, 'Asbjørn Ulsberg' <asbjorn@ulsberg.no>, <www-html@w3.org>
Hi Per, I have a cross browser solution using Ajax that works today That supports reuse of HTML coding between different pages. Current Version, which is pre-release, is that it isnt search engine friendly, and wouldn't meet some accessibility criteria but its something that Is being worked for the next major version. I've taken a slightly different approach to the one you describe but am willing to work with you to adapt/extend/develop as necessary. Have a look at http://sdpml.mozdev.org/ Regrads Sunil -----Original Message----- From: www-html-request@w3.org [mailto:www-html-request@w3.org] On Behalf Of Due Per-VCW437 Sent: 28 March 2007 22:24 To: Asbjørn Ulsberg; www-html@w3.org Subject: RE: Control Text-file Embedding in HTML-docs Thanks for response. The reason to have the TXT-files is reuse and "update-in-one-place" only. If the same piece of text must be used in multiple HTML-documents it is nice to edit and maintain it in one place. This ensures that the changes take effect everywhere the TXT-file is used. If the text is embedded in HTML-documents it must be edited in multiple HTML-files when changes are needed. I tried this: ========== <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body> This is <object data="file:///D:/HtmlTest/File1.txt"> </object> a test. This is a <object data="file:///D:/HtmlTest/File2.txt"> </object> test <br> This <object data="file:///D:/HtmlTest/File3.txt" height="50%" width="50%"> </object> is a test <br> This <IFRAME src="file:///D:/HtmlTest/File1.txt"> </IFRAME> is <IFRAME src="file:///D:/HtmlTest/File2.txt"> </IFRAME> a test <br> This is a <IFRAME src="file:///D:/HtmlTest/File3.txt" height="50%" width="50%"> </IFRAME> test <br> <TEXTAREA name="thetext" rows="20" cols="80"> First line of initial text. Second line of initial text. </TEXTAREA> </body> </html> ========== For TEXTAREA it doesn't seem to be possible to refer to an external file. Both IFRAME and OBJECT causes text to be places in boxes in the HTML document for browsers: Mozilla, Opera, Microsoft Internet Explorer. Best Regards, Per. === Per Hygum Due, Software Engineer, MOTOROLA. -----Original Message----- From: Asbjørn Ulsberg [mailto:asbjorn@ulsberg.no] Sent: 28. marts 2007 18:07 To: Due Per-VCW437; www-html@w3.org Subject: Re: Control Text-file Embedding in HTML-docs On Wed, 28 Mar 2007 09:50:54 +0200, Due Per-VCW437 <Per.Due@motorola.com> wrote: > <object data="file:///D:/HtmlTest/File1.txt"> > </object> > > <object data="file:///D:/HtmlTest/File2.txt"> > </object> Wouldn't it be better to inline the text in a <div> element, like so: <div style="width: 10em; overflow: auto"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit [...] </div> Alternatively, you could use the <iframe> instead of <object> and <textarea> instead of <div>. I'd go with inlining the content instead of having it externally, though, since that would make it available for all UAs, including Google. -- Asbjørn Ulsberg -=|=- asbjorn@ulsberg.no «He's a loathsome offensive brute, yet I can't look away»
Received on Friday, 30 March 2007 23:21:20 UTC