Search: Difference between revisions

From OSSelot
Jump to navigation Jump to search
(Created initial content)
 
(Adapted header, added web interface)
Line 1: Line 1:
== Search ==
=Web resources=  
Find out whether a particular version of a software package is supported by <span style="font-family: OSSelot-Bold; font-weight: 500; color: #1565af;">O</span> and has already been curated.
==Find out whether a particular version of a software package is supported by <span style="font-family: OSSelot-Bold; font-weight: 500; color: #1565af;">O</span> and has already been curated==
 
===Call the script from browser===
Use the URL '''''<nowiki>https://www.osselot.org/curated.php?packagename</nowiki>''''' to determine whether a particular software package already has been curated and, if so, for which version disclosure information is available. For example https://www.osselot.org/curated.php?angular may return  
Use the URL '''''<nowiki>https://www.osselot.org/curated.php?packagename</nowiki>''''' to determine whether a particular software package already has been curated and, if so, for which version disclosure information is available. For example https://www.osselot.org/curated.php?angular may return  
  angular/version-15.1.0
  angular/version-15.1.0
Line 10: Line 10:


https://github.com/Open-Source-Compliance/package-analysis/tree/main/analysed-packages/angular/version-15.2.2
https://github.com/Open-Source-Compliance/package-analysis/tree/main/analysed-packages/angular/version-15.2.2
===Call the script from command line===
wget -qO - https://www.osselot.org/curated.php?angular | grep -v '<'
angular/version-15.1.0
angular/version-15.2.2
angular/version-16.0.1
angular/version-16.1.2
==Web interface to immediately run the above script from this web page and provide links to the found repositories==
<html>
<script src="/scripts/osadl.js">
</script>
<h4>Look for other software packages that may have already been curated at <span style="font-family: OSSelot-Bold; font-weight: 500; color: #1565af;">O</span> and provide links to the related repositories</h4>
<input type="text" onkeyup="searchtextkeyup(event, this, 'repo');" size="30" /><button onclick="searchOSSelot(this, 'repo');">Search the <span style="font-family: OSSelot-Bold; font-weight: 500; color: #1565af;">O</span> repository</button><br />
<span style="display: none;"></span>
<br />
</html>

Revision as of 19:30, 14 July 2023

Web resources

Find out whether a particular version of a software package is supported by O and has already been curated

Call the script from browser

Use the URL https://www.osselot.org/curated.php?packagename to determine whether a particular software package already has been curated and, if so, for which version disclosure information is available. For example https://www.osselot.org/curated.php?angular may return

angular/version-15.1.0
angular/version-15.2.2
angular/version-16.0.1
angular/version-16.1.2

If a package has not been curated so far, the output of the given URL remains empty. Otherwise, the output can be concatenated to the URL of the O Github package repository at https://github.com/Open-Source-Compliance/package-analysis/tree/main/analysed-packages/ such as, for example,

https://github.com/Open-Source-Compliance/package-analysis/tree/main/analysed-packages/angular/version-15.2.2

Call the script from command line

wget -qO - https://www.osselot.org/curated.php?angular | grep -v '<'
angular/version-15.1.0
angular/version-15.2.2
angular/version-16.0.1
angular/version-16.1.2

Web interface to immediately run the above script from this web page and provide links to the found repositories

Look for other software packages that may have already been curated at O and provide links to the related repositories