Difference between revisions of "Kino web"

From Knoesis wiki
Jump to: navigation, search
(Example)
(Example)
Line 3: Line 3:
  
 
== Example ==
 
== Example ==
 +
The following is a fragment from the page source of Yahoo flickr photo upload API description
 
<pre>
 
<pre>
 +
<!-- ########################################################## -->
  
 +
<h3>Arguments</h3>
 +
 +
<dl>
 +
<dt><code>photo</code></dt>
 +
<dd>The file to upload.</dd>
 +
 +
<dt><code>title</code> (optional)</dt>
 +
<dd>The title of the photo.</dd>
 +
 +
<dt><code>description</code> (optional)</dt>
 +
<dd>A description of the photo. May contain some limited HTML.</dd>
 +
 +
<dt><code>tags</code> (optional)</dt>
 +
<dd>A space-seperated list of tags to apply to the photo.</dd>
 +
 +
<dt><code>is_public, is_friend, is_family</code> (optional)</dt>
 +
<dd>Set to 0 for no, 1 for yes. Specifies who can view the photo.</dd>
 +
 +
<dt><code>safety_level</code> (optional)</dt>
 +
<dd>Set to 1 for Safe, 2 for Moderate, or 3 for Restricted.</dd>
 +
 +
<dt><code>content_type</code> (optional)</dt>
 +
<dd>Set to 1 for Photo, 2 for Screenshot, or 3 for Other.</dd>
 +
 +
<dt><code>hidden</code> (optional)</dt>
 +
<dd>Set to 1 to keep the photo in global search results, 2 to hide from public searches.</dd>
 +
</dl>
 +
 +
<!-- ########################################################## -->
  
 
</pre>
 
</pre>

Revision as of 16:04, 26 September 2011

Conceptual idea

The idea behind Kinow is same as KinoE but applied to general Web resources with schema.org and LOD annotations.

Example

The following is a fragment from the page source of Yahoo flickr photo upload API description

<!-- ########################################################## -->

	<h3>Arguments</h3>

	<dl>
		<dt><code>photo</code></dt>
		<dd>The file to upload.</dd>

		<dt><code>title</code> (optional)</dt>
		<dd>The title of the photo.</dd>

		<dt><code>description</code> (optional)</dt>
		<dd>A description of the photo. May contain some limited HTML.</dd>

		<dt><code>tags</code> (optional)</dt>
		<dd>A space-seperated list of tags to apply to the photo.</dd>

		<dt><code>is_public, is_friend, is_family</code> (optional)</dt>
		<dd>Set to 0 for no, 1 for yes. Specifies who can view the photo.</dd>

		<dt><code>safety_level</code> (optional)</dt>
		<dd>Set to 1 for Safe, 2 for Moderate, or 3 for Restricted.</dd>

		<dt><code>content_type</code> (optional)</dt>
		<dd>Set to 1 for Photo, 2 for Screenshot, or 3 for Other.</dd>
		
		<dt><code>hidden</code> (optional)</dt>
		<dd>Set to 1 to keep the photo in global search results, 2 to hide from public searches.</dd>
	</dl>

<!-- ########################################################## -->