• First it was just in the <head> section, now it spreads to link tag in the posts.

    Below markup is from twentyten theme, in the twentyten_posted_in it added “category tag” for the rel attribute this results validation error:

    This entry was posted in <a href="http://wordpress:8888/category/uncategorized/" title="View all posts in Uncategorized" rel="category tag">Uncategorized</a>

    Bad value category tag for attribute rel on element a: Keyword category is not registered.
    A whitespace-separated list of link types listed as allowed on <a> and <area> in the HTML specification or listed as an allowed on <a> and <area> on the Microformats wiki without duplicate keywords in the list. You can register link types on the Microformats wiki yourself.

Viewing 14 replies - 16 through 29 (of 29 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Mike Baker – Make a new post for this. You’re asking a support question, the OP was on about something else.

    Sorry I hope I got it posted in the same place, he was complaining about W3C errors for about the same thing. I have moved it.

    Thanks

    Hello,

    this thread was interesting as I was having the same rel=”category tag” validation error after updating my theme.

    Ipstenu post was helpfull to understand the “white space” thingie as english is also not my mother tongue, but I still wasn’t satisfied as the error was also there when using a clean install of WP and theme 2011.

    So I had a look at the full code and found out this was coming from line 163 in wp-includes/category-template.php

    I then replaced 'rel="category tag"' by 'rel="tag"' and got a valid HTML5 code.

    So far it seems not to alter my WP but I know that on next WP update I’ll have to modify the file again to keep the code valid.

    The purpose of my comment : is there a reason using 'rel="category tag"' instead of 'rel="tag" in this particular place or could this fix be applied to the existing core code ?

    Having just stumbled upon this problem myself I first opened a bug against validator.w3.org (see [1]).

    The initial response from the W3C Validator team is that they are reporting @rel=’category tag’ as an error because while there is an entry in the Microformats wiki entry for it, that error is invalid because the Specification field of that entry is empty. I’ve replied to them that I still think it is an error in the validator because the HTML5 spec doesn’t say the entry in the Microformats wiki must be a valid/legal entry, just that the Status = “proposed” (or “ratified”)…and as one of the editors of a W3C spec [2] I’m particularly sensitive to whether code conforms to the precise wording of a spec.

    So, as soon as I get through reading the background stuff [3] on reporting a WordPress bug I will open a bug that the WordPress dev team should:

    1. write a spec on what @rel=’category’ means
    2. update the Microformats wiki entry for it
    3. remove the Microformats wiki entry for ‘category tag’
    4. inform the W3C Validator team that the Microformats wiki has been updated

    and then the Validator should not flag this as an error.

    I’ll come back here and and post a link to the WordPress bug that I open once I have done so.

    [1] https://www.w3.org/Bugs/Public/show_bug.cgi?id=16510
    [2] http://www.w3.org/TR/xmlschema-2/
    [3] http://codex.wordpress.org/Reporting_Bugs

    There apparently was already a WordPress ticket related to this [1].

    I added to it, noting what needs to be done [2]. With all luck that will happen soon.

    [1] http://core.trac.wordpress.org/ticket/17632
    [2] http://core.trac.wordpress.org/ticket/17632#comment:10

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Further work should be done in trac 🙂 Thanks, phiron!

    bamajr

    (@bamajr)

    I’ve been searching for some rhyme or reason as to why rel=”category” and rel=”category tag” were used in the development of the WordPress core and found several WordPress.org posts about the topic.

    I just posted a little history and explanation about this at http://wordpress.org/support/topic/get_the_category_list-produces-rel-attribute-with-invalid-values?replies=7#post-2720221

    People keep quoting the microformats list (found at http://microformats.org/wiki/existing-rel-values#HTML5_link_type_extensions) as valid rel keywords. However, they neglect to read the information, very plainly stating that there is no formal specification for rel=”category” and rel=”category tag” and the status of proposed means it has not received wide peer review and approval…

    Its one thing to include elements which are already part of the HTML5 Working Draft, but completely different to include elements which are not even being considered at this time.

    @bamajr: the reason “people keep quoting the microformats list” is that the HTML5 spec does (http://www.w3.org/TR/html5/links.html#other-link-types):

    Conformance checkers must use the information given on the Microformats wiki existing-rel-values page to establish if a value is allowed or not: values defined in this specification or marked as “proposed” or “ratified” must be accepted when used on the elements for which they apply as described in the “Effect on…” field, whereas values marked as “discontinued” or not listed in either this specification or on the aforementioned page must be rejected as invalid. Conformance checkers may cache this information (e.g. for performance reasons or to avoid the use of unreliable network connectivity).

    That is, the microformats wiki entries ARE “part of the HTML5 WD” by inclusion.

    As mentioned in my comment yesterday on this thread, the reason the W3C Validator (and any other validators out there that are conformant with the HTML5 WD) flags @rel*=’category’ as a valdiation error is simply because no one has written a “specification” for what it means and added that to it’s microformats wiki entry. Once that happens it will “magically” be considered valid.

    And as I said yessterday, if someone (preferably someone involved in writing the code in WordPress that spits it out 🙂 sends me the text for that spec, I will ensure that all the rest of the necessary steps happen.

    bamajr

    (@bamajr)

    @paul Biron – I understand that the HTML5 spec lists the microformats site. However, the rel keywords only become valid if someone creates and maintains a working specification for the rel keyword(s). rel keyword(s) without a defined specification is not valid HTML5.

    Also, without the specification, no one knows how or when to use the rel keyword(s) correctly.

    Without the specification, the rel keyword(s) are useless to search engines, which is kind of the point of using them in the first place.

    Finally…

    If you want to create and maintain the rel=”category” microformat spec, you can simply copy/paste the rel=”tag” spec and replace “tag” with “category” – that should give you all the language you need and is already in an approved format. Though finding implementations and references may be hard if WordPress is the only one using it.

    A caveat may come in the form of usage. The way rel=”category” is being used, is by microformat definition, the same thing as rel=”tag” and if they aren’t different in usage, I don’t see why it is needed. I don’t see how WordPress “Categories” are not defined under the rel=”tag” microformat specification. Categories are tags.

    Marventus

    (@marventus)

    Hi. I saw a parallel discussion to this thread was taking place here and I thought I should reply here since this thread is older.
    Even though I think great contributions have been made by everyone involved, I get the impression there’s a certain level of confusion regarding two entirely separated things:
    t

    1. multiple values for attributes (which includes, but is not limited to, the rel attribute), and
    2. allowed values in the rel attribute.

    Let’s break this down a bit, then.

    1. Multiple Values for Attributes:
    I would like to confirm that Ipstenu is absolutely right about this and that white spaces as multiple value separators are allowed in all doc types (except XML).

    2. Allowed values in Rel Attribute:
    2.1. HTML4
    Section 6.12 of the specs,after listing several values for the rel attribute, reads:

    Authors may wish to define additional link types not described in this specification. If they do so, they should use a profile to cite the conventions used to define the link types.

    2.2.XHTML 1.0
    I was not able to find any explicit uses of link types in the Specs. However, Section 4, which describes the differences between XHTML and HTML4, does not explicitly mention anything about the use of the rel attribute. Also, Section 4.11 (Attributes with predefined value sets) does not target the attribute rel.
    All these conclusions do not seem to be DTD-dependent.
    2.3. XHTML 1.1
    There do not seem to be any relevant references to the issue at hand in the Specs.
    2.4. HTML5
    Section 4.12.4 of the Editor’s draft defines a list of link types (where the tag attribute is included), but before doing so, it clearly states:

    The following table summarizes the link types that are defined by this specification. This table is non-normative.

    Bolded text is my own. That, to me, reads “other values can be used”, such as, for instance, the ones on the Microformats wiki list (as per sub-section 4.12.4.14). In that list, I can confirm that category has a proposed status, so AFAIK, it should be recognized for the time being.

    Even if it wasn’t, and if one were to take link types in HTML5 in a restrictive/normative way, one would still be forced to admit that rel is not invalid in other doc types, such as HTML4 and XHTML. Saying, as bamajr did in the other thread, that rel="category tag" should be deleted just because it is not supported in an HTML5 yet (which is experimental), does not seem to make much sense to me. From a logical point of view, such reasoning could be outlined like so:

    Component 1 is allowed in environment A.
    Component 1 is allowed in environment B.
    Component 1 is not allowed in environment C.
    ———————————————————
    Thus, Component 1 is not allowed anywhere and should be deleted.

    This, of course, is completely invalid (logically speaking).

    So, the bottom line seems to be that the rel attribute does support unlisted values, and the only environment in which it might not be supported (in my opinion it is partially, but I leave this open for discussion) is still experimental and is not bound to be ready for the next couple of years.
    Why should the coredev team address this now?

    If you want to create and maintain the rel=”category” microformat spec, you can simply copy/paste the rel=”tag” spec and replace “tag” with “category” – that should give you all the language you need and is already in an approved format.

    see my latest reply to the Trac ticket on this.

    Marventus

    (@marventus)

    I realized I made a mistake under point 2.4. I said:

    the Editor’s draft defines a list of link types (where the tag attribute is included)

    which was a mistake, since it should have read:

    the Editor’s draft defines a list of link types (where the tag value is included)

    Sorry about that!

    @marventus:

    I’ll try to answer your questions.

    re: your 2.1: yes, HTML4 allows @rel to contain (essentially, see p.s. below) any value. In addition to the section you cite, there’s also these fragments from the DTD [1]:

    <!ENTITY % LinkTypes "CDATA"
        -- space-separated list of link types
        -->
    <!ATTLIST A
      ...
      rel         %LinkTypes;    #IMPLIED  -- forward link types --
      ...
      >

    re: your 2.2: the relevant sections of XHTML 1.0 are 4.7 [2] and 4.11 [3].

    4.7 essentially says that @rel=’ this is a test ‘ in an XHTML 1.0 doc gets treated the same as @rel=’this is a test’ in an HTML4 doc. 4.11 essentially says that @rel=’THIS’ and @rel=’this’ get treated differently within the same XHTML 1.0 doc; while they get treated the same within the same HTML 4 doc.

    So, for XHTML 1.0, (essentially) any value for @rel is legal. The only difference from HTML4 is that the case of the “tokens” in the list are significant in XHTML 1.0 while they are not in HTML4.

    re: your 2.3: the relevant sections of XHTML 1.1 is 5.2.3 [4] and 4.3 [5].

    The conclusion is the same as for XHTML 1.0.

    Note that [5] also contains the following text:

    Authors may wish to define additional link types not described in this specification. If they do so, they should use a profile to cite the conventions used to define the link types. Please see the profile attribute of the head element for more information.

    While HTML4 and XHTML 1.0 have head/profile, neither advises document authors the use it to define what is meant by their @rel values (and note the should even in XHTML 1.1.

    re: your 2.4: while there is that note that the table at the start of 4.12.4 is non-normative, but it also says the subsequent sub-sections are normative…as far as the meanings of the values defined in HTML5 are concerned.

    But the oft-cited section 4.12.4.14 [6] says that in addition to those values defined in 4.2.12.{1-13}, any value in (also oft-cited) microformats wiki [7] with a status of “proposed” or “ratified” are also valid.

    I hope this helps!

    p.s. the “(essentially)” qualification on “any value” above has to do with the fact that HTML4 and XHTML 1.0 define @rel to be CDATA. XHTML 1.0 defines CDATA to be anything that matches the Char production [8] in XML (whitespace and all other Unicode chars except those in the surrogate blocks, FFFE and FFFF). HTML4 also defines @rel to be CDATA, but doesn’t explicitly say (AFAIR) what CDATA is…and it’s been a while since I’ve read the SGML spec and I forget how it is defined there, but for all intents and purposes, it is the same as in XHTML 1.0.

    XHTML 1.1 is different, however, because it defines @rel to be:

    <xs:simpleType name="LinkTypes">
       <xs:list itemType="xs:NMTOKEN"/>
    </xs:simpleType>

    or

    <!ENTITY % LinkTypes.datatype "NMTOKENS" >

    depending on whether you’re using the XML Schema [9] or DTD [10] Implementation.

    Both of those mean a whitespace separated list of chars matching the Nmtoken production in XML [11].

    And HTML5 is different still. It defines @rel as a DOMString, which ultimately goes back to section 1.1.5 of [12], and is defined a “sequence<unsigned short>”.

    Hi, may name is Paul…and I’m a language-lawyer 🙂

    [1] http://www.w3.org/TR/REC-html40/sgml/dtd.html
    [2] http://www.w3.org/TR/xhtml1/#h-4.7
    [3] http://www.w3.org/TR/xhtml1/#h-4.11
    [4] http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_hypertextmodule
    [5] http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_LinkTypes
    [6] http://dev.w3.org/html5/spec/single-page.html#other-link-types
    [7] http://microformats.org/wiki/existing-rel-values#HTML5_link_type_extensions
    [8] http://www.w3.org/TR/REC-xml/#NT-Char
    [9] http://www.w3.org/TR/xhtml-modularization/schema_module_defs.html#a_smodule_XHTML_Datatypes
    [10] http://www.w3.org/TR/xhtml-modularization/dtd_module_defs.html#a_module_XHTML_Datatypes
    [11] http://www.w3.org/TR/2000/WD-xml-2e-20000814#NT-Nmtoken
    [12] http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-C74D1578

    Marventus

    (@marventus)

    Hi Paul,
    Thanks for the extra info. Summarizing your research and mine, it would seem that:
    1. It is safe to use pretty much any rel value for HTML4 and XHTML;
    2. In HTML5, only values included in the table at the beginning of Section 4.12.4 are 100% safe, and tag is one of them;
    3. In HTML5 again, resorting to a value outside of that table, such as the ones included in Microformats, is not 100% safe since these could potentially disappear in the final implementation of the specs. As a side question, can values that are “ratified” also be dropped in the final stages?

    Applying all that to the issue at hand, it seems that:

    rel="tag"

    is safe regardless of the Doctype, whereas:

    rel="tag category"

    is just plain silly because category is not included in Section 4.12.4 of the HTML5 specs nor it is defined or sustained in Microformats by WP or anyone else. Moreover, it seems unlikely that category is ever going to be included due to the fact that the value tag is already recognized and it would be redundant to have both.

    All this seems to lead to the conclusion that the easiest solution to this issue would be to simply change the get_the_category_list function’s (and any other similar or related functions’) HTML output to rel="tag". This would ensure doctype cross-compatibility and avoid future potential problems regarding the experimental nature of HTML5. Your idea of turning this into a parameter still seems good to me, since certain users and/or developers might not want to include the rel attribute and, AFAICT, more flexibility has always been preferable to less flexibility when it comes to webdev, 🙂

Viewing 14 replies - 16 through 29 (of 29 total)
  • The topic ‘WordPress abuses Rel Tag’ is closed to new replies.