Ferreteria/v0.5/@cls/caHypertextPage: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.5‎ | @cls
Jump to navigation Jump to search
No edit summary
(about to rename page)
Line 1: Line 1:
{{fmt/title|class <code>[[../|ferret]]\{{l/ver/class|layout}}\caHTML</code>}}
{{fmt/title|class <code>[[../|ferret]]\{{l/ver/class|layout}}\caHypertextPage</code>}}
{| style="border: solid 1px grey; background: #eef;"
{| style="border: solid 1px grey; background: #eef;"
|-
|-
Line 5: Line 5:
{{l/ver/class|caWebPage}} &rarr;<br>
{{l/ver/class|caWebPage}} &rarr;<br>
{{l/ver/class|tEventNodeBuild}} &rarr;
{{l/ver/class|tEventNodeBuild}} &rarr;
| {{l/ver/class|caHTML}}
| {{l/ver/class|caHypertextPage}}
| &rarr; {{l/ver/class|cStandard}}
| &rarr; {{l/ver/class|cStandard}}
|}
|}
* '''Source''': {{l/ferreteria/code|layout/page/html/1.php}}
* '''Source''': {{l/ferreteria/code|layout/page/html/1.php}}
==About==
==About==
This class handles web pages rendered as HTML (as opposed to XML or whatever other doctypes might be worth implementing). It sets the doctype to HTML and adds an html tag element but doesn't specify the class (to be determined by how <code>Class_forTagHTML()</code> is cemented).
This class handles web pages rendered as HTML (as opposed to XML or whatever other doctypes might be worth implementing). It sets the doctype to HTML and adds an html tag element but doesn't specify the class (to be determined by how the <code>Class_forTagHTML()</code> method is cemented).
==Methods==
==Methods==
* '''config''':
* '''config''':
Line 21: Line 21:
** <code>GetTagNode_html()</code>
** <code>GetTagNode_html()</code>
** <code>GetTagNode_body()</code>
** <code>GetTagNode_body()</code>
==History==
* '''2022-07-23''' renamed from caHtml to caHypertextPage, for clarity

Revision as of 16:30, 23 July 2022

class ferret\layout\caHypertextPage

caWebPage
tEventNodeBuild

caHypertextPage cStandard

About

This class handles web pages rendered as HTML (as opposed to XML or whatever other doctypes might be worth implementing). It sets the doctype to HTML and adds an html tag element but doesn't specify the class (to be determined by how the Class_forTagHTML() method is cemented).

Methods

  • config:
    • Class_forTagHTML() (abstract): returns class to use for <html> tag
    • DocTypeClass(): returns layout\html\tag\cDocType
  • element-node creation:
    • AddTagNode_html()
  • element-node access:
    • DocTypeNode()
    • GetTagNode_html()
    • GetTagNode_body()

History

  • 2022-07-23 renamed from caHtml to caHypertextPage, for clarity