Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: Microformats???

  1. #1
    Join Date
    Apr 2006
    Posts
    584
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Microformats???

    Hi Guys,

    I have read all the info on Microformats, but wanted more opinions from you guys... What exactly is the benefit for the end user in using them on a site? From the look of it, it's all new <tags> are newer browser's et up to know what the <tags> mean?

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Hmm... I really have no idea what you are talking about. Hopefully someone else will... I dunno.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #3
    Join Date
    Apr 2006
    Posts
    584
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    lol yea no one seems to know much about them but they seem cool (I think!?) http://microformats.org/

  4. #4
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Interesting. I don't quite get it. LOOKS like they rely some on things like firefox extensions.... I dunno. I don't really see any specific examples on the page you linked to (and subpages...)
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  5. #5
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Ah, that's interesting.
    Interesting. I don't quite get it. LOOKS like they rely some on things like firefox extensions....
    No, the idea is to create a standardised format for presenting certain information, such that an automated processor can retrieve the data and metadata from any conforming site. It's not software or a new technology; simply a standardised way to use existing technology.

    /EDIT: Ooh, post 70,000. Yay DD.
    Last edited by Twey; 01-17-2007 at 04:05 PM.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  6. #6
    Join Date
    Jun 2006
    Location
    Acton Ontario Canada.
    Posts
    677
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    Call Me Ignorant, But What Are Microformats? Why Do The Rel Attributes Have Significance?
    - Ryan "Boxxertrumps" Trumpa
    Come back once it validates: HTML, CSS, JS.

  7. #7
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    70,000, Twey? Just a bit ahead of yourself. Ha.

    I'm still totally lost. I get the "let's fix it all and create a standard thing"... but I don't see any examples of what the point is, etc.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  8. #8
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    70,000, Twey? Just a bit ahead of yourself. Ha.
    Not mine, the forum's I don't know if that's an accurate figure (pruning may have happened) but it's a nice round figure anyway, so I thought I'd celebrate it.
    I'm still totally lost. I get the "let's fix it all and create a standard thing"... but I don't see any examples of what the point is, etc.
    Parsers can be created with a minimum of effort. An average shopping list may look like this:
    Code:
    <ol>
      <li style="font-weight: bold;">Vegetables
        <ul>
          <li>Carrots</li>
          <li class="done-element">Peas</li>
        </ul>
      </li>
    </ol>
    This is a nightmare to parse without a fully-fledged browser, and unless you know the exact design of the page, it may never even work out that that's a shopping list. The point of these "microformats" is that a standard for shopping lists could be defined that requires a shopping list to look like so:
    Code:
    <ol class="shopping-list">
      <li class="category">Vegetables
        <ul class="items">
          <li>Carrots</li>
          <li class="done">Peas</li>
        </ul>
      </li>
    </ol>
    A shopping list parser can then extract the required information from the page very easily; even if it has no idea how the page is laid out, it knows just to pay attention to <ol> elements with a class of "shopping-list", it knows that any item with a class of "done" should be shown as being ticked or crossed off the list in some manner, that any item with a class of "category" should be shown as a category, and that it will contain a list of items in that category...
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  9. #9
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    So.... microformats are specific ways in which to format certain types of information so that the use of which is global and interpretation/parsing/reading of can be simple/constant?
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  10. #10
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Pretty much, yes, from what I gather from that (admittedly remarkably vague) site.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •