stamp: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
m (Replace <entry-title> with {{DISPLAYTITLE:}})
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<h1>hStamp</h1>
{{DISPLAYTITLE:stamp}}
 
This is a page for tracking the effort to develop means for authors and publishers to share information about stamps.
 
Per the microformats [[process]]:
 
* Start by gathering [[stamp-examples]].
* Document existing [[stamp-formats]] standardization efforts.
* [[stamp-brainstorming]]
 
== Introduction ==


Philatelists are always looking to complete their postage stamps collections.
Philatelists are always looking to complete their postage stamps collections.
Postage Stamps are always published using a standard model.
Postage Stamps are always published using a standard model and may include various types of information.


How could we use those information ?
How could we use this data ?
__TOC__
__TOC__


== Author ==
== Author ==
* Bilel Hawari (bilelhawari@gmail.com)
* Bilel Hawari (bilelhawari@gmail.com)


== Examples of desired behaviors ==
== Examples of desired behaviors ==
Once properly structured, details that identify the stamp allow browser, applications or websites to produce richer interactions. For example, specific searches may be performed for stamp's subject or collection details via general search services such as Google and Wikipedia.
Once properly structured, details that identify the stamp allow browser, applications or websites to produce richer interactions. For example, specific searches may be performed for stamp's subject or collection details via general search services such as Google and Wikipedia.


 
== Examples of stamps on the web  ==
== Examples of existing hStamp model on the web  ==
'''This section should be moved [[stamp-examples]].'''


Wikipedia (See metatemplate on the right sidebar):
Wikipedia (See metatemplate on the right sidebar):
Line 33: Line 42:
[http://www.maltapost.com/page.asp?p=7215&c=396 2010 Series]
[http://www.maltapost.com/page.asp?p=7215&c=396 2010 Series]


== Format ==
== Formats ==
TBD. There needs to be research done on existing/previous stamp publishing formats efforts.
 
== Brainstorming ==
'''This section should be moved [[stamp-brainstorming]].'''


=== Schema ===
=== Schema ===
The hStamp schema consists of the following properties:
A stamp schema could consist of the following properties:


* '''hstamp'''
* '''hstamp''' - tentative root class name
** '''fn'''. required. text. the title of the stamp.
** '''fn'''. required. text. the title of the stamp.
** '''description'''. . optional. text. [experimental]
** '''description'''. . optional. text. [experimental]
** '''country'''. . required. text. [experimental]
** '''country'''. . required. text. [experimental]
** '''face-value''' and '''currency'''. required. numeric. [experimental]
** '''face-value''' and '''currency'''. required. numeric. [experimental]
** ''photo''. optional. 1 or more. using any element containing a URL, such as IMG. [experimental]
** ''photo''. optional. using any element containing a URL, such as IMG. [experimental]
** ''designer''. optional. 1 or more. [experimental]
** ''designer''. optional. 1 or more. [experimental]
** ''issue-date'' and ''year''. optional. [experimental]
** ''issue-date'' and ''year''. optional. [experimental]
Line 49: Line 62:
*** ''catalog-name'' and ''catalog-id''. optional. [experimental]
*** ''catalog-name'' and ''catalog-id''. optional. [experimental]


=== Implemntation ===  
=== Example markup ===  


hStamp can be encoded as follows:<source lang=html4strict>
A stamp can be encoded as follows:
<source lang=html4strict>
<div class="hstamp">
<div class="hstamp">
<h1 class="fn">Freedom Revolution</h1>
<h1 class="fn">Freedom Revolution</h1>
Line 87: Line 101:
</source>
</source>


== Roadmap ==
=== Roadmap ===
Some other philatelic details could be added to this model like stamp's condition (New / obliterated).
Some other philatelic details could be added to this model like stamp's condition (New / obliterated).
Designer identity would be well presented using [[hCard]] Microformat.
Designer identity would be well presented using [[hCard]] Microformat.

Latest revision as of 16:33, 18 July 2020


This is a page for tracking the effort to develop means for authors and publishers to share information about stamps.

Per the microformats process:

Introduction

Philatelists are always looking to complete their postage stamps collections. Postage Stamps are always published using a standard model and may include various types of information.

How could we use this data ?

Author

  • Bilel Hawari (bilelhawari@gmail.com)

Examples of desired behaviors

Once properly structured, details that identify the stamp allow browser, applications or websites to produce richer interactions. For example, specific searches may be performed for stamp's subject or collection details via general search services such as Google and Wikipedia.

Examples of stamps on the web

This section should be moved stamp-examples.

Wikipedia (See metatemplate on the right sidebar): Inverted Jenny Treskilling Yellow Treskilling Yellow

Tunisian postal stamps : Freedom Revolution World Press Freedom Day

USA Postage Stamps : 1c 150th Birth Anniversary of Lincoln 1959 Palomar Observatory

Maltpost 2010 Series

Formats

TBD. There needs to be research done on existing/previous stamp publishing formats efforts.

Brainstorming

This section should be moved stamp-brainstorming.

Schema

A stamp schema could consist of the following properties:

  • hstamp - tentative root class name
    • fn. required. text. the title of the stamp.
    • description. . optional. text. [experimental]
    • country. . required. text. [experimental]
    • face-value and currency. required. numeric. [experimental]
    • photo. optional. using any element containing a URL, such as IMG. [experimental]
    • designer. optional. 1 or more. [experimental]
    • issue-date and year. optional. [experimental]
      • size and unit. optional. [experimental]
      • catalog-name and catalog-id. optional. [experimental]

Example markup

A stamp can be encoded as follows:

<div class="hstamp">
	<h1 class="fn">Freedom Revolution</h1>
<p class="description">
	Immortalizing the People's Revolution 
</p>
<p>
<img class="photo" src="http://www.tunisia-stamps.tn/gdata/2011/t1895.jpg" width="175" height="245" alt="Freedom Revolution">
</p>
<p>Country :
<span class="country">Tunisia</span>
</p>
<p>Face value:
<span class="face-value">1,350</span> <span class="currency">Dinar</span>
<p/>
<p>Issue Year:
<span class="year">2011</span>
</p>
<p>Issue Date:
<abbr class="issue-date" title="2011-03-25">March 25, 2011</abbr>
<p>
<p>Size:
<span class="size">37 x 52</span> <span class="unit">mm</span>
</p>
<p>Designer: 
<span class="designer">Abdelmajid AYED</span>
</p>
<p>
<ul>
<li>Catalog Name: <span class="catalog-name">Immortalizing the People's Revolution</span></li>
<li>Catalog number: <span class="catalog-id">1895</span></li>
</ul>
</p>
</div>

Roadmap

Some other philatelic details could be added to this model like stamp's condition (New / obliterated). Designer identity would be well presented using hCard Microformat.