Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ Fossology Python also offers a command line interface to simplify interactions w
Reuse newest scheduled job for the upload if
available.
--report_format TEXT The name of the reportformat. [dep5,
spdx2,spdxtv,readmeoss,unifiedreport]
spdx2,spdxtv,readmeoss,unifiedreport,
clixml,spdx3json,spdx3rdf,spdx3jsonld]
--access_level TEXT The access level of the
upload.[private,protected,public]
--help Show this message and exit.
Expand Down
6 changes: 6 additions & 0 deletions fossology/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ class ReportFormat(Enum):
READMEOSS
UNIFIEDREPORT
CLIXML
SPDX3JSON
SPDX3RDF
SPDX3JSONLD

"""

Expand All @@ -36,6 +39,9 @@ class ReportFormat(Enum):
READMEOSS = "readmeoss"
UNIFIEDREPORT = "unifiedreport"
CLIXML = "clixml"
SPDX3JSON = "spdx3json"
SPDX3RDF = "spdx3rdf"
SPDX3JSONLD = "spdx3jsonld"


class SearchTypes(Enum):
Expand Down
2 changes: 1 addition & 1 deletion fossology/foss_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ def delete_upload(
"--report_format",
default="unifiedreport",
show_default=True,
help="The name of the reportformat (dep5, spdx2, spdxtv, readmeoss, unifiedreport)",
help="The name of the reportformat (dep5, spdx2, spdxtv, readmeoss, unifiedreport, clixml, spdx3json, spdx3rdf, spdx3jsonld)",
)
@click.option(
"--access_level",
Expand Down
Loading