Skip to content

Commit

Permalink
chore: files copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
Myllaume committed Jun 15, 2024
1 parent 8b1e096 commit 8452036
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion controllers/autorecord.js
Original file line number Diff line number Diff line change
@@ -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');
Expand Down
2 changes: 1 addition & 1 deletion controllers/batch.js
Original file line number Diff line number Diff line change
@@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion controllers/create-record.js
Original file line number Diff line number Diff line change
@@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion controllers/history.js
Original file line number Diff line number Diff line change
@@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion controllers/record.js
Original file line number Diff line number Diff line change
@@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion core/frontend/bibliography.js
Original file line number Diff line number Diff line change
@@ -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
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion core/frontend/filter.js
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion core/models/bibliography.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file Bibliography pattern
* @author Guillaume Brioudes <https://myllaume.fr/>
* @copyright GNU GPL 3.0 ANR HyperOtlet
* @copyright GNU GPL 3.0 Cosma's authors
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion core/models/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file Configuration administration
* @author Guillaume Brioudes <https://myllaume.fr/>
* @copyright GNU GPL 3.0 ANR HyperOtlet
* @copyright GNU GPL 3.0 Cosma's authors
*/

const path = require('path'),
Expand Down
2 changes: 1 addition & 1 deletion core/models/cosmoscope.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file Manage the file directory and its data to generate a graph
* @author Guillaume Brioudes <https://myllaume.fr/>
* @copyright GNU GPL 3.0 ANR HyperOtlet
* @copyright GNU GPL 3.0 Cosma's authors
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion core/models/graph.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file Graph pattern
* @author Guillaume Brioudes <https://myllaume.fr/>
* @copyright GNU GPL 3.0 ANR HyperOtlet
* @copyright GNU GPL 3.0 Cosma's authors
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion core/models/lang.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file Reading this file of the interface messages in several langagues
* @author Guillaume Brioudes <https://myllaume.fr/>
* @copyright GNU GPL 3.0 ANR HyperOtlet
* @copyright GNU GPL 3.0 Cosma's authors
*/

const path = require('path'),
Expand Down
2 changes: 1 addition & 1 deletion core/models/link.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file Link (link in graph) pattern
* @author Guillaume Brioudes <https://myllaume.fr/>
* @copyright GNU GPL 3.0 ANR HyperOtlet
* @copyright GNU GPL 3.0 Cosma's authors
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion core/models/node.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file Define node pattern
* @author Guillaume Brioudes <https://myllaume.fr/>
* @copyright GNU GPL 3.0 ANR HyperOtlet
* @copyright GNU GPL 3.0 Cosma's authors
*/

const { scaleLinear } = require('d3-scale');
Expand Down
2 changes: 1 addition & 1 deletion core/models/record.js
Original file line number Diff line number Diff line change
@@ -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
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion core/models/report.js
Original file line number Diff line number Diff line change
@@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion core/models/template.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file Generate the Cosmoscope's source code
* @author Guillaume Brioudes <https://myllaume.fr/>
* @copyright GNU GPL 3.0 ANR HyperOtlet
* @copyright GNU GPL 3.0 Cosma's authors
*/

const fs = require('fs'),
Expand Down
2 changes: 1 addition & 1 deletion core/utils/fake.js
Original file line number Diff line number Diff line change
@@ -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
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion models/report-cli.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file Report saving for CLI interface
* @author Guillaume Brioudes <https://myllaume.fr/>
* @copyright GNU GPL 3.0 ANR HyperOtlet
* @copyright GNU GPL 3.0 Cosma's authors
*/

const path = require('path'),
Expand Down

0 comments on commit 8452036

Please sign in to comment.