We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d29ed2c + 75aa191 commit 044bbaeCopy full SHA for 044bbae
app.py
@@ -38,7 +38,7 @@
38
from licensedcode.models import load_licenses
39
from scancode_config import __version__ as scancode_version
40
41
-licenses = load_licenses(with_deprecated=True)
+licenses = dict(sorted(load_licenses(with_deprecated=True).items()))
42
43
# GitHub Pages support only /(root) or docs/ for the source
44
BUILD_LOCATION = "docs"
@@ -78,6 +78,7 @@ def generate_indexes(output_path):
78
"other_spdx_license_keys": license.other_spdx_license_keys,
79
"is_exception": license.is_exception,
80
"is_deprecated": license.is_deprecated,
81
+ "category": license.category,
82
"json": f"{key}.json",
83
"yml": f"{key}.yml",
84
"html": f"{key}.html",
0 commit comments