|
|
Ligne 1 : |
Ligne 1 : |
− | ''Cette page a démarré sur [[microformats:h-resume]]''
| + | #redirect [[h-resume]] |
− | | |
− | <entry-title>h-resume</entry-title>
| |
− | <span class="h-card vcard"><span class="p-name fn">[[User:Tantek|Tantek Çelik]]</span> (<span class="p-role role">Editor</span>)</span>
| |
− | ----
| |
− | <dfn style="font-style:normal;font-weight:bold">h-resume</dfn> est un format simple et ouvert pour publier des résumés ou CVs sur le web. h-resume est l'un des nombreux [[microformats|microformat]] ouverts standards adapté pour embarquer de la donnée dans le HTML.
| |
− | | |
− | h-resume est la mise à jour [[microformats2]] de [[hResume]].
| |
− | | |
− | {{cc0-owfa-license}}
| |
− | | |
− | == Exemple ==
| |
− | Voic un exemple simple de résumé :
| |
− | | |
− | <source lang=html4strict>
| |
− | <div class="h-resume">
| |
− | <span class="p-name">
| |
− | <a class="p-contact h-card" href="http://exemple.org">
| |
− | <img src="http://exemple.org/photo.png" alt="" />
| |
− | Joe Bloggs
| |
− | </a>
| |
− | resume
| |
− | </span>
| |
− |
| |
− | <p class="p-summary">Joe is a top-notch llama farmer with a degree in <span class="p-skill">Llama husbandry</span> and a thirst to produce the finest wool known to man</p>
| |
− | </div>
| |
− | </source>
| |
− | | |
− | Parsed JSON:
| |
− | <source lang=javascript>
| |
− | {
| |
− | "items": [
| |
− | {
| |
− | "type": [
| |
− | "h-resume"
| |
− | ],
| |
− | "properties": {
| |
− | "name": [
| |
− | "Joe Bloggs resume"
| |
− | ],
| |
− | "contact": [
| |
− | {
| |
− | "value": "Joe Bloggs",
| |
− | "type": [
| |
− | "h-card"
| |
− | ],
| |
− | "properties": {
| |
− | "name": [
| |
− | "Joe Bloggs"
| |
− | ],
| |
− | "photo": [
| |
− | "http://example.org/photo.png"
| |
− | ],
| |
− | "url": [
| |
− | "http://example.org"
| |
− | ]
| |
− | }
| |
− | }
| |
− | ],
| |
− | "summary": [
| |
− | "Joe is a top-notch llama farmer with a degree in Llama husbandry and a thirst to produce the finest wool known to man"
| |
− | ],
| |
− | "skill": [
| |
− | "Llama husbandry"
| |
− | ]
| |
− | }
| |
− | }
| |
− | ]
| |
− | }
| |
− | </source>
| |
− | | |
− | === Démarrer ===
| |
− | La classe '''<code>h-resume</code>''' est un ''nom de classe racine'' qui indique la présence d'un h-resume.
| |
− | | |
− | Regardez [[microformats2-parsing]] pour en savoir plus sur les noms de classes des propriétés.
| |
− | | |
− | == Propriétés ==
| |
− | Le propriétés h-resume, à l'intérieur d'un élément avec la classe '''h-resume''':
| |
− | * '''<code>p-name</code>''' - brief name of the resume
| |
− | * '''<code>p-summary</code>''' - overview of qualifications and objectives
| |
− | * '''<code>p-contact</code>''' - current contact info in an <code>[[h-card]]</code>
| |
− | * '''<code>p-education</code>''' - an education <code>[[h-event]]</code> event, years, embedded <code>[[h-card]]</code> of the school, location. {{main|h-event}} {{main|h-card}}
| |
− | * '''<code>p-experience</code>''' - a job or other professional experience <code>[[h-event]]</code> event, years, embedded <code>[[h-card]]</code> of the organization, location, job-title. {{main|h-event}} {{main|h-card}}
| |
− | * '''<code>p-skill</code>''' - a skill or ability, optionally including level and/or duration of experience
| |
− | * '''<code>p-affiliation</code>''' - an affiliation with an <code>[[h-card]]</code> organization
| |
− | | |
− | Toutes les propriétés sont facultatives.
| |
− | | |
− | == Statut ==
| |
− | | |
− | '''h-resume''' is a microformats.org draft specification. Public discussion on h-resume takes place on [[h-resume-feedback]] and the #microformats [[irc]] channel on irc.freenode.net.
| |
− | | |
− | h-resume is ready to use and implemented in the wild, but for backwards compatibility you should also mark h-resumes up with classic [[hResume]] classnames.
| |
− | | |
− | == Détails des propriétés ==
| |
− | | |
− | (stub, add any property explanations here)
| |
− | | |
− | '''p-skill''' has a [[hresume-skill-brainstorm|proposed expansion into competency]] with explicit summary, rating and/or duration components. Based on existing real world adoption, we should consider an h-skill vocabulary with p-name, p-rating, and dt-duration properties.
| |
− | | |
− | == Exemples dans la Jungle ==
| |
− | * [[User:Csarven|Sarven Capadisli]] a marqué son [http://csarven.ca/cv Curriculum Vitae] sous un h-resume.
| |
− | * [https://lejenome.github.io/ Moez Bouhlel] a balisé son [https://lejenome.github.io/resume résumé] en utilisant h-resume.
| |
− | * [[User:Almorca|Almorca]] a marqué [http://www.almorca.es/ sa page web personnelle (en espagnol)].
| |
− | * … ajoutez tous les exemple de h-resume que vous trouvez dans la jungle
| |
− | | |
− | == Valider ==
| |
− | {{h-spec-section-validating}}
| |
− | | |
− | == Rétro-Compatibilité ==
| |
− | === Publisher Compatibility ===
| |
− | (stub)
| |
− | === Parser Compatibility ===
| |
− | Microformats parsers {{should}} detect the following root class name and property names. A microformats2 parser may use existing microformats [[parsers]] to extract these properties. If an "h-resume" is found, don't look for an "hresume" on the same element.
| |
− | | |
− | compat root class name: <code id="hresume">hresume</code><br/>
| |
− | properties: (parsed as '''p-''' plain text unless otherwise specified)
| |
− | * <code>summary</code>
| |
− | * <code>contact</code> - including compat root <code>vcard</code> in the absence of <code>h-card</code>
| |
− | * <code>education</code> - including compat root <code>vevent</code> in the absence of <code>h-event</code>
| |
− | * <code>experience</code> - including compat root <code>vevent</code> in the absence of <code>h-event</code>
| |
− | * <code>skill</code>
| |
− | * <code>affiliation</code> - including compat root <code>vcard</code> in the absence of <code>h-card</code>
| |
− | | |
− | == Background ==
| |
− | | |
− | h-resume est basé sur la spécification existante [[hResume]].
| |
− | | |
− | == Voir aussi ==
| |
− | | |
− | * [[microformats2]]
| |
− | * [[h-card]] et [[h-event]] sont tous deux imbriqués dans hResume
| |
− | * The [[include-pattern]] is likely to be useful to avoid repeating information in any embedded h-cards
| |
− | * [[hResume]] est le microformat classique désormais remplacé par h-resume
| |
− | | |
− | [[Category:Draft Specifications]]
| |