Skip to content
Permalink
Browse files

Update license headers for #208. (#290)

  • Loading branch information...
ruebot authored and ianmilligan1 committed Nov 22, 2018
1 parent d3aebf4 commit 80b9e2b4aff2d027eb1f96bb54d0d5b5558cf96a
Showing with 88 additions and 88 deletions.
  1. +1 −1 LICENSE_HEADER.txt
  2. +1 −1 config/checkstyle/scalastyle_config.xml
  3. +1 −1 src/main/java/io/archivesunleashed/data/ArcRecordUtils.java
  4. +1 −1 src/main/java/io/archivesunleashed/data/ArchiveRecordInputFormat.java
  5. +1 −1 src/main/java/io/archivesunleashed/data/ArchiveRecordWritable.java
  6. +1 −1 src/main/java/io/archivesunleashed/data/WarcRecordUtils.java
  7. +1 −1 src/main/java/io/archivesunleashed/data/package-info.java
  8. +1 −1 src/main/scala/io/archivesunleashed/ArchiveRecord.scala
  9. +1 −1 src/main/scala/io/archivesunleashed/DataFrameLoader.scala
  10. +1 −1 src/main/scala/io/archivesunleashed/app/CommandLineApp.scala
  11. +1 −1 src/main/scala/io/archivesunleashed/app/DomainFrequencyExtractor.scala
  12. +1 −1 src/main/scala/io/archivesunleashed/app/DomainGraphExtractor.scala
  13. +1 −1 src/main/scala/io/archivesunleashed/app/ExtractEntities.scala
  14. +1 −1 src/main/scala/io/archivesunleashed/app/ExtractGraph.scala
  15. +1 −1 src/main/scala/io/archivesunleashed/app/ExtractGraphX.scala
  16. +1 −1 src/main/scala/io/archivesunleashed/app/ExtractPopularImages.scala
  17. +1 −1 src/main/scala/io/archivesunleashed/app/NERCombinedJson.scala
  18. +1 −1 src/main/scala/io/archivesunleashed/app/PlainTextExtractor.scala
  19. +1 −1 src/main/scala/io/archivesunleashed/app/WriteGEXF.scala
  20. +1 −1 src/main/scala/io/archivesunleashed/app/WriteGraph.scala
  21. +1 −1 src/main/scala/io/archivesunleashed/app/WriteGraphML.scala
  22. +1 −1 src/main/scala/io/archivesunleashed/app/WriteGraphXML.scala
  23. +1 −1 src/main/scala/io/archivesunleashed/df/package.scala
  24. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ComputeImageSize.scala
  25. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ComputeMD5.scala
  26. +1 −1 src/main/scala/io/archivesunleashed/matchbox/DetectLanguage.scala
  27. +1 −1 src/main/scala/io/archivesunleashed/matchbox/DetectMimeTypeTika.scala
  28. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ExtractAtMentions.scala
  29. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ExtractBoilerpipeText.scala
  30. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ExtractDate.scala
  31. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ExtractDomain.scala
  32. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ExtractHashtags.scala
  33. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ExtractImageDetails.scala
  34. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ExtractImageLinks.scala
  35. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ExtractLinks.scala
  36. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ExtractTextFromPDFs.scala
  37. +1 −1 src/main/scala/io/archivesunleashed/matchbox/ExtractUrls.scala
  38. +1 −1 src/main/scala/io/archivesunleashed/matchbox/NERClassifier.scala
  39. +1 −1 src/main/scala/io/archivesunleashed/matchbox/RemoveHTML.scala
  40. +1 −1 src/main/scala/io/archivesunleashed/matchbox/RemoveHttpHeader.scala
  41. +1 −1 src/main/scala/io/archivesunleashed/matchbox/TupleFormatter.scala
  42. +1 −1 src/main/scala/io/archivesunleashed/matchbox/package.scala
  43. +1 −1 src/main/scala/io/archivesunleashed/package.scala
  44. +1 −1 src/main/scala/io/archivesunleashed/util/JsonUtils.scala
  45. +1 −1 src/main/scala/io/archivesunleashed/util/TweetUtils.scala
  46. +1 −1 src/test/java/io/archivesunleashed/data/ArcLoaderTest.java
  47. +1 −1 src/test/java/io/archivesunleashed/data/ArchiveRecordInputFormatTest.java
  48. +1 −1 src/test/java/io/archivesunleashed/data/ArchiveRecordWritableTest.java
  49. +1 −1 src/test/java/io/archivesunleashed/data/WarcLoaderTest.java
  50. +1 −1 src/test/scala/io/archivesunleashed/ArcTest.scala
  51. +1 −1 src/test/scala/io/archivesunleashed/ArchiveRecordTest.scala
  52. +1 −1 src/test/scala/io/archivesunleashed/CountableRDDTest.scala
  53. +1 −1 src/test/scala/io/archivesunleashed/RecordLoaderTest.scala
  54. +1 −1 src/test/scala/io/archivesunleashed/RecordRDDTest.scala
  55. +1 −1 src/test/scala/io/archivesunleashed/WarcTest.scala
  56. +1 −1 src/test/scala/io/archivesunleashed/app/CommandLineAppTest.scala
  57. +1 −1 src/test/scala/io/archivesunleashed/app/DomainFrequencyExtractorTest.scala
  58. +1 −1 src/test/scala/io/archivesunleashed/app/DomainGraphExtractorDfTest.scala
  59. +1 −1 src/test/scala/io/archivesunleashed/app/DomainGraphExtractorTest.scala
  60. +1 −1 src/test/scala/io/archivesunleashed/app/ExtractEntitiesTest.scala
  61. +1 −1 src/test/scala/io/archivesunleashed/app/ExtractGraphTest.scala
  62. +1 −1 src/test/scala/io/archivesunleashed/app/ExtractGraphXTest.scala
  63. +1 −1 src/test/scala/io/archivesunleashed/app/ExtractPopularImagesTest.scala
  64. +1 −1 src/test/scala/io/archivesunleashed/app/PlainTextExtractorTest.scala
  65. +1 −1 src/test/scala/io/archivesunleashed/app/WriteGEXFTest.scala
  66. +1 −1 src/test/scala/io/archivesunleashed/app/WriteGraphMLTest.scala
  67. +1 −1 src/test/scala/io/archivesunleashed/app/WriteGraphTest.scala
  68. +1 −1 src/test/scala/io/archivesunleashed/app/WriteGraphXMLTest.scala
  69. +1 −1 src/test/scala/io/archivesunleashed/df/ExtractImageDetailsTest.scala
  70. +1 −1 src/test/scala/io/archivesunleashed/df/ExtractImageLinksTest.scala
  71. +1 −1 src/test/scala/io/archivesunleashed/df/SaveImageTest.scala
  72. +1 −1 src/test/scala/io/archivesunleashed/df/SimpleDfTest.scala
  73. +1 −1 src/test/scala/io/archivesunleashed/matchbox/ComputeImageSizeTest.scala
  74. +1 −1 src/test/scala/io/archivesunleashed/matchbox/ExtractAtMentionsTest.scala
  75. +1 −1 src/test/scala/io/archivesunleashed/matchbox/ExtractBoilerPipeTextTest.scala
  76. +1 −1 src/test/scala/io/archivesunleashed/matchbox/ExtractDateTest.scala
  77. +1 −1 src/test/scala/io/archivesunleashed/matchbox/ExtractDomainTest.scala
  78. +1 −1 src/test/scala/io/archivesunleashed/matchbox/ExtractHashtagsTest.scala
  79. +1 −1 src/test/scala/io/archivesunleashed/matchbox/ExtractImageLinksTest.scala
  80. +1 −1 src/test/scala/io/archivesunleashed/matchbox/ExtractLinksTest.scala
  81. +1 −1 src/test/scala/io/archivesunleashed/matchbox/ExtractTextFromPDFsTest.scala
  82. +1 −1 src/test/scala/io/archivesunleashed/matchbox/ExtractUrlsTest.scala
  83. +1 −1 src/test/scala/io/archivesunleashed/matchbox/RemoveHTMLTest.scala
  84. +1 −1 src/test/scala/io/archivesunleashed/matchbox/RemoveHttpHeaderTest.scala
  85. +1 −1 src/test/scala/io/archivesunleashed/matchbox/StringUtilsTest.scala
  86. +1 −1 src/test/scala/io/archivesunleashed/matchbox/TupleFormatterTest.scala
  87. +1 −1 src/test/scala/io/archivesunleashed/util/JsonUtilsTest.scala
  88. +1 −1 src/test/scala/io/archivesunleashed/util/TweetUtilsTest.scala
@@ -1,5 +1,5 @@
Archives Unleashed Toolkit (AUT):
An open-source platform for analyzing web archives.
An open-source toolkit for analyzing web archives.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -10,7 +10,7 @@
<parameters>
<parameter name="header"><![CDATA[/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
/*
* Archives Unleashed Toolkit (AUT):
* An open-source platform for analyzing web archives.
* An open-source toolkit for analyzing web archives.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

0 comments on commit 80b9e2b

Please sign in to comment.
You can’t perform that action at this time.