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

  
list files

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

Result: 42

  
sig files

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

Result: 108

  
txt files

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

Result: 930

  
binaries-list files

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

Result: 121

  
README files

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

Result: 22

  
file files

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

Result: 1

  
jsp files

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

Result: 7

  
xsl files

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

Result: 49

  
pass (golden) files

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

Result: 2644

  
    

...