include-pattern-brainstorming

From Microformats Wiki
(Redirected from include-pattern-strawman)
Jump to navigation Jump to search

include pattern brainstorming

brainstorming to improve or extend the include-pattern.

alternatives to using a or object

Here are possible variations on the include pattern, attempting to resolve issues of accessibility (with empty anchors) and server load (with object).

Non-Verbose Class-Based Solution

(Originally suggested by Toby Inkster, based on an earlier proposal by Andy Mabbett)

An alternative way of implementing the include pattern in a less verbose, and hopefully more accessible manner.

 <p>We have three branches in <span class="locality" id="ldn">London</span>,
 including our head office in <span class="locality" id="ken">Kensington</span>:</p>
 <ul>
   <li class="adr #ldn">
     <span class="street-address">123 Oxford Street</span>
   </li>
   <li class="adr #ken #ldn">
     <span class="street-address">5 Kensington High Street</span>
   </li>
   <li class="adr #ldn">
     <span class="street-address">1 Pall Mall</span>
   </li>
 </ul>

The order of the space-delimited class attributes should be considered significant -- that is, in <foo class="bar #baz"> the content referred to by #baz is logically included as the last child of the <foo> element, but in <foo class="#baz bar">, it is logically included as the first child. (See below for an example where the included element should occur in the middle of the element content.)

Yes, the hash mark is valid in the class attribute, though rarely used because it won't work with CSS 1 selectors.

If people can find real-life uses of the hash character in existing sites that would conflict with this proposed usage pattern, then perhaps another character could be used. I rather like '@foo', or maybe even a combination such as '@#foo'.

Including data in the middle of an element

Above, the examples show how an element can be logically included as the first or last child of another element. For including data into the middle of an element, we need to be a tiny bit more verbose and insert a dummy element (in this case a <span> element) where the included content should go:

 <p>Our head office is in <span id="ldn" class="locality">London</span> at:
 <p class="adr">
   <span class="street-address">5 Kensington High Street</span><br>
   <span class="#ldn"></span>
   <span class="postal-code">SW7 1AA</span>
 </p>

problems with ordered ids in class

Two problems:

1. class is an unordered set of values per HTML4. introducing ordering is a non-starter both from a violation of HTML4 spec perspective and likely requiring of rewriting HTML4 parsers to maintain an ordering where they currently don't.

A reading of HTML 4.01, section 7.5.2 doesn't seem to claim that the class list is unordered.

It does claim that it's a "set" of class names, and in mathematical parlance sets are unordered by definition, and must not contain duplicates, but it's unlikely that the framers of the HTML 4.01 spec intended the world "set" to be interpreted in that way -- far more likely they were referring to the layman's definition of the word.

As far as parsers are concerned, DOM Level 2 HTML provides as "className" property as part of the HTMLElement interface, which is either directly used or is inherited by all DOM element nodes. The className is a string exactly reflecting the contents of the HTML class attribute, so should reflect their original order.

And any non-DOM, naive SGML or XML parser that encounters a class attribute will just parse it as a plain old string anyway, so the order should be retained.

TobyInk 08:34, 5 Feb 2008 (PST)

2. inclusion of arbitrary data (#baz) in the class attribute is a documented anti-pattern. Tantek

This anti-pattern is only mentioned as a subheading to the more general anti-pattern of invisble metadata. My suggested pattern for inclusions does not hide metadata -- it merely references metadata elsewhere on the page. It is no more guilty of hiding metadata than any other suggested include pattern, so I fail to see how this is relevant.

TobyInk 08:36, 5 Feb 2008 (PST)

Simple class name

<foo id="birmingham" class="locality">Birmingham</foo>

then:

<foo class="adr includes-birmingham">[...]</foo>

Some other possible variants are:

<foo class="adr birmingham">[...]</foo>

or

<foo class="adr part-microformat birmingham">[...]</foo>

or

<foo class="adr use-birmingham">[...]</foo>

or

<foo class="adr uses-birmingham">[...]</foo>

or

<foo class="adr include-birmingham">[...]</foo>

or

<foo class="adr locality-birmingham">[...]</foo>

or

<foo id="birmingham">Birmingham</foo>
[...]
<foo class="adr locality-birmingham">[...]</foo>

(originally suggested by Andy Mabbett in <http://microformats.org/discuss/mail/microformats-discuss/2008-January/011422.html et seq.)

problems with arbitrary id values in class attributes

In short: similar to problems with ordered ids in class, inclusion of arbitrary data (birmingham) in the class attribute is a documented anti-pattern.

Longer: The value of an id attribute on an element is essentially an arbitrary string used to uniquely identify that element in the context of the document. Thus the re-use of such an arbitrary string (e.g. "birmingham") in a class attribute is an instance of including arbitrary data in the class attribute, which is a documented anti-pattern.

Tantek

  • In this proposal, the class name is not "arbitrary data", since it uses a semantically valid IDs; and is semantically logical. In the cited page the use of data in class names is deprecated as "another form of invisible metadata". This proposal involves no more "invisible metadata" than do the existing include patterns. Andy Mabbett 00:52, 4 Feb 2008 (PST)
    • existing include patterns use href and data (not class) attributes which are both of type URI to point to a fragment identifier. arbitrary links are proper semantic use of URI attributes per HTML4. however in a class attribute, arbitrary links are no more than arbitrary data, and are thus an example of the documented anti-pattern. (Unsigned comment by Tantek)
      • The fragment identifier is not data. Well, OK, it is data in the sense that virtually everything is data, but, in the example above, the link itself is not address data -- it's a pointer to data... information about where the real data might be found... it's metadata. TobyInk 07:42, 6 Feb 2008 (PST)

Use @ to Reference IDs

Don't "include" your data, you could perhaps just reference them.

<foo id="me" class="fn">Fred</foo>
<bar class="me@url">http://wherever.com/</bar>

parsers instead of replacing data can then just append their data?

Suggested in: microformats-discuss/2008-February/011470.html

problems with using at ref to id

Use a Class Create method

Create a class such as "data" in the following example, or any unique class name much the same as we do already with id="".

Examples could be "reviewer" or "me".

example,

<span class="vcard">    
        <span class="data">
                <span class="fn">Foo</span>
        </span>
        <a class="email" href="mailto:foo@bar.com">email foo@bar.com</a>
</span>

Use an empty span to reference your unique class name with class "include *" anywhere you would like the created class to be included.

example,

<span class="vcard">
        <span class="include data"></span>
        <a class="email" href="mailto:foo@baz.com">email foo@baz.com</a>
</span>

The result "could" turn out much like this:

example,

<span class="vcard">
        <span class="fn">Foo</span>
        <a class="email" href="mailto:foo@baz.com">email foo@baz.com</a>
</span>

Problems

  • If class="include data" is taken to mean "include all elements with a class name of 'data'", then the element will include itself and potentially introduce problems with recursion. TobyInk 02:23, 11 Feb 2008 (PST)
    • Not Necessarily so, It would depend on Parsing rules. Martin McEvoy 17:19, 11 Feb 2008 (GMT)

Use property inheritance from groups, implicit member/group relations (by containment) and explicit property/object relations (by reference)

This proposal is only presented for the record. The main reason it has been discarded is because "the use of rev, and any new microformats values for rev, has been deprecated for several reasons. See Should rev even be used.".

It is really two proposals in one:

  • property inheritance from group elements: if an object is part of a group, it inherits the properties associated with this group.
  • explicit property referencing. This technique provides an alternative to the current technique of associating by containment a property with an object, or sub-property with parent property. With the suggested new technique, the property or sub-property does not have to be contained (resp.) by the object or parent property: the association is made explicitly via a rev link.

Example:

Our company has office locations in <a href="#adrlist1" rev="locality">San Francisco</a>: 
<ul id="adrlist1">
<li id="adr1" class="adr"><span class="street-address">665 3rd Street</span>, and</li>
<li id="adr2" class="adr"><span class="street-address">123 Folsom</span></li>
</ul>

This example would be interpreted as:

  • adr1 and adr2 belong to the group adrlist1 by containment.
  • "San Francisco" is the locality property of the adrlist1 group.
  • hence, adr1 and adr2 inherit the locality property from adrlist1 since they are not overriding it.

Use property inheritance from groups, explicit group/member referencing and implicit property relations (by containment)

Our company has <span id="#adrlist1>office locations in <span class="locality">San Francisco</span></span>: 
<a id="adr1" href="#adrlist1" rel="group" class="adr"><span class="street-address">665 3rd Street</span><span>,
 and <a id="adr2" href="#adrlist1" rel="group" class="adr"><span class="street-address">123 Folsom</span></span>

This technique use: property inheritance from group and explicit relationships between groups and members. The HTML code actual reflects the meaning of the sentence: the items following the columns belong to a group from which they inherit a property (locality).

This example would be interpreted as:

  • adr1 and adr2 belong to the #adrlist1 group (by reference).
  • locality is associated with #adrlist1 by containment
  • adr1 and adr2 inherit the locality property "San Francisco" from the group they belong to, since they are not overriding it.

Use html5 custom element

An include pattern could use a custom html5 element without any semantics, perhaps <mf-include>, with a custom attribute includeid. This custom attribute would work similar to how the standard itemref attribute works. Authors could place a space-separated list of tokens in includeid. A microformats parser would then search the document for an element whose id matches one of those tokens, and include that matched element in the microformats element's sub-tree as if it appeared in that part of the DOM. Here's the first example on this page, marked up with the custom element instead of the class-based solution.

<p>We have three branches in <span id="ldn">London</span>,
 including our head office in <span id="ken">Kensington</span>:</p>
 <ul>
   <li class="adr">
     <span class="street-address">123 Oxford Street</span>
     <mf-include class="locality" includeid="ldn"></mf-include>
   </li>
   <li class="adr">
     <span class="street-address">5 Kensington High Street</span>
     <mf-include class="locality" includeid="ken ldn"></mf-include>
   </li>
   <li class="adr #ldn">
     <span class="street-address">1 Pall Mall</span>
     <mf-include class="locality" includeid="ldn"></mf-include>
   </li>
 </ul>

There's a full write up of this idea with links to two pages showing how this include pattern might work with the h-recipe format. Btrem (talk) 18:24, 14 December 2020 (UTC)

Use html5 itemref attribute

Of course, since the custom element idea is essentially based on html5's itemref attribute, we could just use that attribute and call it good. Btrem (talk) 18:41, 14 December 2020 (UTC)

See earlier microformats2-brainstorming#adopt_itemref which proposed considering itemref for include-pattern use-cases.

Use data element

An include pattern could use the html5 data element.

<p>We have three branches in <span id="ldn">London</span>,
 including our head office in <span id="ken">Kensington</span>:</p>
 <ul>
   <li class="adr">
     <span class="street-address">123 Oxford Street</span>
     <data class="locality include" value="ldn"></data>
   </li>
   <li class="adr">
     <span class="street-address">5 Kensington High Street</span>
     <data class="locality include" value="ken ldn"></data>
   </li>
   <li class="adr #ldn">
     <span class="street-address">1 Pall Mall</span>
     <data class="locality include" value="ldn"></data>
   </li>
 </ul>

This example would find elements with an id that matches a token in the value attribute and include them inside the data tags. Btrem (talk) 03:15, 22 December 2020 (UTC)

The problem with this approach is that it violates the semantics of the data element: "The HTML element links a given piece of content with a machine-readable translation." The use suggested in this section does not provide a machine readable version of the content, because there is no content. The markup could be changed to include content in the data element, and in some cases this might be desirable as fallback, but even in such cases, it's hard to see how that content is related to the value attribute. Btrem (talk) 04:47, 22 December 2020 (UTC)

contributors

Related Pages