Re: <pages> <page>...<page> </pages>

I think you can achieve the same result with existing HTML and paged
media in CSS: http://www.w3.org/TR/CSS21/page.html

Opera Show (a mode where Opera applied "presentation" media styles) is
an example:
http://www.opera.com/support/tutorials/operashow/


On 7/18/07, Dmitry Turin <html60@narod.ru> wrote:
>
> I offer the following:
>
> <html>
> <body>
>
>   <pages>
>     <page>
>       <caption>AAA</caption>
>       <pbody>  ...</pbody>
>     </page>
>     <page>
>       <caption>BBB</caption>
>       <pbody>  ...</pbody>
>     </page>
>     <page>
>       <caption>CCC</caption>
>       <pbody>  ...</pbody>
>     </page>
>   </pages>
>
> </body>
> </html>
>
> which is displayed in document so:
>
> ___________________
> | AAA | BBB | CCC |
> |     ------------|
> |                 |
> |                 |
> |                 |
> |                 |
> |                 |
> -------------------
>
>   PBODY contain arbitrary html-elements.
> Width of PAGES is equal to width of the most wide PAGE,
> height of PAGES is equal to height of the high PAGE.
>   When user press at "BBB", it will be displayed as:
>
> ___________________
> | AAA | BBB | CCC |
> |------     ------|
> |                 |
> |                 |
> |                 |
> |                 |
> |                 |
> -------------------
>
> When user press at "CCC", it will be displayed as:
>
> ___________________
> | AAA | BBB | CCC |
> |------------     |
> |                 |
> |                 |
> |                 |
> |                 |
> |                 |
> -------------------
>
>
> Controls from all pages are sent at one:
>
> <form>
>
>   <pages>
>     <page>
>       <caption>AAA</caption>
>       <pbody>  <input ...> </pbody>
>     </page>
>     <page>
>       <caption>BBB</caption>
>       <pbody>  <input ...> </pbody>
>     </page>
>     <page>
>       <caption>CCC</caption>
>       <pbody>  <input ...> </pbody>
>     </page>
>   </pages>
>
> </form>
>
> PBODY can contain IFRAME or FRAME.
>
>
>
> Dmitry Turin
> HTML6     (6.1.2)  http://html60.chat.ru
> SQL4      (4.1.2)  http://sql40.chat.ru
> Unicode2  (2.0.0)  http://unicode2.chat.ru
> Computer2 (2.0.3)  http://computer20.chat.ru
>
>
>

Received on Thursday, 19 July 2007 10:12:16 UTC