Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

File TypeStatistics*StatusIssues
.form

find . -type f -name "*.form" | grep -v '\.git' | wc -l

Result: 1242

1019 have an adjacent Java source file with a license header

223 don't have an adjacent Java source file (form module tests)

Consensus appears to be that all .form files need to manually have licenses added, in incubator-netbeans, while Matisse needs to be able to generate licenses for .form files going forward.
Jira
serverASF JIRA
serverId5aa69414-a9e9-3523-82ec-879b028fb15b
keyLEGAL-327
.png/.gif/other image files

find . -type f -name "*.png" | grep -v '\.git' | wc -l

Result: 2273

find . -type f -name "*.gif" | grep -v '\.git' | wc -l

Result: 1094

find . -type f -name "*.jpg" | grep -v '\.git' | wc -l

Result: 26

find . -type f -name "*.ico" | grep -v '\.git' | wc -l

Result: 3

  
manifest files

find . -type f -name "*.form" | grep -v '\.git' | wc -l

Result: 772

Does this have any degree of creativity? 
list files

find . -type f -name "*.list" | grep -v '\.git' | wc -l

Result: 42

Does this have any degree of creativity? 
sig files

find . -type f -name "*.sig" | grep -v '\.git' | wc -l

Result: 108

Does this have any degree of creativity? 
txt files

find . -type f -name "*.txt" | grep -v '\.git' | wc -l

Result: 930

May make sense to have no license header? 
binaries-list files

find . -type f -name "binaries-list" | grep -v '\.git' | wc -l

Result: 121

Does this have any degree of creativity? 
README files

find . -type f -name "README*" | grep -v '\.git' | wc -l

Result: 22

May make sense to have no license header? 
file files

find . -type f -name "*.file" | grep -v '\.git' | wc -l

Result: 1

May make sense to have no license header? 
jsp files

find . -type f -name "*.jsp" | grep -v '\.git' | wc -l

Result: 7

  
xsl files

find . -type f -name "*.xsl" | grep -v '\.git' | wc -l

Result: 49

  
sh filesfind . -type f -name "*.sh" | grep -v '\.git' | wc -l

Result: 80

  
css filesfind . -type f -name "*.css | grep -v '\.git' | wc -l

Result: 33

  
META-INF files Does this have any degree of creativity? 
pass (golden) files

find . -type f -name "*.pass" | grep -v '\.git' | wc -l

Result: 2644

Does this have any degree of creativity? 
    

...