Skip to content

Commit c55c234

Browse files
committed
refacor : update copyright messages
1 parent 7d76dde commit c55c234

8 files changed

+76
-14
lines changed

src/editor/editor.ml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
(* This file is part of Learn-OCaml.
22
*
3-
* Copyright (C) 2016 OCamlPro.
3+
* Copyright (C) 2019 OCaml Software Foundation.
4+
* Copyright (C) 2016-2018 OCamlPro.
45
*
5-
* Learn-OCaml is free software: you can redistribute it and/or modify
6-
* it under the terms of the GNU Affero General Public License as
7-
* published by the Free Software Foundation, either version 3 of the
8-
* License, or (at your op1tion) any later version.
9-
*
10-
* Learn-OCaml is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU Affero General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU Affero General Public License
16-
* along with this program. If not, see <http://www.gnu.org/licenses/>. *)
6+
* The main authors of the editor part is the pfitaxel team see
7+
* https://github.com/pfitaxel/learn-ocaml-editor for more information
8+
*
9+
* Learn-OCaml is distributed under the terms of the MIT license. See the
10+
* included LICENSE file for details. *)
1711

1812
open Js_utils
1913
open Lwt.Infix

src/editor/editor_lib.ml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
(* This file is part of Learn-OCaml.
2+
*
3+
* Copyright (C) 2019 OCaml Software Foundation.
4+
* Copyright (C) 2016-2018 OCamlPro.
5+
*
6+
* The main authors of the editor part is the pfitaxel team see
7+
* https://github.com/pfitaxel/learn-ocaml-editor for more information
8+
*
9+
* Learn-OCaml is distributed under the terms of the MIT license. See the
10+
* included LICENSE file for details. *)
11+
112
open Learnocaml_data
213
open Learnocaml_common
314
open Learnocaml_index

src/editor/editor_lib.mli

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
(* This file is part of Learn-OCaml.
2+
*
3+
* Copyright (C) 2019 OCaml Software Foundation.
4+
* Copyright (C) 2016-2018 OCamlPro.
5+
*
6+
* The main authors of the editor part is the pfitaxel team see
7+
* https://github.com/pfitaxel/learn-ocaml-editor for more information
8+
*
9+
* Learn-OCaml is distributed under the terms of the MIT license. See the
10+
* included LICENSE file for details. *)
11+
112
open Learnocaml_data
213
open Editor
314
val update_index : Editor.editor_state -> unit

src/editor/learnocaml_editor_tab.ml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
(* This file is part of Learn-OCaml.
2-
*
2+
*
33
* Copyright (C) 2019 OCaml Software Foundation.
44
* Copyright (C) 2016-2018 OCamlPro.
55
*
6+
* The main authors of the editor part is the pfitaxel team see
7+
* https://github.com/pfitaxel/learn-ocaml-editor for more information
8+
*
69
* Learn-OCaml is distributed under the terms of the MIT license. See the
710
* included LICENSE file for details. *)
811

src/editor/learnocaml_editor_tab.mli

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,12 @@
1+
(* This file is part of Learn-OCaml.
2+
*
3+
* Copyright (C) 2019 OCaml Software Foundation.
4+
* Copyright (C) 2016-2018 OCamlPro.
5+
*
6+
* The main authors of the editor part is the pfitaxel team see
7+
* https://github.com/pfitaxel/learn-ocaml-editor for more information
8+
*
9+
* Learn-OCaml is distributed under the terms of the MIT license. See the
10+
* included LICENSE file for details. *)
11+
112
val editor_tab : 'b -> 'c -> unit -> [> Html_types.div ] Tyxml_js.Html5.elt Lwt.t

src/editor/new_exercise.ml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
(* This file is part of Learn-OCaml.
2+
*
3+
* Copyright (C) 2019 OCaml Software Foundation.
4+
* Copyright (C) 2016-2018 OCamlPro.
5+
*
6+
* The main authors of the editor part is the pfitaxel team see
7+
* https://github.com/pfitaxel/learn-ocaml-editor for more information
8+
*
9+
* Learn-OCaml is distributed under the terms of the MIT license. See the
10+
* included LICENSE file for details. *)
11+
112
open Js_of_ocaml
213
open Dom_html
314
open Js_utils

src/editor/test_spec.ml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
(* This file is part of Learn-OCaml.
2+
*
3+
* Copyright (C) 2019 OCaml Software Foundation.
4+
* Copyright (C) 2016-2018 OCamlPro.
5+
*
6+
* The main authors of the editor part is the pfitaxel team see
7+
* https://github.com/pfitaxel/learn-ocaml-editor for more information
8+
*
9+
* Learn-OCaml is distributed under the terms of the MIT license. See the
10+
* included LICENSE file for details. *)
11+
112
open Editor_lib
213

314
let rec to_string_aux char_list =match char_list with

src/editor/test_spec.mli

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
(* This file is part of Learn-OCaml.
2+
*
3+
* Copyright (C) 2019 OCaml Software Foundation.
4+
* Copyright (C) 2016-2018 OCamlPro.
5+
*
6+
* The main authors of the editor part is the pfitaxel team see
7+
* https://github.com/pfitaxel/learn-ocaml-editor for more information
8+
*
9+
* Learn-OCaml is distributed under the terms of the MIT license. See the
10+
* included LICENSE file for details. *)
111

212
(** Allows typing a question passing by a string
313
* @param question_untyped id_question *)

0 commit comments

Comments
 (0)