diff --git a/app.js b/app.js index 8bfb5a30..f5200b43 100755 --- a/app.js +++ b/app.js @@ -3,7 +3,7 @@ /** * @file Addressing of terminal commands. * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const commander = require('commander'), diff --git a/controllers/autorecord.js b/controllers/autorecord.js index 5cab509c..a42e8779 100644 --- a/controllers/autorecord.js +++ b/controllers/autorecord.js @@ -1,7 +1,7 @@ /** * @file Prompt config to create record * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const Config = require('../core/models/config'); diff --git a/controllers/batch.js b/controllers/batch.js index d250ffb3..30b41c24 100644 --- a/controllers/batch.js +++ b/controllers/batch.js @@ -1,7 +1,7 @@ /** * @file Create several records from a JSON data file * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const fs = require('fs'), diff --git a/controllers/create-record.js b/controllers/create-record.js index 1ea1a17a..714f93c8 100644 --- a/controllers/create-record.js +++ b/controllers/create-record.js @@ -1,7 +1,7 @@ /** * @file Create record Mardown file from fields * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const readline = require('readline'), diff --git a/controllers/history.js b/controllers/history.js index a6f95a1d..a232fa5a 100644 --- a/controllers/history.js +++ b/controllers/history.js @@ -1,7 +1,7 @@ /** * @file Create folders for save the export. * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const fs = require('fs'), diff --git a/controllers/record.js b/controllers/record.js index 6be63524..48c07bc9 100644 --- a/controllers/record.js +++ b/controllers/record.js @@ -1,7 +1,7 @@ /** * @file Prompt config and questions to create record * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const Config = require('../core/models/config'), diff --git a/core/frontend/bibliography.js b/core/frontend/bibliography.js index b9499c71..632637ec 100644 --- a/core/frontend/bibliography.js +++ b/core/frontend/bibliography.js @@ -1,7 +1,7 @@ /** * @file Download references data from the cosmoscope. * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ /** diff --git a/core/frontend/filter.js b/core/frontend/filter.js index 81c1371d..3faa6c87 100644 --- a/core/frontend/filter.js +++ b/core/frontend/filter.js @@ -1,7 +1,7 @@ /** * @file Select filters elts and activate them by the ids them contain. * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ import { setNodesDisplaying } from './graph'; diff --git a/core/models/bibliography.js b/core/models/bibliography.js index 92966459..80107ae1 100644 --- a/core/models/bibliography.js +++ b/core/models/bibliography.js @@ -1,7 +1,7 @@ /** * @file Bibliography pattern * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ /** diff --git a/core/models/config.js b/core/models/config.js index c961eaee..02a65424 100644 --- a/core/models/config.js +++ b/core/models/config.js @@ -1,7 +1,7 @@ /** * @file Configuration administration * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const path = require('path'), diff --git a/core/models/cosmoscope.js b/core/models/cosmoscope.js index 0c827b04..5b5b250c 100644 --- a/core/models/cosmoscope.js +++ b/core/models/cosmoscope.js @@ -1,7 +1,7 @@ /** * @file Manage the file directory and its data to generate a graph * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ /** diff --git a/core/models/graph.js b/core/models/graph.js index 877a681a..29b6aec8 100644 --- a/core/models/graph.js +++ b/core/models/graph.js @@ -1,7 +1,7 @@ /** * @file Graph pattern * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ /** diff --git a/core/models/lang.js b/core/models/lang.js index a1f53e58..f6d288c8 100644 --- a/core/models/lang.js +++ b/core/models/lang.js @@ -1,7 +1,7 @@ /** * @file Reading this file of the interface messages in several langagues * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const path = require('path'), diff --git a/core/models/link.js b/core/models/link.js index 4e595c80..c701017b 100644 --- a/core/models/link.js +++ b/core/models/link.js @@ -1,7 +1,7 @@ /** * @file Link (link in graph) pattern * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ /** diff --git a/core/models/node.js b/core/models/node.js index 56695583..0d35c8ea 100644 --- a/core/models/node.js +++ b/core/models/node.js @@ -1,7 +1,7 @@ /** * @file Define node pattern * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const { scaleLinear } = require('d3-scale'); diff --git a/core/models/record.js b/core/models/record.js index d4f5511d..55b7183f 100644 --- a/core/models/record.js +++ b/core/models/record.js @@ -1,7 +1,7 @@ /** * @file Format data for records, verif and save as file * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ /** diff --git a/core/models/report.js b/core/models/report.js index 422f8fa8..88f48cdc 100644 --- a/core/models/report.js +++ b/core/models/report.js @@ -1,7 +1,7 @@ /** * @file Register error in recoding processs * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const path = require('path'), diff --git a/core/models/template.js b/core/models/template.js index 5398679b..88ccc666 100644 --- a/core/models/template.js +++ b/core/models/template.js @@ -1,7 +1,7 @@ /** * @file Generate the Cosmoscope's source code * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const fs = require('fs'), diff --git a/core/utils/fake.js b/core/utils/fake.js index cd721c82..f52848f0 100644 --- a/core/utils/fake.js +++ b/core/utils/fake.js @@ -1,7 +1,7 @@ /** * @file Generate a fake cosmoscope. * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ /** diff --git a/models/report-cli.js b/models/report-cli.js index 018e233c..472afca6 100644 --- a/models/report-cli.js +++ b/models/report-cli.js @@ -1,7 +1,7 @@ /** * @file Report saving for CLI interface * @author Guillaume Brioudes - * @copyright GNU GPL 3.0 ANR HyperOtlet + * @copyright GNU GPL 3.0 Cosma's authors */ const path = require('path'),