From 71799b9dfc373ff0549b62ee9472d9ff159e054c Mon Sep 17 00:00:00 2001 From: EmileRolley Date: Thu, 27 May 2021 18:56:47 +0200 Subject: [PATCH] docs: update contributions in file comments --- src/catala/driver.ml | 4 ++-- src/catala/literate/html.ml | 4 ++-- src/catala/literate/latex.ml | 4 ++-- src/catala/literate/literate_common.ml | 13 +++++++++++++ src/catala/literate/literate_common.mli | 3 +-- src/catala/surface/ast.ml | 4 ++-- src/catala/surface/lexer_common.ml | 4 ++-- src/catala/surface/lexer_common.mli | 4 ++-- src/catala/surface/lexer_en.ml | 4 ++-- src/catala/surface/lexer_en.mli | 4 ++-- src/catala/surface/lexer_fr.ml | 4 ++-- src/catala/surface/lexer_fr.mli | 4 ++-- src/catala/surface/lexer_pl.ml | 4 ++-- src/catala/surface/lexer_pl.mli | 4 ++-- src/catala/surface/parser.mly | 3 ++- src/catala/surface/parser_driver.ml | 4 ++-- src/catala/surface/tokens.mly | 3 ++- src/catala/utils/cli.ml | 4 ++-- src/catala/utils/cli.mli | 4 ++-- 19 files changed, 48 insertions(+), 34 deletions(-) diff --git a/src/catala/driver.ml b/src/catala/driver.ml index 8a1a0dfc..27da1425 100644 --- a/src/catala/driver.ml +++ b/src/catala/driver.ml @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/literate/html.ml b/src/catala/literate/html.ml index 6ed00c79..707a71d4 100644 --- a/src/catala/literate/html.ml +++ b/src/catala/literate/html.ml @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/literate/latex.ml b/src/catala/literate/latex.ml index 6befec39..8247ac45 100644 --- a/src/catala/literate/latex.ml +++ b/src/catala/literate/latex.ml @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/literate/literate_common.ml b/src/catala/literate/literate_common.ml index 9e17ed9c..16e6e767 100644 --- a/src/catala/literate/literate_common.ml +++ b/src/catala/literate/literate_common.ml @@ -1,3 +1,16 @@ +(* This file is part of the Catala compiler, a specification language for tax and social benefits + computation rules. Copyright (C) 2020 Inria, contributor: Emile Rolley + + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + in compliance with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software distributed under the License + is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + or implied. See the License for the specific language governing permissions and limitations under + the License. *) + open Utils open Cli diff --git a/src/catala/literate/literate_common.mli b/src/catala/literate/literate_common.mli index 9a631980..45df12b7 100644 --- a/src/catala/literate/literate_common.mli +++ b/src/catala/literate/literate_common.mli @@ -1,6 +1,5 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributor: Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/ast.ml b/src/catala/surface/ast.ml index b5b116b7..aa6603fc 100644 --- a/src/catala/surface/ast.ml +++ b/src/catala/surface/ast.ml @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/lexer_common.ml b/src/catala/surface/lexer_common.ml index 6dd12587..da5884d1 100644 --- a/src/catala/surface/lexer_common.ml +++ b/src/catala/surface/lexer_common.ml @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/lexer_common.mli b/src/catala/surface/lexer_common.mli index 78fa18f7..adfc4c34 100644 --- a/src/catala/surface/lexer_common.mli +++ b/src/catala/surface/lexer_common.mli @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/lexer_en.ml b/src/catala/surface/lexer_en.ml index d3d6c2b8..ced95102 100644 --- a/src/catala/surface/lexer_en.ml +++ b/src/catala/surface/lexer_en.ml @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/lexer_en.mli b/src/catala/surface/lexer_en.mli index ebabbfe9..1cc8cb5a 100644 --- a/src/catala/surface/lexer_en.mli +++ b/src/catala/surface/lexer_en.mli @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/lexer_fr.ml b/src/catala/surface/lexer_fr.ml index c50cdc1c..73a610b8 100644 --- a/src/catala/surface/lexer_fr.ml +++ b/src/catala/surface/lexer_fr.ml @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/lexer_fr.mli b/src/catala/surface/lexer_fr.mli index ebabbfe9..1cc8cb5a 100644 --- a/src/catala/surface/lexer_fr.mli +++ b/src/catala/surface/lexer_fr.mli @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/lexer_pl.ml b/src/catala/surface/lexer_pl.ml index 1c8d21bc..338b05be 100644 --- a/src/catala/surface/lexer_pl.ml +++ b/src/catala/surface/lexer_pl.ml @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/lexer_pl.mli b/src/catala/surface/lexer_pl.mli index ebabbfe9..1cc8cb5a 100644 --- a/src/catala/surface/lexer_pl.mli +++ b/src/catala/surface/lexer_pl.mli @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/parser.mly b/src/catala/surface/parser.mly index e4ba96b9..bffdb4cd 100644 --- a/src/catala/surface/parser.mly +++ b/src/catala/surface/parser.mly @@ -1,7 +1,8 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits computation rules. - Copyright (C) 2020 Inria, contributor: Denis Merigoux + Copyright (C) 2020 Inria, contributors: Denis Merigoux , + Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/catala/surface/parser_driver.ml b/src/catala/surface/parser_driver.ml index 0a83cafd..d2dac64e 100644 --- a/src/catala/surface/parser_driver.ml +++ b/src/catala/surface/parser_driver.ml @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/surface/tokens.mly b/src/catala/surface/tokens.mly index 25c06be6..f72ca601 100644 --- a/src/catala/surface/tokens.mly +++ b/src/catala/surface/tokens.mly @@ -1,7 +1,8 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits computation rules. - Copyright (C) 2020 Inria, contributor: Denis Merigoux + Copyright (C) 2020 Inria, contributors: Denis Merigoux , + Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/catala/utils/cli.ml b/src/catala/utils/cli.ml index cb4f683a..1ed85d41 100644 --- a/src/catala/utils/cli.ml +++ b/src/catala/utils/cli.ml @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/catala/utils/cli.mli b/src/catala/utils/cli.mli index 5357e67b..d8246955 100644 --- a/src/catala/utils/cli.mli +++ b/src/catala/utils/cli.mli @@ -1,6 +1,6 @@ (* This file is part of the Catala compiler, a specification language for tax and social benefits - computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux - + computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux + , Emile Rolley Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at