JSON: Difference between revisions

From OSSelot
Jump to navigation Jump to search
(Adapted to the REST interface)
m (Updated OSSelot logo to new font feature)
 
(18 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Obtain curation data in JSON format==
==Obtain curation data in JSON format==
====Single version====
====Single version====
To obtain curation data of a single version of a software package in JSON format, the following REST call may be used:
To obtain curation data of a single version of a software package in JSON format, the following [[REST]] calls may be used:
<nowiki>
<pre>
http://www.osselot.org:3262/json/<package>/<version>
http://www.osselot.org:3262/json/<package>/<version>
</nowiki>
</pre>
such as in a wget command
or
<pre>
https://www.osselot.org:3263/json/<package>/<version>
</pre>
such as in a <i>wget</i> command
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
wget -qO - http://www.osselot.org:3262/json/angular/15.2.2
wget -qO - http://www.osselot.org:3262/json/dbus/1.15.2
</syntaxhighlight>
</syntaxhighlight>


Line 13: Line 17:
The command to obtain JSON formatted data of all available versions of a software package is very similar to the above except that the "version" part is not given such as
The command to obtain JSON formatted data of all available versions of a software package is very similar to the above except that the "version" part is not given such as
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
wget -qO - http://wwww.osselot.org:3262/json/angular
wget -qO - http://wwww.osselot.org:3262/json/dbus
</syntaxhighlight>
</syntaxhighlight>


====Format JSON file in browser====
====Format JSON file in browser====
If your browser supports display of JSON data either natively or after having installed an appropriate extension, you may immediately browse to the JSON data such as
If a browser supports display of JSON data either natively or after having installed an appropriate extension, JSON data may be rendered and interactively inspected using links such as
<html>
<html>
<a href="http://www.osselot.org:3262/json/angular/15.2.2">angular version 15.2.2</a>
<a href="https://www.osselot.org:3263/json/dbus/1.15.2">DBus version 1.15.2</a>
</html>
</html>
or even
or even
<html>
<html>
<a href="http://www.osselot.org:3262/json/angular">all curated versions of angular</a>.
<a href="https://www.osselot.org:3263/json/dbus">all curated versions of DBus</a>.
</html>
</html>


<i>(Please note that the above browser commands, particularly the second, may take a long time to render.)</i>
<i>(Please note that the above browser commands, particularly the second, may take a long time to render.)</i>
<html>
<script src="/scripts/osadl.js">
</script>
<h4>For browsers with generic JSON support: Search for a package, select it, submit it to the REST interface for JSON formatted data and display the <span style="font-family: OSSelot-Bold; font-weight: 500; color: #1565af;">OSSelot</span> curation data in a new window</h4>
<i>(Same as above, some of the packages may take a long time to render. If the browser does not know how to handle JSON code, use the below OSADL built-in display version.)</i><br />
<input type="text" onkeyup="searchtextkeyup(event, this, 'restjson');" size="30" /><button onclick="searchOSSelot(this, 'restjson');">Search the <span style="font-family: OSSelot-Bold; font-weight: 500; color: #1565af;">OSSelot</span> repository</button><br />
<span style="display: none;"></span>
<br />
</html>
<html>
<h4>If the browser does not generically support JSON display: Search for a package, select it, let the JSON formatted <span style="font-family: OSSelot-Bold; font-weight: 500; color: #1565af;">OSSelot</span> curation data be validated for syntax correctness and colorified, and display the code in a new window</h4>
<i>(Also same as above, some of the packages may take a long time to render.)</i><br />
<input type="text" onkeyup="searchtextkeyup(event, this, 'validatejson');" size="30" /><button onclick="searchOSSelot(this, 'validatejson');">Search the <span style="font-family: OSSelot-Bold; font-weight: 500; color: #1565af;">OSSelot</span> repository</button><br />
<span style="display: none;"></span>
<br />
</html>
====Other formats====
In addition to the above, the curated data are also available in [[RDF-XML]], [[SPDX2TV]] and [[YAML]] format.

Latest revision as of 15:42, 1 November 2023

Obtain curation data in JSON format

Single version

To obtain curation data of a single version of a software package in JSON format, the following REST calls may be used:

http://www.osselot.org:3262/json/<package>/<version>

or

https://www.osselot.org:3263/json/<package>/<version>

such as in a wget command

wget -qO - http://www.osselot.org:3262/json/dbus/1.15.2

All available versions of a software package

The command to obtain JSON formatted data of all available versions of a software package is very similar to the above except that the "version" part is not given such as

wget -qO - http://wwww.osselot.org:3262/json/dbus

Format JSON file in browser

If a browser supports display of JSON data either natively or after having installed an appropriate extension, JSON data may be rendered and interactively inspected using links such as DBus version 1.15.2 or even all curated versions of DBus.

(Please note that the above browser commands, particularly the second, may take a long time to render.)

For browsers with generic JSON support: Search for a package, select it, submit it to the REST interface for JSON formatted data and display the OSSelot curation data in a new window

(Same as above, some of the packages may take a long time to render. If the browser does not know how to handle JSON code, use the below OSADL built-in display version.)


If the browser does not generically support JSON display: Search for a package, select it, let the JSON formatted OSSelot curation data be validated for syntax correctness and colorified, and display the code in a new window

(Also same as above, some of the packages may take a long time to render.)


Other formats

In addition to the above, the curated data are also available in RDF-XML, SPDX2TV and YAML format.