Child: [r7] (diff)

Download this file

features.txt    83 lines (62 with data), 2.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
What do I need right now?
- SPDX needs to be created using an asychronous method
---------------
x Create SPDX files
-x Needs to be a polished thing
-- Add settings (
--- ignore .SVN files/folders)
--- choose package name, version, download location
--------------
- allow sorting SPDX documents according to physical folders (to ease organization)
- sort files on nodes according to folders?
- import new versions from a web server?
- organize folders according to group/organization/product
- open file in explorer
- count number of files/SPDX added
- drag and drop
- option to ignore .svn files
- option for end-users to submit an SPDX
- option for end-users to download SPDX's
- chat box?
---------------
x Access from a web browser
x SPDX create box needs more options as an HTML form
x support for recognizing new file extensions and index them
x progress window is important when creating SPDX files
x Detect licenses
-x Need a mechanism to detect licenses
-x Plugin based to make it easier
-x Compare results with known cases
X view source code
x view file details on virus total?
x added image on the startup of the tool
x search box displaying projects with search string
x counts lines of code for source code files
x basic recognition of license terms present in source code files
x minimum recognition of file types that can be read as text files
x after editing the text file, treeview needs to be reloaded
x add details about creators (time, tool)
x support non-standard tags
x Create a new SPDX from a given folder
x Add component ABC to Product XYZ
x Add library count of found components
x concluded license on SPDX file?
--------------
Limitations of BeanShell on the Java IDE
Not supported:
--- Arrays
This is not accepted:
ArrayList<SPDXfile> list;
This is the alternative:
ArrayList list;
And then:
for(Object object : list){
SPDXfile spdx = (SPDXfile) object;
}
- Unlimited arrays are not supported:
myArray...
--- Strings
- There is no "isEmpty()" method like:
if(text.isEmpty()){}
This is the alternative
if(text.length()>0){}