hatom-hints-fr: Difference between revisions
mNo edit summary |
m (Reverted edits by DarroLrolc (Talk) to last version by ChristopheDucamp) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
= Trucs hAtom = | = Trucs hAtom = | ||
[[ | [[hatom-fr|hAtom]] est un microformat pour le contenu qui peut être syndiqué, originellement mais pas exclusivement pour les billets de blogs. Cette page donne des astuces sur la façon d'utiliser, d'implémenter et embarquer hAtom, de l'historique et d'autres informations étroitement en rapport avec la spécification hAtom mais n'appartient pas strictement à la page principale. | ||
S'il existe un conflit entre cette page et la spécification, la spécification est correcte. | S'il existe un conflit entre cette page et la spécification, la spécification est correcte. | ||
{{out-of-date}} | {{out-of-date-fr}} | ||
__TOC__ | __TOC__ | ||
Line 12: | Line 12: | ||
==== Nomenclature ==== | ==== Nomenclature ==== | ||
'''Note :''' Regardez svp le document[[hatom-issues-fr|hatom-problématiques]] pour une discussion sur les noms de propriété. | '''Note :''' Regardez svp le document [[hatom-issues-fr|hatom-problématiques]] pour une discussion sur les noms de propriété. | ||
{| width="100%" border="1" cellspacing="0" | {| width="100%" border="1" cellspacing="0" | ||
Line 46: | Line 46: | ||
| Entry Published | | Entry Published | ||
| <code>atom:published</code> | | <code>atom:published</code> | ||
| Use class name <code>published</code>, optionally with the [[datetime-design-pattern]]. | | Use class name <code>published</code>, optionally with the [[datetime-design-pattern-fr]]. | ||
|- | |- | ||
| Entry Updated | | Entry Updated | ||
| <code>atom:updated</code> | | <code>atom:updated</code> | ||
| Use class name<code>updated</code>, with an ISO8601 absolute datetime, optionally with the [[datetime-design-pattern]]. | | Use class name<code>updated</code>, with an ISO8601 absolute datetime, optionally with the [[datetime-design-pattern-fr]]. | ||
|- | |- | ||
| Entry Author | | Entry Author | ||
| <code>atom:author</code> | | <code>atom:author</code> | ||
| Add class name <code>"author</code>. Using an <code>address</code> element is recommended. A [[hcard|hCard]] SHOULD be added. | | Add class name <code>"author</code>. Using an <code>address</code> element is recommended. A [[hcard-fr|hCard]] SHOULD be added. | ||
|} | |} | ||
Latest revision as of 18:25, 20 December 2008
Trucs hAtom
hAtom est un microformat pour le contenu qui peut être syndiqué, originellement mais pas exclusivement pour les billets de blogs. Cette page donne des astuces sur la façon d'utiliser, d'implémenter et embarquer hAtom, de l'historique et d'autres informations étroitement en rapport avec la spécification hAtom mais n'appartient pas strictement à la page principale.
S'il existe un conflit entre cette page et la spécification, la spécification est correcte.
Cette page est actuellement obsolète. Consultez la spécification du microformat en rapport pour une information à jour.
Notes de Schéma
Nomenclature
Note : Regardez svp le document hatom-problématiques pour une discussion sur les noms de propriété.
Concept | Atom Identifier | hAtom Microformat Usage |
---|---|---|
Feed | atom:feed
|
Add class name "hfeed"
|
Entry | atom:entry
|
Add class name hentry ; if practical, also define id="unique-identifier" to the Entry.
|
Entry Title | atom:title
|
Add class name headline . Using <h#> also is encouraged.
|
Entry Content | atom:content
|
Add class name content to all appropriate blocks. Multiple Entry Content blocks are logically considered one concatenated atom:content equivalent.
|
Entry Summary | atom:summary
|
Add class name excerpt to all appropriate blocks. Multiple Entry Summary blocks are logically considered one concatenated atom:summary equivalent.
|
Entry Permalink | atom:link
|
Add a rel value of bookmark .
|
Entry Published | atom:published
|
Use class name published , optionally with the datetime-design-pattern-fr.
|
Entry Updated | atom:updated
|
Use class nameupdated , with an ISO8601 absolute datetime, optionally with the datetime-design-pattern-fr.
|
Entry Author | atom:author
|
Add class name "author . Using an address element is recommended. A hCard SHOULD be added.
|
Règles d'Imbrication
Concept | Nests In | hAtom Opaque | Cardinality | Logical Cardinality Informative |
---|---|---|---|---|
Feed | HTML document | No | 1-N | 1-N |
Entry | Feed | No | 0-N | 0-N |
Entry Title | Entry Entry Permalink |
No | 0-N | 0-1 |
Entry Content | Entry | Yes | 0-N | 0-1 |
Entry Summary | Entry | Yes | 0-N | 0-1 |
Entry Permalink | Entry Entry Title Entry Published |
No | 0-N | 1 |
Entry Published | Entry Entry Permalink |
No | 0-N | 0-1 |
Entry Updated | Entry Entry Permalink |
No | 0-N | 1 |
Entry Author | Entry | Yes | 0-N | 1-N |
hAtom Opaque
"hAtom Opaque" specifies whether a hAtom parser should not "look inside" the element for further hAtom content. If there are multiple rules applied to the same element take the OR of the two (i.e. "Yes/Opaque" always wins)
- hAtom Opaque is designed to make parsing rules less ambiguous. In particular, it allows "quoted" hAtom elements (from another blog being blockquoted, for example) ti be ignored. It also allows 'embedded' hAtom to be potentially delivered within hAtom itself, and to prevent accidental 'leaking' of other microformat information up into the hAtom container. A general concept of opaqueness (need link) has also been proposed but it will complement, not replace this.
Cardinalité
How many times can an element of the given type appear in it's nesting/parent element.
Cardinalité Logique
This column is informative -- Atom has a number of rules for deciding what is required depending on the context and other elements, many which aren't strictly applicable to here.
From a modeling/logical perspective, the number of times can an element appear.
- This is all rule dependent, see below. For example, an Entry Permalink may appear 6 times, but each one must be the same value; an Entry Content element may appear 3 times, but they are all concatenated together to make a single logical element.
Element notes
Feed
- you could have multiple feeds on news pages, or weblogs with "mini-blogs" on the sidebar.
- class="hfeed hentry" is OK for feeds with a single entry.
Entrée Permalink
- Entry Permalinks SHOULD be the same as the
atom:link
(orrss:link
) used in syndication feeds
- The intention of the previous two rules to gently force people to use strings that can be byte compared for equivalence. In general, the canonical URI should be the link used in an Atom entry.
- if an Entry has multiple elements marked as the Entry Permalink, they MUST have exactly the same URI
Voir aussi
- hAtom - la proposition brouillon
- hAtom trucs - aide pour l'implémentation
- hatom-problématiques - problèmes ? réclamations ? idées ? Mettez-les ici
- hAtom-faq - base de connaissance
- blog-post-brainstorming
- blog-post-formats
- blog-post-examples
- blog-description-format - comment décrire un blog (à l'opposé des entrées individuelles, ce qui est ce que nous faisons ici)