Re: client side includes

OK . I now think that the real semantics for client side includes are XML
entities.
Could be this a "hello world" of them?:

** archive myInterface.dtd **
<!ELEMENT nullable (#PCDATA)>
<!ENTITY mynavbarH SYSTEM "http://host/navbarHorizontal.html>
<!ENTITY mypoll SYSTEM "http://host/cgi-bin/poll.cgi>
***********************

** any document **
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/Profiles/xhtml1-transitional.dtd">
    <head>
        <title>hello world</title>
    </head>
<body>
    <p float="none">
        <nullable xmlns="http://host/myInterface.dtd">&mynavbarH;</nullable>
    </p>
    <table>
        <tbody>
            <tr>
                <td>
                    <nullable
xmlns="http://host/myInterface.dtd">&mypoll;</nullable>
                </td>
                <td> .... (...) .....</td>
            </tr>
        </tbody>
    </table>
</body>
</html>
*********

Received on Thursday, 25 January 2001 11:24:16 UTC