Difference between revisions of "DiscoverEd Data"

From Creative Commons
Jump to: navigation, search
Line 2: Line 2:
  
 
[http://oesearch.creativecommons.org Open Education Search] is a project of [http://learn.creativecommons.org ccLearn].  You can find more information on the project at http://learn.creativecommons.org/projects/oesearch/.
 
[http://oesearch.creativecommons.org Open Education Search] is a project of [http://learn.creativecommons.org ccLearn].  You can find more information on the project at http://learn.creativecommons.org/projects/oesearch/.
 +
 +
This page documents ways in which developers may use the data gathered by the project for other purposes, including integration and customization.
 +
 +
== Data Gathered ==
 +
 +
The Open Education Search (OES) project is a web-scale search of Open Educational Resources (OER).  As such, it utilizes a web-wide index, promoting results which have been identified as OER.  ccLearn is serving as an aggregation point for other organizations which have identified or produced OER.  At this time we gather:
 +
 +
* URLs or URL patterns
 +
* Subject annotations, sometimes called labels
 +
 +
We are not currently attempting to aggregate rich metadata sets.
 +
 +
The data gathered is currently available in a format suitable for use in a Google Custom Search Engine (see below); ccLearn is committed to making it available in a "raw" format for further reuse.
  
 
== Integrating OE Search ==
 
== Integrating OE Search ==
  
''Information on integrating an open education search box on your website.''
+
<code><pre>
 +
<form id="cref" action="http://google.com/cse">
 +
  <input type="hidden" name="cref"
 +
    value="http://oercloud.creativecommons.org/api/posts_context"
 +
    />
 +
  <input type="text" name="q" size="40" />
 +
  <input type="submit" name="sa" value="Search" />
 +
</form>
 +
<script type="text/javascript"
 +
  src="http://google.com/coop/cse/brand?form=cref"></script>
 +
</pre></code>
  
 
== Customizing OE Search ==
 
== Customizing OE Search ==
  
''Information on building your own custom search that weights some things differently.''
+
<code><pre>
 +
<Label name="ocw" mode="BOOST" weight="0.8"></Label>
 +
</pre></code>

Revision as of 14:59, 27 September 2007


Open Education Search is a project of ccLearn. You can find more information on the project at http://learn.creativecommons.org/projects/oesearch/.

This page documents ways in which developers may use the data gathered by the project for other purposes, including integration and customization.

Data Gathered

The Open Education Search (OES) project is a web-scale search of Open Educational Resources (OER). As such, it utilizes a web-wide index, promoting results which have been identified as OER. ccLearn is serving as an aggregation point for other organizations which have identified or produced OER. At this time we gather:

  • URLs or URL patterns
  • Subject annotations, sometimes called labels

We are not currently attempting to aggregate rich metadata sets.

The data gathered is currently available in a format suitable for use in a Google Custom Search Engine (see below); ccLearn is committed to making it available in a "raw" format for further reuse.

Integrating OE Search


<form id="cref" action="http://google.com/cse">
  <input type="hidden" name="cref"
    value="http://oercloud.creativecommons.org/api/posts_context"
    />
  <input type="text" name="q" size="40" />
  <input type="submit" name="sa" value="Search" />
</form>
<script type="text/javascript"
   src="http://google.com/coop/cse/brand?form=cref"></script>

Customizing OE Search


<Label name="ocw" mode="BOOST" weight="0.8"></Label>