Skip to content

Commit 0244dec

Browse files
committed
Remove conclusion from docs
Signed-off-by: Omkar Phansopkar <[email protected]>
1 parent 5564589 commit 0244dec

File tree

13 files changed

+8
-185
lines changed

13 files changed

+8
-185
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ New Features
1616
- Update app icon to a more visible one #382
1717
- Add color to DataTables "Progress..." pop-up #407
1818
- Update the display of scan headers #400
19+
- Remove ability to edit conclusions & remove conclusions view
1920

2021
Bug Fixes
2122
~~~~~~~~~

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,9 @@
55

66
ScanCode Workbench provides an advanced visual UI to help you quickly evaluate
77
license and other notices identified by
8-
[ScanCode](https://github.com/nexB/scancode-toolkit/) and record your conclusion
9-
about the effective license(s) for a component.
8+
[ScanCode](https://github.com/nexB/scancode-toolkit/).
109
[ScanCode](https://github.com/nexB/scancode-toolkit/) detects licenses, copyrights
11-
and other interesting information in your code. ScanCode Workbench allows you to take the
12-
scan results from ScanCode and create conclusions. By creating these conclusions
13-
within your codebase, you are creating a software inventory of your product.
14-
The conclusions (Concluded License, Concluded Owner, etc.) you make when
15-
creating your conclusion can be exported as a JSON file or saved as SQLite file.
10+
and other interesting information in your code.
1611

1712
ScanCode Workbench is based on
1813
[Electron](https://electron.atom.io/) and will be the primary desktop/GUI tool

assets/app/js/renderer.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ $(document).ready(() => {
121121
// Save a SQLite Database file
122122
saveSQLiteFileButton.click(saveSQLite);
123123

124-
// Show ScanData DataTable. Hide node view and conclusion summary table
124+
// Show ScanData DataTable. Hide node view
125125
showScanDataButton.click(() => {
126126
splitter.show();
127127
scanDataTable.redraw();
@@ -414,7 +414,7 @@ $(document).ready(() => {
414414
});
415415
}
416416

417-
/** Export JSON file with original ScanCode data and conclusions that have been created */
417+
/** Export JSON file with original ScanCode data */
418418
function exportJson() {
419419
dialog.showSaveDialog({
420420
properties: ['openFile'],
@@ -455,15 +455,14 @@ $(document).ready(() => {
455455

456456
Promise.all([scanCodeInfoPromise, workbenchInfoPromise,
457457
filesCountPromise, scanDataFilesPromise])
458-
.then(([scanCodeInfo, workbenchInfo, filesCount, scanDataFiles, conclusions]) => {
458+
.then(([scanCodeInfo, workbenchInfo, filesCount, scanDataFiles]) => {
459459
const json = {
460460
workbench_notice: workbenchInfo.workbench_notice,
461461
workbench_version: workbenchInfo.workbench_version,
462462
scancode_version: scanCodeInfo.scancode_version,
463463
scancode_options: scanCodeInfo.scancode_options,
464464
files_count: filesCount,
465-
files: scanDataFiles,
466-
conclusions: conclusions
465+
files: scanDataFiles
467466
};
468467

469468
fs.writeFile(fileName, JSON.stringify(json), (err) => {

docs/source/how-to-guides/create-conclusions/create-conclusions.rst

Lines changed: 0 additions & 95 deletions
This file was deleted.
Binary file not shown.
Binary file not shown.

docs/source/how-to-guides/create-conclusions/index.rst

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs/source/how-to-guides/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ a ``-clipeu`` scan of ``e2fsprogs-1.45.6.tar.gz``.
1818
load-your-data/index
1919
lookup-scan-version/index
2020
explore-your-data/index
21-
create-conclusions/index
2221
export-json-records/index
2322
troubleshooting/index
2423
special-topics/index

docs/source/overview/index.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ scans. With ScanCode Workbench, you can:
1111
- Load a `ScanCode Toolkit <https://github.com/nexB/scancode-toolkit>`__ ``.json`` scan of
1212
your codebase.
1313
- Use an advanced visual UI to analyze license and other notices identified by ScanCode Toolkit.
14-
- Record your conclusions about the effective license(s) for a component or package.
15-
- Easily export your conclusions as a ``.json`` file.
1614

1715
Organization of the Documentation
1816
=================================

docs/source/ui-reference/conclusion-view.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)