diff options
author | Sylvestre Ledru <sylvestre.ledru@scilab.org> | 2010-05-10 15:20:54 +0200 |
---|---|---|
committer | Pierre MARECHAL <pierre.marechal@scilab.org> | 2010-05-11 11:27:30 +0200 |
commit | ccf0063139dc6c8df1a5ae77308a5a093db19928 (patch) | |
tree | b96f50b28c95fcb3ac78dafda91d67bce46e1de6 /scilab | |
parent | e55ecc1a17777c5f8eb6f41a25097f6a1b83e8a7 (diff) | |
download | scilab-ccf0063139dc6c8df1a5ae77308a5a093db19928.zip scilab-ccf0063139dc6c8df1a5ae77308a5a093db19928.tar.gz |
License header was missing
Change-Id: I6589703ff1698cd04e30ea8ed3c07d000654365b
Diffstat (limited to 'scilab')
148 files changed, 868 insertions, 529 deletions
diff --git a/scilab/contrib/Makefile.am b/scilab/contrib/Makefile.am index 87e27d5..8a571e7 100644 --- a/scilab/contrib/Makefile.am +++ b/scilab/contrib/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2008 - DIGITEO - Sylvestre LEDRU |
3 | ### DIGITEO - Scilab 2008 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | # Install the contrib_skeleton directory (the template) | 6 | # Install the contrib_skeleton directory (the template) |
7 | 7 | ||
diff --git a/scilab/contrib/Makefile.in b/scilab/contrib/Makefile.in index f8775f6..8b7c76e 100644 --- a/scilab/contrib/Makefile.in +++ b/scilab/contrib/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2008 - DIGITEO - Sylvestre LEDRU |
20 | ### DIGITEO - Scilab 2008 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Install the contrib_skeleton directory (the template) | 23 | # Install the contrib_skeleton directory (the template) |
24 | VPATH = @srcdir@ | 24 | VPATH = @srcdir@ |
diff --git a/scilab/libs/GetWindowsVersion/GetWindowsVersion.c b/scilab/libs/GetWindowsVersion/GetWindowsVersion.c index d79ce44..c82ffa8 100644 --- a/scilab/libs/GetWindowsVersion/GetWindowsVersion.c +++ b/scilab/libs/GetWindowsVersion/GetWindowsVersion.c | |||
@@ -1,3 +1,15 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2006 - INRIA - Allan CORNET | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
1 | #include "GetWindowsVersion.h" | 13 | #include "GetWindowsVersion.h" |
2 | /*-----------------------------------------------------------------------------------*/ | 14 | /*-----------------------------------------------------------------------------------*/ |
3 | typedef BOOL (WINAPI *LPFN_ISWOW64PROCESS) (HANDLE, PBOOL); | 15 | typedef BOOL (WINAPI *LPFN_ISWOW64PROCESS) (HANDLE, PBOOL); |
diff --git a/scilab/libs/GetWindowsVersion/GetWindowsVersion.h b/scilab/libs/GetWindowsVersion/GetWindowsVersion.h index 7ca754e..2ba215e 100644 --- a/scilab/libs/GetWindowsVersion/GetWindowsVersion.h +++ b/scilab/libs/GetWindowsVersion/GetWindowsVersion.h | |||
@@ -1,5 +1,15 @@ | |||
1 | /* Allan CORNET */ | 1 | /* |
2 | /* INRIA 2006 */ | 2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | * Copyright (C) 2006 - INRIA - Allan CORNET | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
3 | #ifndef __GETWINDOWSVERSION_H__ | 13 | #ifndef __GETWINDOWSVERSION_H__ |
4 | #define __GETWINDOWSVERSION_H__ | 14 | #define __GETWINDOWSVERSION_H__ |
5 | #include <windows.h> | 15 | #include <windows.h> |
@@ -34,4 +44,4 @@ | |||
34 | IMPORT_EXPORT_GETWINDOWSVERSION_DLL int GetWindowsVersion(void); | 44 | IMPORT_EXPORT_GETWINDOWSVERSION_DLL int GetWindowsVersion(void); |
35 | IMPORT_EXPORT_GETWINDOWSVERSION_DLL BOOL IsWow64(void); | 45 | IMPORT_EXPORT_GETWINDOWSVERSION_DLL BOOL IsWow64(void); |
36 | /*-----------------------------------------------------------------------------------*/ | 46 | /*-----------------------------------------------------------------------------------*/ |
37 | #endif /* __GETWINDOWSVERSION_H__ */ \ No newline at end of file | 47 | #endif /* __GETWINDOWSVERSION_H__ */ |
diff --git a/scilab/libs/LibScilab/DllmainLibscilab.c b/scilab/libs/LibScilab/DllmainLibscilab.c index 2061dee..e308cd4 100644 --- a/scilab/libs/LibScilab/DllmainLibscilab.c +++ b/scilab/libs/LibScilab/DllmainLibscilab.c | |||
@@ -1,7 +1,15 @@ | |||
1 | /*-----------------------------------------------------------------------------------*/ | 1 | /* |
2 | /* INRIA 2005 */ | 2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | /* Allan CORNET */ | 3 | * Copyright (C) 2005 - INRIA - Allan CORNET |
4 | /*-----------------------------------------------------------------------------------*/ | 4 | * |
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
5 | #include <windows.h> | 13 | #include <windows.h> |
6 | #ifdef USE_F2C | 14 | #ifdef USE_F2C |
7 | #include "f2c.h" | 15 | #include "f2c.h" |
diff --git a/scilab/libs/MALLOC/Makefile.am b/scilab/libs/MALLOC/Makefile.am index 293e578..c7ef291 100644 --- a/scilab/libs/MALLOC/Makefile.am +++ b/scilab/libs/MALLOC/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | MALLOC_C_SOURCES = src/sci_mem_alloc.c src/getmaxMALLOC.c | 7 | MALLOC_C_SOURCES = src/sci_mem_alloc.c src/getmaxMALLOC.c |
7 | 8 | ||
diff --git a/scilab/libs/MALLOC/Makefile.in b/scilab/libs/MALLOC/Makefile.in index f7cd659..fa32e2c 100644 --- a/scilab/libs/MALLOC/Makefile.in +++ b/scilab/libs/MALLOC/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/libs/MALLOC/includes/ExportImport.h b/scilab/libs/MALLOC/includes/ExportImport.h index 3c14502..ae072a7 100644 --- a/scilab/libs/MALLOC/includes/ExportImport.h +++ b/scilab/libs/MALLOC/includes/ExportImport.h | |||
@@ -1,7 +1,15 @@ | |||
1 | /*-----------------------------------------------------------------------------------*/ | 1 | /* |
2 | /* INRIA 2007 */ | 2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | /* Allan CORNET */ | 3 | * Copyright (C) INRIA - 2006 - Allan CORNET |
4 | /*-----------------------------------------------------------------------------------*/ | 4 | * |
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
5 | #ifndef __EXPORTIMPORT_MALLOC_H__ | 13 | #ifndef __EXPORTIMPORT_MALLOC_H__ |
6 | #define __EXPORTIMPORT_MALLOC_H__ | 14 | #define __EXPORTIMPORT_MALLOC_H__ |
7 | 15 | ||
diff --git a/scilab/libs/MALLOC/includes/getmaxMALLOC.h b/scilab/libs/MALLOC/includes/getmaxMALLOC.h index 17ed8b9..52b4e1c 100644 --- a/scilab/libs/MALLOC/includes/getmaxMALLOC.h +++ b/scilab/libs/MALLOC/includes/getmaxMALLOC.h | |||
@@ -1,7 +1,14 @@ | |||
1 | /*-----------------------------------------------------------------------------------*/ | 1 | /* |
2 | /* INRIA 2006 */ | 2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | /* Allan CORNET */ | 3 | * Copyright (C) INRIA - 2006 - Allan CORNET |
4 | /*-----------------------------------------------------------------------------------*/ | 4 | * |
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
5 | #ifndef __GETMAXMALLOC_H__ | 12 | #ifndef __GETMAXMALLOC_H__ |
6 | #define __GETMAXMALLOC_H__ | 13 | #define __GETMAXMALLOC_H__ |
7 | /*-----------------------------------------------------------------------------------*/ | 14 | /*-----------------------------------------------------------------------------------*/ |
diff --git a/scilab/libs/MALLOC/includes/sci_mem_alloc.h b/scilab/libs/MALLOC/includes/sci_mem_alloc.h index 5c2db60..11109c0 100644 --- a/scilab/libs/MALLOC/includes/sci_mem_alloc.h +++ b/scilab/libs/MALLOC/includes/sci_mem_alloc.h | |||
@@ -1,4 +1,15 @@ | |||
1 | /* Allan CORNET INRIA 2005 */ | 1 | /* |
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) INRIA - 2005 - Allan CORNET | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
2 | 13 | ||
3 | #ifndef __SCI_MEM_ALLOC__ | 14 | #ifndef __SCI_MEM_ALLOC__ |
4 | #define __SCI_MEM_ALLOC__ | 15 | #define __SCI_MEM_ALLOC__ |
diff --git a/scilab/libs/MALLOC/includes/win_mem_alloc.h b/scilab/libs/MALLOC/includes/win_mem_alloc.h index 84f9bc6..5121f8d 100644 --- a/scilab/libs/MALLOC/includes/win_mem_alloc.h +++ b/scilab/libs/MALLOC/includes/win_mem_alloc.h | |||
@@ -1,4 +1,14 @@ | |||
1 | /* Allan CORNET INRIA 2005 */ | 1 | /* |
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) INRIA - 2005 - Allan CORNET | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
2 | 12 | ||
3 | #ifndef __WIN_MEM_ALLOC__ | 13 | #ifndef __WIN_MEM_ALLOC__ |
4 | #define __WIN_MEM_ALLOC__ | 14 | #define __WIN_MEM_ALLOC__ |
diff --git a/scilab/libs/MALLOC/src/sci_mem_alloc.c b/scilab/libs/MALLOC/src/sci_mem_alloc.c index 9dfa984..aa2029c 100644 --- a/scilab/libs/MALLOC/src/sci_mem_alloc.c +++ b/scilab/libs/MALLOC/src/sci_mem_alloc.c | |||
@@ -1,11 +1,20 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) INRIA - 2005 - Allan CORNET | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
1 | #include <stdlib.h> | 13 | #include <stdlib.h> |
2 | #include <stdio.h> | 14 | #include <stdio.h> |
3 | #include <string.h> | 15 | #include <string.h> |
4 | #include "sci_mem_alloc.h" | 16 | #include "sci_mem_alloc.h" |
5 | 17 | ||
6 | /* Allan CORNET */ | ||
7 | /* INRIA 2005 */ | ||
8 | /*-----------------------------------------------------------------------------------*/ | ||
9 | IMPORT_EXPORT_MALLOC_DLL void * MyReAlloc(void * lpAddress,size_t dwSize,const char *fichier,int ligne) | 18 | IMPORT_EXPORT_MALLOC_DLL void * MyReAlloc(void * lpAddress,size_t dwSize,const char *fichier,int ligne) |
10 | { | 19 | { |
11 | void * NewPointer=realloc(lpAddress,dwSize); | 20 | void * NewPointer=realloc(lpAddress,dwSize); |
diff --git a/scilab/libs/MALLOC/src/win_mem_alloc.c b/scilab/libs/MALLOC/src/win_mem_alloc.c index fd1b471..9ed7a15 100644 --- a/scilab/libs/MALLOC/src/win_mem_alloc.c +++ b/scilab/libs/MALLOC/src/win_mem_alloc.c | |||
@@ -1,5 +1,15 @@ | |||
1 | /* Allan CORNET */ | 1 | /* |
2 | /* INRIA 2005 */ | 2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | * Copyright (C) INRIA - 2005 - Allan CORNET | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
3 | #include <stdio.h> | 13 | #include <stdio.h> |
4 | #include <string.h> | 14 | #include <string.h> |
5 | #include <memory.h> | 15 | #include <memory.h> |
diff --git a/scilab/libs/Makefile.am b/scilab/libs/Makefile.am index 23eebe9..313206c 100644 --- a/scilab/libs/Makefile.am +++ b/scilab/libs/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | # The order DOES matter !!! | 6 | # The order DOES matter !!! |
7 | SUBDIRS = \ | 7 | SUBDIRS = \ |
diff --git a/scilab/libs/Makefile.in b/scilab/libs/Makefile.in index cfe780d..c89e0939 100644 --- a/scilab/libs/Makefile.in +++ b/scilab/libs/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | VPATH = @srcdir@ | 22 | VPATH = @srcdir@ |
23 | pkgdatadir = $(datadir)/@PACKAGE@ | 23 | pkgdatadir = $(datadir)/@PACKAGE@ |
24 | pkgincludedir = $(includedir)/@PACKAGE@ | 24 | pkgincludedir = $(includedir)/@PACKAGE@ |
diff --git a/scilab/libs/doublylinkedlist/Makefile.am b/scilab/libs/doublylinkedlist/Makefile.am index a2d6657..21fa2d7 100644 --- a/scilab/libs/doublylinkedlist/Makefile.am +++ b/scilab/libs/doublylinkedlist/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Allan CORNET | 2 | # Copyright (C) 2007 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2007 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | DOUBLYLINKEDLIST_C_SOURCES = src/DoublyLinkedList.c | 6 | DOUBLYLINKEDLIST_C_SOURCES = src/DoublyLinkedList.c |
7 | 7 | ||
diff --git a/scilab/libs/doublylinkedlist/Makefile.in b/scilab/libs/doublylinkedlist/Makefile.in index 9aa533d..d387bbc 100644 --- a/scilab/libs/doublylinkedlist/Makefile.in +++ b/scilab/libs/doublylinkedlist/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Allan CORNET | 19 | # Copyright (C) 2007 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2007 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/libs/dynamiclibrary/Makefile.am b/scilab/libs/dynamiclibrary/Makefile.am index d4648f4..2510c3b 100644 --- a/scilab/libs/dynamiclibrary/Makefile.am +++ b/scilab/libs/dynamiclibrary/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Allan CORNET | 2 | # Copyright (C) 2007 - INRIA - Allan CORNET |
3 | ### INRIA - Scilab 2007 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | DYNAMICLIBRARY_C_SOURCES = src/dynamiclibrary_others.c | 6 | DYNAMICLIBRARY_C_SOURCES = src/dynamiclibrary_others.c |
7 | 7 | ||
diff --git a/scilab/libs/dynamiclibrary/Makefile.in b/scilab/libs/dynamiclibrary/Makefile.in index f5d3922..e72b1d2 100644 --- a/scilab/libs/dynamiclibrary/Makefile.in +++ b/scilab/libs/dynamiclibrary/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Allan CORNET | 19 | # Copyright (C) 2007 - INRIA - Allan CORNET |
20 | ### INRIA - Scilab 2007 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/libs/hashtable/DllmainHashtable.c b/scilab/libs/hashtable/DllmainHashtable.c index 1b08946..75f9400 100644 --- a/scilab/libs/hashtable/DllmainHashtable.c +++ b/scilab/libs/hashtable/DllmainHashtable.c | |||
@@ -1,7 +1,14 @@ | |||
1 | /*-----------------------------------------------------------------------------------*/ | 1 | /* |
2 | /* INRIA 2006 */ | 2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | /* Allan CORNET */ | 3 | * Copyright (C) 2006 - INRIA - Allan CORNET |
4 | /*-----------------------------------------------------------------------------------*/ | 4 | * |
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
5 | #include <windows.h> | 12 | #include <windows.h> |
6 | /*-----------------------------------------------------------------------------------*/ | 13 | /*-----------------------------------------------------------------------------------*/ |
7 | int WINAPI DllMain (HINSTANCE hInstance , DWORD reason, PVOID pvReserved) | 14 | int WINAPI DllMain (HINSTANCE hInstance , DWORD reason, PVOID pvReserved) |
diff --git a/scilab/libs/hashtable/Makefile.am b/scilab/libs/hashtable/Makefile.am index 7a2d2c5..2979509 100644 --- a/scilab/libs/hashtable/Makefile.am +++ b/scilab/libs/hashtable/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | HASHTABLE_C_SOURCES = hashtable_utility.c \ | 6 | HASHTABLE_C_SOURCES = hashtable_utility.c \ |
7 | hashtable_itr.c \ | 7 | hashtable_itr.c \ |
diff --git a/scilab/libs/hashtable/Makefile.in b/scilab/libs/hashtable/Makefile.in index 28ce07e..1a85f2d 100644 --- a/scilab/libs/hashtable/Makefile.in +++ b/scilab/libs/hashtable/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/libs/libst/DllmainSt.c b/scilab/libs/libst/DllmainSt.c index 1c21bab..051fe87 100644 --- a/scilab/libs/libst/DllmainSt.c +++ b/scilab/libs/libst/DllmainSt.c | |||
@@ -1,7 +1,15 @@ | |||
1 | /*-----------------------------------------------------------------------------------*/ | 1 | /* |
2 | /* INRIA 2007 */ | 2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | /* Allan CORNET */ | 3 | * Copyright (C) 2006 - INRIA - Allan CORNET |
4 | /*-----------------------------------------------------------------------------------*/ | 4 | * |
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
5 | #include <windows.h> | 13 | #include <windows.h> |
6 | /*-----------------------------------------------------------------------------------*/ | 14 | /*-----------------------------------------------------------------------------------*/ |
7 | #pragma comment(lib,"../../bin/libintl.lib") | 15 | #pragma comment(lib,"../../bin/libintl.lib") |
diff --git a/scilab/libs/libst/Makefile.am b/scilab/libs/libst/Makefile.am index 435b939..c0bc123 100644 --- a/scilab/libs/libst/Makefile.am +++ b/scilab/libs/libst/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | LIBST_C_SOURCES = libst.c misc.c | 6 | LIBST_C_SOURCES = libst.c misc.c |
7 | 7 | ||
diff --git a/scilab/libs/libst/Makefile.in b/scilab/libs/libst/Makefile.in index 04985b2..64dca91 100644 --- a/scilab/libs/libst/Makefile.in +++ b/scilab/libs/libst/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/m4/fortran.m4 b/scilab/m4/fortran.m4 index 4ed4c7f..63de9b4 100644 --- a/scilab/m4/fortran.m4 +++ b/scilab/m4/fortran.m4 | |||
@@ -1,11 +1,16 @@ | |||
1 | dnl Macros which process ./configure arguments | 1 | dnl |
2 | 2 | dnl Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | |
3 | dnl Copyright (C) INRIA - 2006 - Sylvestre Ledru | ||
4 | dnl | ||
5 | dnl This file must be used under the terms of the CeCILL. | ||
6 | dnl This source file is licensed as described in the file COPYING, which | ||
7 | dnl you should have received as part of this distribution. The terms | ||
8 | dnl are also available at | ||
9 | dnl http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | dnl | ||
3 | 11 | ||
4 | dnl Fortran Macros | 12 | dnl Fortran Macros |
5 | dnl ------------------------------------------------------ | 13 | |
6 | dnl Copyright INRIA | ||
7 | dnl Sylvestre Ledru - June 2006 | ||
8 | dnl | ||
9 | dnl ------------------------------------------------------ | 14 | dnl ------------------------------------------------------ |
10 | dnl AC_CHECK_UNDERSCORE_FORTRAN | 15 | dnl AC_CHECK_UNDERSCORE_FORTRAN |
11 | dnl Look for trailing or leading underscores | 16 | dnl Look for trailing or leading underscores |
diff --git a/scilab/m4/hdf5.m4 b/scilab/m4/hdf5.m4 index c73a65a..212ee7e 100644 --- a/scilab/m4/hdf5.m4 +++ b/scilab/m4/hdf5.m4 | |||
@@ -1,6 +1,6 @@ | |||
1 | dnl | 1 | dnl |
2 | dnl Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 2 | dnl Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | dnl Copyright (C) DIGITEO - 2009 - 2009 - Bruno JOFRET | 3 | dnl Copyright (C) DIGITEO - 2009 - Bruno JOFRET |
4 | dnl | 4 | dnl |
5 | dnl This file must be used under the terms of the CeCILL. | 5 | dnl This file must be used under the terms of the CeCILL. |
6 | dnl This source file is licensed as described in the file COPYING, which | 6 | dnl This source file is licensed as described in the file COPYING, which |
diff --git a/scilab/modules/api_scilab/Makefile.am b/scilab/modules/api_scilab/Makefile.am index af04ac3..ee0b525 100644 --- a/scilab/modules/api_scilab/Makefile.am +++ b/scilab/modules/api_scilab/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Allan CORNET | 2 | # Copyright (C) 2009 - Digiteo - Allan CORNET |
3 | ### DIGITEO - Scilab 2009 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | ### SOURCES ### | 6 | ### SOURCES ### |
7 | 7 | ||
diff --git a/scilab/modules/api_scilab/Makefile.in b/scilab/modules/api_scilab/Makefile.in index 8d58cba..6b58268 100644 --- a/scilab/modules/api_scilab/Makefile.in +++ b/scilab/modules/api_scilab/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Allan CORNET | 19 | # Copyright (C) 2009 - Digiteo - Allan CORNET |
20 | ### DIGITEO - Scilab 2009 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | ### SOURCES ### | 23 | ### SOURCES ### |
24 | 24 | ||
diff --git a/scilab/modules/arnoldi/Makefile.am b/scilab/modules/arnoldi/Makefile.am index bf34879..b3483db 100644 --- a/scilab/modules/arnoldi/Makefile.am +++ b/scilab/modules/arnoldi/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | 6 | ||
7 | ARNOLDI_FORTRAN_SOURCES = src/arpack/dsconv.f \ | 7 | ARNOLDI_FORTRAN_SOURCES = src/arpack/dsconv.f \ |
diff --git a/scilab/modules/arnoldi/Makefile.in b/scilab/modules/arnoldi/Makefile.in index 9ed0bd0..f535442 100644 --- a/scilab/modules/arnoldi/Makefile.in +++ b/scilab/modules/arnoldi/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/boolean/Makefile.am b/scilab/modules/boolean/Makefile.am index 9f98828..f6a4887 100644 --- a/scilab/modules/boolean/Makefile.am +++ b/scilab/modules/boolean/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | BOOLEAN_C_SOURCES = src/c/matboolean.c \ | 7 | BOOLEAN_C_SOURCES = src/c/matboolean.c \ |
7 | src/c/vect_or.c \ | 8 | src/c/vect_or.c \ |
diff --git a/scilab/modules/boolean/Makefile.in b/scilab/modules/boolean/Makefile.in index e7be86c..1510ef0 100644 --- a/scilab/modules/boolean/Makefile.in +++ b/scilab/modules/boolean/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/cacsd/Makefile.am b/scilab/modules/cacsd/Makefile.am index 9b8e0eb..74eb07a 100644 --- a/scilab/modules/cacsd/Makefile.am +++ b/scilab/modules/cacsd/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | 6 | ||
7 | SLICOT_FORTRAN_SOURCES= src/slicot/sb04pd.f \ | 7 | SLICOT_FORTRAN_SOURCES= src/slicot/sb04pd.f \ |
diff --git a/scilab/modules/cacsd/Makefile.in b/scilab/modules/cacsd/Makefile.in index 7d19b55..7d2ee6c 100644 --- a/scilab/modules/cacsd/Makefile.in +++ b/scilab/modules/cacsd/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/call_scilab/Makefile.am b/scilab/modules/call_scilab/Makefile.am index 19ce4cf..b4c4134 100644 --- a/scilab/modules/call_scilab/Makefile.am +++ b/scilab/modules/call_scilab/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2009 - DIGITEO - Sylvestre Ledru |
3 | ### DIGITEO - Scilab 2009 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | ### SOURCES ### | 7 | ### SOURCES ### |
7 | CALLSCILAB_C_SOURCES = src/c/call_scilab.c \ | 8 | CALLSCILAB_C_SOURCES = src/c/call_scilab.c \ |
diff --git a/scilab/modules/call_scilab/Makefile.in b/scilab/modules/call_scilab/Makefile.in index e2bd8da..ad639d3 100644 --- a/scilab/modules/call_scilab/Makefile.in +++ b/scilab/modules/call_scilab/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2009 - DIGITEO - Sylvestre Ledru |
20 | ### DIGITEO - Scilab 2009 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/console/src/java/org/scilab/modules/console/GetNextAction.java b/scilab/modules/console/src/java/org/scilab/modules/console/GetNextAction.java index f8edd96..6d507d5 100644 --- a/scilab/modules/console/src/java/org/scilab/modules/console/GetNextAction.java +++ b/scilab/modules/console/src/java/org/scilab/modules/console/GetNextAction.java | |||
@@ -1,15 +1,20 @@ | |||
1 | /** | 1 | /* |
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2007 - INRIA - Vincent COUVERT | ||
2 | * | 4 | * |
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
3 | */ | 11 | */ |
12 | |||
4 | package org.scilab.modules.console; | 13 | package org.scilab.modules.console; |
5 | 14 | ||
6 | import java.awt.event.ActionEvent; | 15 | import java.awt.event.ActionEvent; |
7 | import com.artenum.rosetta.core.action.AbstractConsoleAction; | 16 | import com.artenum.rosetta.core.action.AbstractConsoleAction; |
8 | 17 | ||
9 | /** | ||
10 | * @author Vincent COUVERT | ||
11 | * | ||
12 | */ | ||
13 | public class GetNextAction extends AbstractConsoleAction { | 18 | public class GetNextAction extends AbstractConsoleAction { |
14 | private static final long serialVersionUID = 1L; | 19 | private static final long serialVersionUID = 1L; |
15 | 20 | ||
diff --git a/scilab/modules/console/src/java/org/scilab/modules/console/GetPreviousAction.java b/scilab/modules/console/src/java/org/scilab/modules/console/GetPreviousAction.java index 2ad08e6..da88cd4 100644 --- a/scilab/modules/console/src/java/org/scilab/modules/console/GetPreviousAction.java +++ b/scilab/modules/console/src/java/org/scilab/modules/console/GetPreviousAction.java | |||
@@ -1,6 +1,15 @@ | |||
1 | /** | 1 | /* |
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2007 - INRIA - Vincent COUVERT | ||
2 | * | 4 | * |
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
3 | */ | 11 | */ |
12 | |||
4 | package org.scilab.modules.console; | 13 | package org.scilab.modules.console; |
5 | 14 | ||
6 | import java.awt.event.ActionEvent; | 15 | import java.awt.event.ActionEvent; |
diff --git a/scilab/modules/data_structures/Makefile.am b/scilab/modules/data_structures/Makefile.am index 5955da0..3ff4840 100644 --- a/scilab/modules/data_structures/Makefile.am +++ b/scilab/modules/data_structures/Makefile.am | |||
@@ -1,8 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | 6 | ||
7 | DATA_STRUCTURES_C_SOURCES = src/c/stcreate.c \ | 7 | DATA_STRUCTURES_C_SOURCES = src/c/stcreate.c \ |
8 | src/c/hmops.c | 8 | src/c/hmops.c |
diff --git a/scilab/modules/data_structures/Makefile.in b/scilab/modules/data_structures/Makefile.in index f28828f..e4deba9 100644 --- a/scilab/modules/data_structures/Makefile.in +++ b/scilab/modules/data_structures/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/demo_tools/Makefile.am b/scilab/modules/demo_tools/Makefile.am index dd2549d..ffcbc2d 100644 --- a/scilab/modules/demo_tools/Makefile.am +++ b/scilab/modules/demo_tools/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | # ============================================================================== | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | # Pierre MARECHAL <pierre.marechal@inria.fr> | 2 | # Copyright (C) 2007 - INRIA - Pierre MARECHAL |
3 | # Copyright INRIA 2007 | 3 | # |
4 | # ============================================================================== | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | #### Target ###### | 7 | #### Target ###### |
7 | modulename=demo_tools | 8 | modulename=demo_tools |
diff --git a/scilab/modules/demo_tools/Makefile.in b/scilab/modules/demo_tools/Makefile.in index 6d6d140..367235d 100644 --- a/scilab/modules/demo_tools/Makefile.in +++ b/scilab/modules/demo_tools/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | # ============================================================================== | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | # Pierre MARECHAL <pierre.marechal@inria.fr> | 19 | # Copyright (C) 2007 - INRIA - Pierre MARECHAL |
20 | # Copyright INRIA 2007 | 20 | # |
21 | # ============================================================================== | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/development_tools/Makefile.am b/scilab/modules/development_tools/Makefile.am index f9dc625..58635ee 100644 --- a/scilab/modules/development_tools/Makefile.am +++ b/scilab/modules/development_tools/Makefile.am | |||
@@ -1,8 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
6 | 5 | ||
7 | 6 | ||
8 | #### Target ###### | 7 | #### Target ###### |
diff --git a/scilab/modules/development_tools/Makefile.in b/scilab/modules/development_tools/Makefile.in index cbfe9e4..4a544a1 100644 --- a/scilab/modules/development_tools/Makefile.in +++ b/scilab/modules/development_tools/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/differential_equations/Makefile.am b/scilab/modules/differential_equations/Makefile.am index 2657e98..84141c56 100644 --- a/scilab/modules/differential_equations/Makefile.am +++ b/scilab/modules/differential_equations/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | DIFFERENTIAL_EQUATIONS_C_SOURCES = src/c/dassl.c \ | 7 | DIFFERENTIAL_EQUATIONS_C_SOURCES = src/c/dassl.c \ |
7 | src/c/feval.c \ | 8 | src/c/feval.c \ |
diff --git a/scilab/modules/differential_equations/Makefile.in b/scilab/modules/differential_equations/Makefile.in index 9eac552..db8c320 100644 --- a/scilab/modules/differential_equations/Makefile.in +++ b/scilab/modules/differential_equations/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/double/Makefile.am b/scilab/modules/double/Makefile.am index d8076b5..6388d5a 100644 --- a/scilab/modules/double/Makefile.am +++ b/scilab/modules/double/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | GATEWAY_C_SOURCES = sci_gateway/c/gw_double.c | 6 | GATEWAY_C_SOURCES = sci_gateway/c/gw_double.c |
7 | 7 | ||
diff --git a/scilab/modules/double/Makefile.in b/scilab/modules/double/Makefile.in index abf26a4..27b33e5 100644 --- a/scilab/modules/double/Makefile.in +++ b/scilab/modules/double/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/dynamic_link/Makefile.am b/scilab/modules/dynamic_link/Makefile.am index 3567e54..5de12f7 100644 --- a/scilab/modules/dynamic_link/Makefile.am +++ b/scilab/modules/dynamic_link/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | DYNAMIC_LINK_C_SOURCES = src/c/addinter.c \ | 7 | DYNAMIC_LINK_C_SOURCES = src/c/addinter.c \ |
7 | src/c/dynamic_link.c \ | 8 | src/c/dynamic_link.c \ |
diff --git a/scilab/modules/dynamic_link/Makefile.in b/scilab/modules/dynamic_link/Makefile.in index 338c62b..17424e0 100644 --- a/scilab/modules/dynamic_link/Makefile.in +++ b/scilab/modules/dynamic_link/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/dynamic_link/src/scripts/Makefile.am b/scilab/modules/dynamic_link/src/scripts/Makefile.am index d2ba758..79c4144 100644 --- a/scilab/modules/dynamic_link/src/scripts/Makefile.am +++ b/scilab/modules/dynamic_link/src/scripts/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | # Without this, flags will be overriden | 6 | # Without this, flags will be overriden |
7 | AM_CFLAGS=@CFLAGS@ | 7 | AM_CFLAGS=@CFLAGS@ |
diff --git a/scilab/modules/elementary_functions/Makefile.am b/scilab/modules/elementary_functions/Makefile.am index 1254bf7..d758fbc 100644 --- a/scilab/modules/elementary_functions/Makefile.am +++ b/scilab/modules/elementary_functions/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | ELEMENTARIES_FUNCTIONS_C_SOURCES = src/c/sci_tools.c \ | 7 | ELEMENTARIES_FUNCTIONS_C_SOURCES = src/c/sci_tools.c \ |
7 | src/c/finite.c \ | 8 | src/c/finite.c \ |
diff --git a/scilab/modules/elementary_functions/Makefile.in b/scilab/modules/elementary_functions/Makefile.in index 5bed993..73b0641 100644 --- a/scilab/modules/elementary_functions/Makefile.in +++ b/scilab/modules/elementary_functions/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/fileio/Makefile.am b/scilab/modules/fileio/Makefile.am index c7d9b5b..fe63507 100644 --- a/scilab/modules/fileio/Makefile.am +++ b/scilab/modules/fileio/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | FILEIO_SOURCES = src/c/FileExist.c \ | 7 | FILEIO_SOURCES = src/c/FileExist.c \ |
7 | src/c/scanf_functions.c \ | 8 | src/c/scanf_functions.c \ |
diff --git a/scilab/modules/fileio/Makefile.in b/scilab/modules/fileio/Makefile.in index f2d7cd1..1ecb957 100644 --- a/scilab/modules/fileio/Makefile.in +++ b/scilab/modules/fileio/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/fileio/src/c/meof.h b/scilab/modules/fileio/src/c/meof.h index ea40185..cc83281 100644 --- a/scilab/modules/fileio/src/c/meof.h +++ b/scilab/modules/fileio/src/c/meof.h | |||
@@ -1,7 +1,15 @@ | |||
1 | /*--------------------------------------------------------------------------*/ | 1 | /* |
2 | /* Scilab */ | 2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | /* INRIA 2007 */ | 3 | * Copyright (C) 2007 - INRIA |
4 | /*--------------------------------------------------------------------------*/ | 4 | * |
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
5 | #ifndef __MEOF_H__ | 13 | #ifndef __MEOF_H__ |
6 | #define __MEOF_H__ | 14 | #define __MEOF_H__ |
7 | 15 | ||
diff --git a/scilab/modules/functions/Makefile.am b/scilab/modules/functions/Makefile.am index cac5009..7c0b476 100644 --- a/scilab/modules/functions/Makefile.am +++ b/scilab/modules/functions/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Allan CORNET | 2 | # Copyright (C) 2009 - DIGITEO - Allan CORNET |
3 | ### DIGITEO - Scilab 2009 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | FUNCTIONS_C_SOURCES = src/c/getmacroslist.c \ | 6 | FUNCTIONS_C_SOURCES = src/c/getmacroslist.c \ |
7 | src/c/librarieslist.c \ | 7 | src/c/librarieslist.c \ |
diff --git a/scilab/modules/functions/Makefile.in b/scilab/modules/functions/Makefile.in index 5dac71e..32b85a4 100644 --- a/scilab/modules/functions/Makefile.in +++ b/scilab/modules/functions/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Allan CORNET | 19 | # Copyright (C) 2009 - DIGITEO - Allan CORNET |
20 | ### DIGITEO - Scilab 2009 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/graphics/macros/datatips/%datatips_p.sci b/scilab/modules/graphics/macros/datatips/%datatips_p.sci index 9c5c069..9b71feb 100644 --- a/scilab/modules/graphics/macros/datatips/%datatips_p.sci +++ b/scilab/modules/graphics/macros/datatips/%datatips_p.sci | |||
@@ -1,3 +1,12 @@ | |||
1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> | ||
3 | // | ||
4 | // This file must be used under the terms of the CeCILL. | ||
5 | // This source file is licensed as described in the file COPYING, which | ||
6 | // you should have received as part of this distribution. The terms | ||
7 | // are also available at; | ||
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
9 | |||
1 | function %datatips_p(d) | 10 | function %datatips_p(d) |
2 | fun=fun2string(d.formatfunction) | 11 | fun=fun2string(d.formatfunction) |
3 | 12 | ||
diff --git a/scilab/modules/graphics/macros/datatips/datatipCreate.sci b/scilab/modules/graphics/macros/datatips/datatipCreate.sci index e50c163..7489fb4 100644 --- a/scilab/modules/graphics/macros/datatips/datatipCreate.sci +++ b/scilab/modules/graphics/macros/datatips/datatipCreate.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | 10 | ||
11 | function datatip_handle=datatipCreate(curve,index,ax) | 11 | function datatip_handle=datatipCreate(curve,index,ax) |
12 | //add a datatip at the given location of the given curve | 12 | //add a datatip at the given location of the given curve |
diff --git a/scilab/modules/graphics/macros/datatips/datatipDefaultDisplay.sci b/scilab/modules/graphics/macros/datatips/datatipDefaultDisplay.sci index 12d9c23..e76322b 100644 --- a/scilab/modules/graphics/macros/datatips/datatipDefaultDisplay.sci +++ b/scilab/modules/graphics/macros/datatips/datatipDefaultDisplay.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | 10 | ||
11 | function str=datatipDefaultDisplay(curve,pt,index) | 11 | function str=datatipDefaultDisplay(curve,pt,index) |
12 | if size(pt,'*')==2 then | 12 | if size(pt,'*')==2 then |
diff --git a/scilab/modules/graphics/macros/datatips/datatipGetEntities.sci b/scilab/modules/graphics/macros/datatips/datatipGetEntities.sci index 1ee187d..fc124c5 100644 --- a/scilab/modules/graphics/macros/datatips/datatipGetEntities.sci +++ b/scilab/modules/graphics/macros/datatips/datatipGetEntities.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | 10 | ||
11 | function curve_handles=datatipGetEntities(ax) | 11 | function curve_handles=datatipGetEntities(ax) |
12 | //Collects all entities supporting datatips in a given axes | 12 | //Collects all entities supporting datatips in a given axes |
diff --git a/scilab/modules/graphics/macros/datatips/datatipGetStruct.sci b/scilab/modules/graphics/macros/datatips/datatipGetStruct.sci index 341f495..77c4391 100644 --- a/scilab/modules/graphics/macros/datatips/datatipGetStruct.sci +++ b/scilab/modules/graphics/macros/datatips/datatipGetStruct.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | function t=datatipGetStruct(curve) | 10 | function t=datatipGetStruct(curve) |
11 | //to be customized when a specific field will be dedicated to datatips | 11 | //to be customized when a specific field will be dedicated to datatips |
12 | t=curve.user_data | 12 | t=curve.user_data |
diff --git a/scilab/modules/graphics/macros/datatips/datatipInitStruct.sci b/scilab/modules/graphics/macros/datatips/datatipInitStruct.sci index 1c4b064..4dbfe39 100644 --- a/scilab/modules/graphics/macros/datatips/datatipInitStruct.sci +++ b/scilab/modules/graphics/macros/datatips/datatipInitStruct.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | 10 | ||
11 | function ok=datatipInitStruct(curve_handle,varargin) | 11 | function ok=datatipInitStruct(curve_handle,varargin) |
12 | //This function is used to initialize the data structure dedicated to | 12 | //This function is used to initialize the data structure dedicated to |
diff --git a/scilab/modules/graphics/macros/datatips/datatipLookfor.sci b/scilab/modules/graphics/macros/datatips/datatipLookfor.sci index 02381ec..ef9ec9e 100644 --- a/scilab/modules/graphics/macros/datatips/datatipLookfor.sci +++ b/scilab/modules/graphics/macros/datatips/datatipLookfor.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | 10 | ||
11 | function [curve_index,tip_index]=datatipLookfor(curve_handles,pt) | 11 | function [curve_index,tip_index]=datatipLookfor(curve_handles,pt) |
12 | //curve_handles: a vector of curves which are supposed to have datatips | 12 | //curve_handles: a vector of curves which are supposed to have datatips |
diff --git a/scilab/modules/graphics/macros/datatips/datatipManagerMode.sci b/scilab/modules/graphics/macros/datatips/datatipManagerMode.sci index 60f7ac8..3b29c74 100644 --- a/scilab/modules/graphics/macros/datatips/datatipManagerMode.sci +++ b/scilab/modules/graphics/macros/datatips/datatipManagerMode.sci | |||
@@ -1,12 +1,11 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | // | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | ||
10 | 9 | ||
11 | function datatipManagerMode(varargin) | 10 | function datatipManagerMode(varargin) |
12 | //Toggle or sets the interactive mode for datatips edition.; | 11 | //Toggle or sets the interactive mode for datatips edition.; |
diff --git a/scilab/modules/graphics/macros/datatips/datatipMove.sci b/scilab/modules/graphics/macros/datatips/datatipMove.sci index b30c6b4..8bbc569 100644 --- a/scilab/modules/graphics/macros/datatips/datatipMove.sci +++ b/scilab/modules/graphics/macros/datatips/datatipMove.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | 10 | ||
11 | 11 | ||
12 | function datatipMove(tip_handle,ax) | 12 | function datatipMove(tip_handle,ax) |
diff --git a/scilab/modules/graphics/macros/datatips/datatipRedraw.sci b/scilab/modules/graphics/macros/datatips/datatipRedraw.sci index 46327d0..a99c355 100644 --- a/scilab/modules/graphics/macros/datatips/datatipRedraw.sci +++ b/scilab/modules/graphics/macros/datatips/datatipRedraw.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | function datatipRedraw(curve_handles) | 10 | function datatipRedraw(curve_handles) |
11 | //Recomputes the datatip text box position after a rotation | 11 | //Recomputes the datatip text box position after a rotation |
12 | 12 | ||
diff --git a/scilab/modules/graphics/macros/datatips/datatipRemove.sci b/scilab/modules/graphics/macros/datatips/datatipRemove.sci index f8ab5d7..25a4df5 100644 --- a/scilab/modules/graphics/macros/datatips/datatipRemove.sci +++ b/scilab/modules/graphics/macros/datatips/datatipRemove.sci | |||
@@ -1,12 +1,11 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | ||
10 | 9 | ||
11 | function datatipRemove(handle,ind) | 10 | function datatipRemove(handle,ind) |
12 | ; | 11 | ; |
diff --git a/scilab/modules/graphics/macros/datatips/datatipRemoveAll.sci b/scilab/modules/graphics/macros/datatips/datatipRemoveAll.sci index 10c9362..260c887 100644 --- a/scilab/modules/graphics/macros/datatips/datatipRemoveAll.sci +++ b/scilab/modules/graphics/macros/datatips/datatipRemoveAll.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | 10 | ||
11 | function datatipRemoveAll(curve_handles) | 11 | function datatipRemoveAll(curve_handles) |
12 | //remove all the datatips for the given curves | 12 | //remove all the datatips for the given curves |
diff --git a/scilab/modules/graphics/macros/datatips/datatipSetDisplay.sci b/scilab/modules/graphics/macros/datatips/datatipSetDisplay.sci index 3f75b49..469ad79 100644 --- a/scilab/modules/graphics/macros/datatips/datatipSetDisplay.sci +++ b/scilab/modules/graphics/macros/datatips/datatipSetDisplay.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | 10 | ||
11 | function datatipSetDisplay(curve_handle,fun) | 11 | function datatipSetDisplay(curve_handle,fun) |
12 | //Changes the datatips visualisation function for a given curve | 12 | //Changes the datatips visualisation function for a given curve |
diff --git a/scilab/modules/graphics/macros/datatips/datatipSetInterp.sci b/scilab/modules/graphics/macros/datatips/datatipSetInterp.sci index 7e7334c..5e731af 100644 --- a/scilab/modules/graphics/macros/datatips/datatipSetInterp.sci +++ b/scilab/modules/graphics/macros/datatips/datatipSetInterp.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | function datatipSetInterp(curve_handle,m) | 10 | function datatipSetInterp(curve_handle,m) |
11 | //changes the tips interpolation modes for a given curve | 11 | //changes the tips interpolation modes for a given curve |
12 | // curve_handle : a handle on a polyline | 12 | // curve_handle : a handle on a polyline |
diff --git a/scilab/modules/graphics/macros/datatips/datatipSetOrientation.sci b/scilab/modules/graphics/macros/datatips/datatipSetOrientation.sci index d351eb7..5fe7b58 100644 --- a/scilab/modules/graphics/macros/datatips/datatipSetOrientation.sci +++ b/scilab/modules/graphics/macros/datatips/datatipSetOrientation.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | 10 | ||
11 | function datatipSetOrientation(tip_handle,o) | 11 | function datatipSetOrientation(tip_handle,o) |
12 | orientations=["automatic" "upper left" "upper right", "lower left","lower right"] | 12 | orientations=["automatic" "upper left" "upper right", "lower left","lower right"] |
diff --git a/scilab/modules/graphics/macros/datatips/datatipSetStruct.sci b/scilab/modules/graphics/macros/datatips/datatipSetStruct.sci index 85500f2..f2e9204 100644 --- a/scilab/modules/graphics/macros/datatips/datatipSetStruct.sci +++ b/scilab/modules/graphics/macros/datatips/datatipSetStruct.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | function datatipSetStruct(curve,t) | 10 | function datatipSetStruct(curve,t) |
11 | set(curve,'user_data',t) | 11 | set(curve,'user_data',t) |
12 | endfunction | 12 | endfunction |
diff --git a/scilab/modules/graphics/macros/datatips/datatipToggle.sci b/scilab/modules/graphics/macros/datatips/datatipToggle.sci index 710c0e0..d3e1630 100644 --- a/scilab/modules/graphics/macros/datatips/datatipToggle.sci +++ b/scilab/modules/graphics/macros/datatips/datatipToggle.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | 10 | ||
11 | function datatipToggle(fig) | 11 | function datatipToggle(fig) |
12 | //Toggles activation of the datatip edition mode for the given or current | 12 | //Toggles activation of the datatip edition mode for the given or current |
diff --git a/scilab/modules/graphics/macros/datatips/orthProj.sci b/scilab/modules/graphics/macros/datatips/orthProj.sci index 956eb08..dd9500d 100644 --- a/scilab/modules/graphics/macros/datatips/orthProj.sci +++ b/scilab/modules/graphics/macros/datatips/orthProj.sci | |||
@@ -1,12 +1,12 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | 9 | |
10 | function [d,ptp,ind,c]=orthProj(data,pt) | 10 | function [d,ptp,ind,c]=orthProj(data,pt) |
11 | // computes minimum distance from a point to a polyline | 11 | // computes minimum distance from a point to a polyline |
12 | //d minimum distance of the point to the nearest polyline data point | 12 | //d minimum distance of the point to the nearest polyline data point |
diff --git a/scilab/modules/graphics/macros/datatips/pixDist.sci b/scilab/modules/graphics/macros/datatips/pixDist.sci index 70afe23..c554394 100644 --- a/scilab/modules/graphics/macros/datatips/pixDist.sci +++ b/scilab/modules/graphics/macros/datatips/pixDist.sci | |||
@@ -1,12 +1,11 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | ||
10 | 9 | ||
11 | function d=pixDist(p1,p2) | 10 | function d=pixDist(p1,p2) |
12 | //computes the distance in pixels of two points | 11 | //computes the distance in pixels of two points |
diff --git a/scilab/modules/graphics/macros/datatips/setStringPosition.sci b/scilab/modules/graphics/macros/datatips/setStringPosition.sci index 372efd1..44e34bf 100644 --- a/scilab/modules/graphics/macros/datatips/setStringPosition.sci +++ b/scilab/modules/graphics/macros/datatips/setStringPosition.sci | |||
@@ -1,12 +1,11 @@ | |||
1 | // ==================================================================== | 1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | // Copyright (C) INRIA - Serge Steer Serge.Steer@inria.fr | 2 | // Copyright (C) 2010 - INRIA - Serge Steer <serge.steer@inria.fr> |
3 | //; | 3 | // |
4 | // This file must be used under the terms of the CeCILL. | 4 | // This file must be used under the terms of the CeCILL. |
5 | // This source file is licensed as described in the file COPYING, which | 5 | // This source file is licensed as described in the file COPYING, which |
6 | // you should have received as part of this distribution. The terms | 6 | // you should have received as part of this distribution. The terms |
7 | // are also available at; | 7 | // are also available at; |
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | 8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | // ==================================================================== | ||
10 | 9 | ||
11 | function setStringPosition(string_handle,pt) | 10 | function setStringPosition(string_handle,pt) |
12 | //Computes the position of the lower left corner of the string box. | 11 | //Computes the position of the lower left corner of the string box. |
diff --git a/scilab/modules/graphics/macros/gr_macros.sce b/scilab/modules/graphics/macros/gr_macros.sce index fdce18f..b756d3d 100644 --- a/scilab/modules/graphics/macros/gr_macros.sce +++ b/scilab/modules/graphics/macros/gr_macros.sce | |||
@@ -1,6 +1,14 @@ | |||
1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
2 | // Copyright (C) INRIA | ||
3 | // | ||
4 | // This file must be used under the terms of the CeCILL. | ||
5 | // This source file is licensed as described in the file COPYING, which | ||
6 | // you should have received as part of this distribution. The terms | ||
7 | // are also available at; | ||
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
9 | |||
1 | function []=Delete(sd) | 10 | function []=Delete(sd) |
2 | //destruction d'un objet | 11 | //destruction d'un objet |
3 | // Copyright INRIA | ||
4 | xx=locate(1);eps=0.2 | 12 | xx=locate(1);eps=0.2 |
5 | mm=clearmode(); | 13 | mm=clearmode(); |
6 | //recherche de l'objet contenant le point | 14 | //recherche de l'objet contenant le point |
diff --git a/scilab/modules/graphics/tcl/ged/ObjectsBrowser.tcl b/scilab/modules/graphics/tcl/ged/ObjectsBrowser.tcl index 0f37299..7f8d9b3 100644 --- a/scilab/modules/graphics/tcl/ged/ObjectsBrowser.tcl +++ b/scilab/modules/graphics/tcl/ged/ObjectsBrowser.tcl | |||
@@ -1,6 +1,12 @@ | |||
1 | #Copyright INRIA | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | #2004 | 2 | # Copyright (C) 2004 - INRIA - Fabrice Leray |
3 | #Author: F.Leray | 3 | # |
4 | # This file must be used under the terms of the CeCILL. | ||
5 | # This source file is licensed as described in the file COPYING, which | ||
6 | # you should have received as part of this distribution. The terms | ||
7 | # are also available at | ||
8 | # http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
9 | |||
4 | #freely inspired by lemontree at http://wiki.tcl.tk/12751 | 10 | #freely inspired by lemontree at http://wiki.tcl.tk/12751 |
5 | 11 | ||
6 | 12 | ||
diff --git a/scilab/modules/gui/src/c/addmenu.c b/scilab/modules/gui/src/c/addmenu.c index a04f5b5..984de32 100644 --- a/scilab/modules/gui/src/c/addmenu.c +++ b/scilab/modules/gui/src/c/addmenu.c | |||
@@ -1,3 +1,15 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2006 - INRIA | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
1 | /**************************************************** | 13 | /**************************************************** |
2 | * Scilab interface for the AddMenu function | 14 | * Scilab interface for the AddMenu function |
3 | * Add a menu in window number win_num or in Main window | 15 | * Add a menu in window number win_num or in Main window |
diff --git a/scilab/modules/gui/src/cpp/InitUIMenu.hxx b/scilab/modules/gui/src/cpp/InitUIMenu.hxx index c022f3a..92014f3 100644 --- a/scilab/modules/gui/src/cpp/InitUIMenu.hxx +++ b/scilab/modules/gui/src/cpp/InitUIMenu.hxx | |||
@@ -1,3 +1,15 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2006 - INRIA | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
1 | #ifndef __INIT_UIMENU_HXX__ | 13 | #ifndef __INIT_UIMENU_HXX__ |
2 | #define __INIT_UIMENU_HXX__ | 14 | #define __INIT_UIMENU_HXX__ |
3 | 15 | ||
diff --git a/scilab/modules/gui/src/java/org/scilab/modules/gui/tree/ScilabDisplayTree.java b/scilab/modules/gui/src/java/org/scilab/modules/gui/tree/ScilabDisplayTree.java index 414848b..c9285e0 100644 --- a/scilab/modules/gui/src/java/org/scilab/modules/gui/tree/ScilabDisplayTree.java +++ b/scilab/modules/gui/src/java/org/scilab/modules/gui/tree/ScilabDisplayTree.java | |||
@@ -1,3 +1,15 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2009 - DIGITEO - Sylvestre KOUMAR | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
1 | package org.scilab.modules.gui.tree; | 13 | package org.scilab.modules.gui.tree; |
2 | 14 | ||
3 | import java.util.StringTokenizer; | 15 | import java.util.StringTokenizer; |
@@ -5,7 +17,6 @@ import java.util.Hashtable; | |||
5 | 17 | ||
6 | /** | 18 | /** |
7 | * Display a graphical tree | 19 | * Display a graphical tree |
8 | * @author Sylvestre Koumar | ||
9 | * | 20 | * |
10 | */ | 21 | */ |
11 | public class ScilabDisplayTree { | 22 | public class ScilabDisplayTree { |
diff --git a/scilab/modules/gui/src/java/org/scilab/modules/gui/utils/Debug.java b/scilab/modules/gui/src/java/org/scilab/modules/gui/utils/Debug.java index 9a8d74b..621b44f 100644 --- a/scilab/modules/gui/src/java/org/scilab/modules/gui/utils/Debug.java +++ b/scilab/modules/gui/src/java/org/scilab/modules/gui/utils/Debug.java | |||
@@ -1,3 +1,14 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2009 - DIGITEO | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
1 | package org.scilab.modules.gui.utils; | 12 | package org.scilab.modules.gui.utils; |
2 | 13 | ||
3 | public class Debug { | 14 | public class Debug { |
diff --git a/scilab/modules/helptools/Makefile.am b/scilab/modules/helptools/Makefile.am index b587791..642de2b 100644 --- a/scilab/modules/helptools/Makefile.am +++ b/scilab/modules/helptools/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2008 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2008 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | if GUI | 6 | if GUI |
7 | if BUILD_HELP | 7 | if BUILD_HELP |
diff --git a/scilab/modules/helptools/Makefile.in b/scilab/modules/helptools/Makefile.in index c8f7920..fb6125f 100644 --- a/scilab/modules/helptools/Makefile.in +++ b/scilab/modules/helptools/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2008 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2008 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/history_manager/Makefile.am b/scilab/modules/history_manager/Makefile.am index faae5cc..f1c9036 100644 --- a/scilab/modules/history_manager/Makefile.am +++ b/scilab/modules/history_manager/Makefile.am | |||
@@ -1,8 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Allan CORNET | 2 | # Copyright (C) 2007 - INRIA - Allan CORNET |
3 | ### INRIA - Scilab 2007 | 3 | # |
4 | ########## * | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
6 | 5 | ||
7 | # List of the cpp files | 6 | # List of the cpp files |
8 | HISTORY_MANAGER_CPP_SOURCES = src/cpp/CommandLine.cpp \ | 7 | HISTORY_MANAGER_CPP_SOURCES = src/cpp/CommandLine.cpp \ |
diff --git a/scilab/modules/history_manager/Makefile.in b/scilab/modules/history_manager/Makefile.in index 022b552..5cf4cbc 100644 --- a/scilab/modules/history_manager/Makefile.in +++ b/scilab/modules/history_manager/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Allan CORNET | 19 | # Copyright (C) 2007 - INRIA - Allan CORNET |
20 | ### INRIA - Scilab 2007 | 20 | # |
21 | ########## * | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/integer/Makefile.am b/scilab/modules/integer/Makefile.am index cdbff67..3c9db3f 100644 --- a/scilab/modules/integer/Makefile.am +++ b/scilab/modules/integer/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | INTEGER_C_SOURCES = src/c/genconcatcol.c \ | 6 | INTEGER_C_SOURCES = src/c/genconcatcol.c \ |
7 | src/c/genprod.c \ | 7 | src/c/genprod.c \ |
diff --git a/scilab/modules/integer/Makefile.in b/scilab/modules/integer/Makefile.in index e767933..3cbf307 100644 --- a/scilab/modules/integer/Makefile.in +++ b/scilab/modules/integer/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/interpolation/Makefile.am b/scilab/modules/interpolation/Makefile.am index c162f4e..68291ae 100644 --- a/scilab/modules/interpolation/Makefile.am +++ b/scilab/modules/interpolation/Makefile.am | |||
@@ -1,6 +1,6 @@ | |||
1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | # Copyright (C) 2006 - INRIA - Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | # | 3 | # |
4 | # This file is distributed under the same license as the Scilab package. | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | # Localization of the module interpolation | 6 | # Localization of the module interpolation |
diff --git a/scilab/modules/interpolation/Makefile.in b/scilab/modules/interpolation/Makefile.in index a11d2f1..f6c48d4 100644 --- a/scilab/modules/interpolation/Makefile.in +++ b/scilab/modules/interpolation/Makefile.in | |||
@@ -16,8 +16,8 @@ | |||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | # Copyright (C) 2006 - INRIA - Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | # | 20 | # |
21 | # This file is distributed under the same license as the Scilab package. | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Localization of the module interpolation | 23 | # Localization of the module interpolation |
diff --git a/scilab/modules/intersci/Makefile.am b/scilab/modules/intersci/Makefile.am index cc86fe8..311997c 100644 --- a/scilab/modules/intersci/Makefile.am +++ b/scilab/modules/intersci/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | 6 | ||
7 | INTERSCI_LIB_C_SOURCES = \ | 7 | INTERSCI_LIB_C_SOURCES = \ |
diff --git a/scilab/modules/intersci/Makefile.in b/scilab/modules/intersci/Makefile.in index 7463228..9795384 100644 --- a/scilab/modules/intersci/Makefile.in +++ b/scilab/modules/intersci/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/io/Makefile.am b/scilab/modules/io/Makefile.am index 5405ab4..a7690cb 100644 --- a/scilab/modules/io/Makefile.am +++ b/scilab/modules/io/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | IO_C_SOURCES = src/c/getpidc.c \ | 7 | IO_C_SOURCES = src/c/getpidc.c \ |
7 | src/c/setenvc.c \ | 8 | src/c/setenvc.c \ |
diff --git a/scilab/modules/io/Makefile.in b/scilab/modules/io/Makefile.in index 4659a56..3667fc3 100644 --- a/scilab/modules/io/Makefile.in +++ b/scilab/modules/io/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/linear_algebra/Makefile.am b/scilab/modules/linear_algebra/Makefile.am index 6feeea3..c6063cd 100644 --- a/scilab/modules/linear_algebra/Makefile.am +++ b/scilab/modules/linear_algebra/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | LINEAR_ALGEBRA_C_SOURCES = src/c/schurtable.c \ | 7 | LINEAR_ALGEBRA_C_SOURCES = src/c/schurtable.c \ |
7 | src/c/issymmetric.c | 8 | src/c/issymmetric.c |
diff --git a/scilab/modules/linear_algebra/Makefile.in b/scilab/modules/linear_algebra/Makefile.in index d0f9387..530767a 100644 --- a/scilab/modules/linear_algebra/Makefile.in +++ b/scilab/modules/linear_algebra/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/maple2scilab/Makefile.am b/scilab/modules/maple2scilab/Makefile.am index 788817b..8023f48 100644 --- a/scilab/modules/maple2scilab/Makefile.am +++ b/scilab/modules/maple2scilab/Makefile.am | |||
@@ -1,8 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | 6 | ||
7 | #### Target ###### | 7 | #### Target ###### |
8 | modulename=maple2scilab | 8 | modulename=maple2scilab |
diff --git a/scilab/modules/maple2scilab/Makefile.in b/scilab/modules/maple2scilab/Makefile.in index d2ac993..98d125d 100644 --- a/scilab/modules/maple2scilab/Makefile.in +++ b/scilab/modules/maple2scilab/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/mexlib/Makefile.am b/scilab/modules/mexlib/Makefile.am index c0909c0..a66805b 100644 --- a/scilab/modules/mexlib/Makefile.am +++ b/scilab/modules/mexlib/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | MEXLIB_C_SOURCES = src/c/mexlib.c \ | 6 | MEXLIB_C_SOURCES = src/c/mexlib.c \ |
7 | src/c/sci_gateway.c | 7 | src/c/sci_gateway.c |
diff --git a/scilab/modules/mexlib/Makefile.in b/scilab/modules/mexlib/Makefile.in index bb39d45..f3acade 100644 --- a/scilab/modules/mexlib/Makefile.in +++ b/scilab/modules/mexlib/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/optimization/Makefile.am b/scilab/modules/optimization/Makefile.am index eaa6949..c7bcbf8 100644 --- a/scilab/modules/optimization/Makefile.am +++ b/scilab/modules/optimization/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | OPTIMIZATION_C_SOURCES = src/c/sp.c \ | 6 | OPTIMIZATION_C_SOURCES = src/c/sp.c \ |
7 | src/c/fsolvetable.c \ | 7 | src/c/fsolvetable.c \ |
diff --git a/scilab/modules/optimization/Makefile.in b/scilab/modules/optimization/Makefile.in index 6da5911..7506d9d 100644 --- a/scilab/modules/optimization/Makefile.in +++ b/scilab/modules/optimization/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/output_stream/Makefile.am b/scilab/modules/output_stream/Makefile.am index 2a015ff..3d68e03 100644 --- a/scilab/modules/output_stream/Makefile.am +++ b/scilab/modules/output_stream/Makefile.am | |||
@@ -1,14 +1,11 @@ | |||
1 | ## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ## -*- makefile -*- | 2 | # Copyright (C) 2007 - INRIA - Bruno JOFRET |
3 | ## | 3 | # |
4 | ## Makefile.am | 4 | # This file must be used under the terms of the CeCILL. |
5 | ## Made by Bruno JOFRET <bruno.jofret@inria.fr> | 5 | # This source file is licensed as described in the file COPYING, which |
6 | ## | 6 | # you should have received as part of this distribution. The terms |
7 | ## Started on Fri Oct 26 13:48:04 2007 Bruno | 7 | # are also available at |
8 | ## Last update Fri, 23 Nov 2007 15:00:33 +0100 Sylvestre | 8 | # http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt |
9 | ## | ||
10 | ## Copyright INRIA 2007 | ||
11 | ## | ||
12 | 9 | ||
13 | OUTPUT_STREAM_CPP_SOURCES = src/cpp/Diary.cpp \ | 10 | OUTPUT_STREAM_CPP_SOURCES = src/cpp/Diary.cpp \ |
14 | src/cpp/DiaryList.cpp \ | 11 | src/cpp/DiaryList.cpp \ |
diff --git a/scilab/modules/output_stream/Makefile.in b/scilab/modules/output_stream/Makefile.in index 73830bd..61cd906 100644 --- a/scilab/modules/output_stream/Makefile.in +++ b/scilab/modules/output_stream/Makefile.in | |||
@@ -16,6 +16,15 @@ | |||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | # Copyright (C) 2007 - INRIA - Bruno JOFRET | ||
20 | # | ||
21 | # This file must be used under the terms of the CeCILL. | ||
22 | # This source file is licensed as described in the file COPYING, which | ||
23 | # you should have received as part of this distribution. The terms | ||
24 | # are also available at | ||
25 | # http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
26 | |||
27 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
19 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 28 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
20 | # Copyright (C) 2008 - INRIA - Pierre MARECHAL <pierre.marechal@inria.fr> | 29 | # Copyright (C) 2008 - INRIA - Pierre MARECHAL <pierre.marechal@inria.fr> |
21 | # | 30 | # |
diff --git a/scilab/modules/overloading/Makefile.am b/scilab/modules/overloading/Makefile.am index 1870be9..d194152 100644 --- a/scilab/modules/overloading/Makefile.am +++ b/scilab/modules/overloading/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | 6 | ||
7 | #### Target ###### | 7 | #### Target ###### |
diff --git a/scilab/modules/overloading/Makefile.in b/scilab/modules/overloading/Makefile.in index 2b8959c..6e2ab70 100644 --- a/scilab/modules/overloading/Makefile.in +++ b/scilab/modules/overloading/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/polynomials/Makefile.am b/scilab/modules/polynomials/Makefile.am index 8016e3f..d400b98 100644 --- a/scilab/modules/polynomials/Makefile.am +++ b/scilab/modules/polynomials/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | POLYNOMIALS_FORTRAN_SOURCES = src/fortran/residu.f \ | 6 | POLYNOMIALS_FORTRAN_SOURCES = src/fortran/residu.f \ |
7 | src/fortran/imptra.f \ | 7 | src/fortran/imptra.f \ |
diff --git a/scilab/modules/polynomials/Makefile.in b/scilab/modules/polynomials/Makefile.in index 2477821..2b311a8 100644 --- a/scilab/modules/polynomials/Makefile.in +++ b/scilab/modules/polynomials/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/pvm/Makefile.am b/scilab/modules/pvm/Makefile.am index 34b40b7..f3e98e5 100644 --- a/scilab/modules/pvm/Makefile.am +++ b/scilab/modules/pvm/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | if PVM | 6 | if PVM |
7 | 7 | ||
diff --git a/scilab/modules/pvm/Makefile.in b/scilab/modules/pvm/Makefile.in index c34faf4..8dcf317 100644 --- a/scilab/modules/pvm/Makefile.in +++ b/scilab/modules/pvm/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/randlib/Makefile.am b/scilab/modules/randlib/Makefile.am index db429a6..765a930 100644 --- a/scilab/modules/randlib/Makefile.am +++ b/scilab/modules/randlib/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | RANDLIB_C_SOURCES = src/c/fsultra.c \ | 7 | RANDLIB_C_SOURCES = src/c/fsultra.c \ |
7 | src/c/mt.c \ | 8 | src/c/mt.c \ |
diff --git a/scilab/modules/randlib/Makefile.in b/scilab/modules/randlib/Makefile.in index 8c24168..2e31d9f 100644 --- a/scilab/modules/randlib/Makefile.in +++ b/scilab/modules/randlib/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/GL2PSShadeFacetDrawer.java b/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/GL2PSShadeFacetDrawer.java index 72e073f..f09f4cd 100644 --- a/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/GL2PSShadeFacetDrawer.java +++ b/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/GL2PSShadeFacetDrawer.java | |||
@@ -1,3 +1,14 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2007 - INRIA - Sylvestre Koumar | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
1 | package org.scilab.modules.renderer.polylineDrawing; | 12 | package org.scilab.modules.renderer.polylineDrawing; |
2 | 13 | ||
3 | import javax.media.opengl.GL; | 14 | import javax.media.opengl.GL; |
@@ -8,7 +19,6 @@ import org.scilab.modules.renderer.utils.geom3D.TriangleDecomposition; | |||
8 | import org.scilab.modules.renderer.utils.geom3D.Vector3D; | 19 | import org.scilab.modules.renderer.utils.geom3D.Vector3D; |
9 | /** | 20 | /** |
10 | * Decompose triangle with GL2PS | 21 | * Decompose triangle with GL2PS |
11 | * @author Sylvestre Koumar | ||
12 | * | 22 | * |
13 | */ | 23 | */ |
14 | public class GL2PSShadeFacetDrawer implements ShadeFacetDrawer { | 24 | public class GL2PSShadeFacetDrawer implements ShadeFacetDrawer { |
diff --git a/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/JOGLShadeFacetDrawer.java b/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/JOGLShadeFacetDrawer.java index 37d16a1..7caef03 100644 --- a/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/JOGLShadeFacetDrawer.java +++ b/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/JOGLShadeFacetDrawer.java | |||
@@ -1,3 +1,14 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2007 - INRIA - Sylvestre Koumar | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
1 | package org.scilab.modules.renderer.polylineDrawing; | 12 | package org.scilab.modules.renderer.polylineDrawing; |
2 | 13 | ||
3 | import javax.media.opengl.GL; | 14 | import javax.media.opengl.GL; |
@@ -7,7 +18,6 @@ import org.scilab.modules.renderer.utils.geom3D.Vector3D; | |||
7 | 18 | ||
8 | /** | 19 | /** |
9 | * Decompose triangle with JOGL | 20 | * Decompose triangle with JOGL |
10 | * @author Sylvestre Koumar | ||
11 | * | 21 | * |
12 | */ | 22 | */ |
13 | public class JOGLShadeFacetDrawer implements ShadeFacetDrawer { | 23 | public class JOGLShadeFacetDrawer implements ShadeFacetDrawer { |
diff --git a/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/ShadeFacetDrawer.java b/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/ShadeFacetDrawer.java index d886bba..5f15daa 100644 --- a/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/ShadeFacetDrawer.java +++ b/scilab/modules/renderer/src/java/org/scilab/modules/renderer/polylineDrawing/ShadeFacetDrawer.java | |||
@@ -1,3 +1,15 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2007 - INRIA - Sylvestre Koumar | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
1 | package org.scilab.modules.renderer.polylineDrawing; | 13 | package org.scilab.modules.renderer.polylineDrawing; |
2 | 14 | ||
3 | import javax.media.opengl.GL; | 15 | import javax.media.opengl.GL; |
@@ -7,7 +19,7 @@ import org.scilab.modules.renderer.utils.geom3D.Vector3D; | |||
7 | 19 | ||
8 | /** | 20 | /** |
9 | * Interface which allows us to choose between JOGL or GL2PS | 21 | * Interface which allows us to choose between JOGL or GL2PS |
10 | * @author Sylvestre Koumar | 22 | |
11 | * | 23 | * |
12 | */ | 24 | */ |
13 | public interface ShadeFacetDrawer { | 25 | public interface ShadeFacetDrawer { |
diff --git a/scilab/modules/scicos_blocks/src/fortran/affich.f b/scilab/modules/scicos_blocks/src/fortran/affich.f index 0a8ba16..6f26f8c 100644 --- a/scilab/modules/scicos_blocks/src/fortran/affich.f +++ b/scilab/modules/scicos_blocks/src/fortran/affich.f | |||
@@ -1,6 +1,25 @@ | |||
1 | c Scicos | ||
2 | c | ||
3 | c Copyright (C) INRIA - METALAU Project <scicos@inria.fr> | ||
4 | c | ||
5 | c This program is free software; you can redistribute it and/or modify | ||
6 | c it under the terms of the GNU General Public License as published by | ||
7 | c the Free Software Foundation; either version 2 of the License, or | ||
8 | c (at your option) any later version. | ||
9 | c | ||
10 | c This program is distributed in the hope that it will be useful, | ||
11 | c but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | c GNU General Public License for more details. | ||
14 | c | ||
15 | c You should have received a copy of the GNU General Public License | ||
16 | c along with this program; if not, write to the Free Software | ||
17 | c Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
18 | c | ||
19 | c See the file ./license.txt | ||
20 | c | ||
1 | subroutine affich(flag,nevprt,t,xd,x,nx,z,nz,tvec,ntvec, | 21 | subroutine affich(flag,nevprt,t,xd,x,nx,z,nz,tvec,ntvec, |
2 | & rpar,nrpar,ipar,nipar,u,nu,y,ny) | 22 | & rpar,nrpar,ipar,nipar,u,nu,y,ny) |
3 | c Copyright INRIA | ||
4 | 23 | ||
5 | c Scicos block simulator | 24 | c Scicos block simulator |
6 | c Displays the value of the input in a graphic window | 25 | c Displays the value of the input in a graphic window |
diff --git a/scilab/modules/shell/src/java/org/scilab/modules/shell/ScilabShell.java b/scilab/modules/shell/src/java/org/scilab/modules/shell/ScilabShell.java index d9dd58f..22f1e32 100644 --- a/scilab/modules/shell/src/java/org/scilab/modules/shell/ScilabShell.java +++ b/scilab/modules/shell/src/java/org/scilab/modules/shell/ScilabShell.java | |||
@@ -1,7 +1,19 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2007 - INRIA - Allan CORNET | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
13 | |||
1 | package org.scilab.modules.shell; | 14 | package org.scilab.modules.shell; |
2 | /** | 15 | /** |
3 | * Scilab Shell | 16 | * Scilab Shell |
4 | * @author Allan CORNET INRIA 2007 | ||
5 | */ | 17 | */ |
6 | public class ScilabShell implements Shell { | 18 | public class ScilabShell implements Shell { |
7 | /** | 19 | /** |
diff --git a/scilab/modules/shell/src/java/org/scilab/modules/shell/ScilabShellBridge.java b/scilab/modules/shell/src/java/org/scilab/modules/shell/ScilabShellBridge.java index ef2ab26..58cf143 100644 --- a/scilab/modules/shell/src/java/org/scilab/modules/shell/ScilabShellBridge.java +++ b/scilab/modules/shell/src/java/org/scilab/modules/shell/ScilabShellBridge.java | |||
@@ -1,11 +1,20 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2007 - INRIA - Vincent COUVERT | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
1 | 12 | ||
2 | /* Copyright INRIA 2007 */ | ||
3 | 13 | ||
4 | package org.scilab.modules.shell; | 14 | package org.scilab.modules.shell; |
5 | 15 | ||
6 | /** | 16 | /** |
7 | * Scilab Bridge for Scilab Shell object | 17 | * Scilab Bridge for Scilab Shell object |
8 | * @author Vincent COUVERT | ||
9 | * | 18 | * |
10 | */ | 19 | */ |
11 | public class ScilabShellBridge { | 20 | public class ScilabShellBridge { |
diff --git a/scilab/modules/shell/src/java/org/scilab/modules/shell/Shell.java b/scilab/modules/shell/src/java/org/scilab/modules/shell/Shell.java index 5d0a5ff..bbe8d28 100644 --- a/scilab/modules/shell/src/java/org/scilab/modules/shell/Shell.java +++ b/scilab/modules/shell/src/java/org/scilab/modules/shell/Shell.java | |||
@@ -1,9 +1,19 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2007 - INRIA - Vincent COUVERT | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
1 | package org.scilab.modules.shell; | 13 | package org.scilab.modules.shell; |
2 | /* Copyright INRIA 2007 */ | ||
3 | 14 | ||
4 | /** | 15 | /** |
5 | * Interface for Scilab shell | 16 | * Interface for Scilab shell |
6 | * @author Vincent COUVERT | ||
7 | * | 17 | * |
8 | */ | 18 | */ |
9 | public interface Shell { | 19 | public interface Shell { |
diff --git a/scilab/modules/signal_processing/Makefile.am b/scilab/modules/signal_processing/Makefile.am index 3550915..3eb4b85 100644 --- a/scilab/modules/signal_processing/Makefile.am +++ b/scilab/modules/signal_processing/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.f \r> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | SIGNAL_PROCESSING_C_SOURCES = src/c/corrtable.c | 6 | SIGNAL_PROCESSING_C_SOURCES = src/c/corrtable.c |
7 | 7 | ||
diff --git a/scilab/modules/signal_processing/Makefile.in b/scilab/modules/signal_processing/Makefile.in index 0bfe03f..d7b763a 100644 --- a/scilab/modules/signal_processing/Makefile.in +++ b/scilab/modules/signal_processing/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.f \r> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/sparse/Makefile.am b/scilab/modules/sparse/Makefile.am index e73d788..975f5f9 100644 --- a/scilab/modules/sparse/Makefile.am +++ b/scilab/modules/sparse/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | SPARSE_C_SOURCES = \ | 6 | SPARSE_C_SOURCES = \ |
7 | src/c/spUtils.c \ | 7 | src/c/spUtils.c \ |
diff --git a/scilab/modules/sparse/Makefile.in b/scilab/modules/sparse/Makefile.in index 539bfea..1cbdc2d 100644 --- a/scilab/modules/sparse/Makefile.in +++ b/scilab/modules/sparse/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/special_functions/Makefile.am b/scilab/modules/special_functions/Makefile.am index 712f50d..b8ce41e 100644 --- a/scilab/modules/special_functions/Makefile.am +++ b/scilab/modules/special_functions/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | 7 | ||
7 | GATEWAY_C_SOURCES = sci_gateway/c/sci_dlgamma.c \ | 8 | GATEWAY_C_SOURCES = sci_gateway/c/sci_dlgamma.c \ |
diff --git a/scilab/modules/special_functions/Makefile.in b/scilab/modules/special_functions/Makefile.in index 2478387..55bba22 100644 --- a/scilab/modules/special_functions/Makefile.in +++ b/scilab/modules/special_functions/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/spreadsheet/Makefile.am b/scilab/modules/spreadsheet/Makefile.am index 73b5327..ae59b62 100644 --- a/scilab/modules/spreadsheet/Makefile.am +++ b/scilab/modules/spreadsheet/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | SPREADSHEET_C_SOURCES = src/c/xls.c | 7 | SPREADSHEET_C_SOURCES = src/c/xls.c |
7 | 8 | ||
diff --git a/scilab/modules/spreadsheet/Makefile.in b/scilab/modules/spreadsheet/Makefile.in index 6de994b..eefefe2 100644 --- a/scilab/modules/spreadsheet/Makefile.in +++ b/scilab/modules/spreadsheet/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/statistics/Makefile.am b/scilab/modules/statistics/Makefile.am index e05b8f5..b177a66 100644 --- a/scilab/modules/statistics/Makefile.am +++ b/scilab/modules/statistics/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006-2007 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006/2007 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | STATISTICS_C_SOURCES = src/c/CdfBase.c \ | 6 | STATISTICS_C_SOURCES = src/c/CdfBase.c \ |
7 | src/c/ipmpar1.c | 7 | src/c/ipmpar1.c |
diff --git a/scilab/modules/statistics/Makefile.in b/scilab/modules/statistics/Makefile.in index 36defe5..6ccbd32 100644 --- a/scilab/modules/statistics/Makefile.in +++ b/scilab/modules/statistics/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006-2007 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006/2007 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/string/Makefile.am b/scilab/modules/string/Makefile.am index a27dc29..022b6a1 100644 --- a/scilab/modules/string/Makefile.am +++ b/scilab/modules/string/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006-2007 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006/2007 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | STRING_C_SOURCES = src/c/code2str.c \ | 6 | STRING_C_SOURCES = src/c/code2str.c \ |
7 | src/c/stripblanks.c \ | 7 | src/c/stripblanks.c \ |
diff --git a/scilab/modules/string/Makefile.in b/scilab/modules/string/Makefile.in index 4a28a51..11b7421 100644 --- a/scilab/modules/string/Makefile.in +++ b/scilab/modules/string/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006-2007 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006/2007 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/symbolic/includes/gw_symbolic.h b/scilab/modules/symbolic/includes/gw_symbolic.h index 1db02b9..174c914d 100644 --- a/scilab/modules/symbolic/includes/gw_symbolic.h +++ b/scilab/modules/symbolic/includes/gw_symbolic.h | |||
@@ -1,7 +1,14 @@ | |||
1 | /*--------------------------------------------------------------------------*/ | 1 | /* |
2 | /* INRIA 2006 */ | 2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | /* Allan CORNET */ | 3 | * Copyright (C) 2006 - INRIA - Allan CORNET |
4 | /*--------------------------------------------------------------------------*/ | 4 | * |
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
5 | #ifndef __GW_SYMBOLIC__ | 12 | #ifndef __GW_SYMBOLIC__ |
6 | #define __GW_SYMBOLIC__ | 13 | #define __GW_SYMBOLIC__ |
7 | /*--------------------------------------------------------------------------*/ | 14 | /*--------------------------------------------------------------------------*/ |
diff --git a/scilab/modules/tclsci/Makefile.am b/scilab/modules/tclsci/Makefile.am index 12fac02..1f31721 100644 --- a/scilab/modules/tclsci/Makefile.am +++ b/scilab/modules/tclsci/Makefile.am | |||
@@ -1,7 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
5 | 6 | ||
6 | if TCLTK | 7 | if TCLTK |
7 | 8 | ||
diff --git a/scilab/modules/tclsci/Makefile.in b/scilab/modules/tclsci/Makefile.in index a39ed02..85bce93 100644 --- a/scilab/modules/tclsci/Makefile.in +++ b/scilab/modules/tclsci/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/texmacs/Makefile.am b/scilab/modules/texmacs/Makefile.am index 5cfd641..a9198c5 100644 --- a/scilab/modules/texmacs/Makefile.am +++ b/scilab/modules/texmacs/Makefile.am | |||
@@ -1,9 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | |||
6 | |||
7 | 5 | ||
8 | #### Target ###### | 6 | #### Target ###### |
9 | modulename=texmacs | 7 | modulename=texmacs |
diff --git a/scilab/modules/texmacs/Makefile.in b/scilab/modules/texmacs/Makefile.in index 9e621f5..8bc8fd9 100644 --- a/scilab/modules/texmacs/Makefile.in +++ b/scilab/modules/texmacs/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/time/Makefile.am b/scilab/modules/time/Makefile.am index 81f2a87..ed6eec0 100644 --- a/scilab/modules/time/Makefile.am +++ b/scilab/modules/time/Makefile.am | |||
@@ -1,8 +1,8 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2006 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | ### SOURCES ### | 6 | ### SOURCES ### |
7 | TIME_C_SOURCES = src/c/realtime.c \ | 7 | TIME_C_SOURCES = src/c/realtime.c \ |
8 | src/c/timer.c \ | 8 | src/c/timer.c \ |
diff --git a/scilab/modules/time/Makefile.in b/scilab/modules/time/Makefile.in index c537dc2..4d51547 100644 --- a/scilab/modules/time/Makefile.in +++ b/scilab/modules/time/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2006 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2006 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/windows_tools/Makefile.am b/scilab/modules/windows_tools/Makefile.am index 0c6207e..d6791b4 100644 --- a/scilab/modules/windows_tools/Makefile.am +++ b/scilab/modules/windows_tools/Makefile.am | |||
@@ -1,7 +1,7 @@ | |||
1 | ########## | 1 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
2 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 2 | # Copyright (C) 2007 - INRIA - Sylvestre LEDRU |
3 | ### INRIA - Scilab 2007 | 3 | # |
4 | ########## | 4 | # This file is distributed under the same license as the Scilab package. |
5 | 5 | ||
6 | # List of the c files | 6 | # List of the c files |
7 | WINDOWS_TOOLS_C_SOURCES = src/nowindows_tools/nowindows_tools.c | 7 | WINDOWS_TOOLS_C_SOURCES = src/nowindows_tools/nowindows_tools.c |
diff --git a/scilab/modules/windows_tools/Makefile.in b/scilab/modules/windows_tools/Makefile.in index c686bde..9d3d60b 100644 --- a/scilab/modules/windows_tools/Makefile.in +++ b/scilab/modules/windows_tools/Makefile.in | |||
@@ -15,10 +15,10 @@ | |||
15 | 15 | ||
16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
17 | 17 | ||
18 | ########## | 18 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
19 | ### Sylvestre Ledru <sylvestre.ledru@inria.fr> | 19 | # Copyright (C) 2007 - INRIA - Sylvestre LEDRU |
20 | ### INRIA - Scilab 2007 | 20 | # |
21 | ########## | 21 | # This file is distributed under the same license as the Scilab package. |
22 | 22 | ||
23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | 23 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> | 24 | # Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr> |
diff --git a/scilab/modules/xcos/src/java/org/scilab/modules/xcos/port/Orientation.java b/scilab/modules/xcos/src/java/org/scilab/modules/xcos/port/Orientation.java index c3f9971..730018e 100644 --- a/scilab/modules/xcos/src/java/org/scilab/modules/xcos/port/Orientation.java +++ b/scilab/modules/xcos/src/java/org/scilab/modules/xcos/port/Orientation.java | |||
@@ -1,3 +1,15 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2010 - DIGITEO - Clément DAVID | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
1 | package org.scilab.modules.xcos.port; | 13 | package org.scilab.modules.xcos.port; |
2 | 14 | ||
3 | import java.util.NoSuchElementException; | 15 | import java.util.NoSuchElementException; |
diff --git a/scilab/modules/xcos/src/java/org/scilab/modules/xcos/utils/XcosConstants.java b/scilab/modules/xcos/src/java/org/scilab/modules/xcos/utils/XcosConstants.java index 0e703ab..c660811 100644 --- a/scilab/modules/xcos/src/java/org/scilab/modules/xcos/utils/XcosConstants.java +++ b/scilab/modules/xcos/src/java/org/scilab/modules/xcos/utils/XcosConstants.java | |||
@@ -1,3 +1,15 @@ | |||
1 | /* | ||
2 | * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
3 | * Copyright (C) 2010 - DIGITEO - Clément David | ||
4 | * | ||
5 | * This file must be used under the terms of the CeCILL. | ||
6 | * This source file is licensed as described in the file COPYING, which | ||
7 | * you should have received as part of this distribution. The terms | ||
8 | * are also available at | ||
9 | * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | * | ||
11 | */ | ||
12 | |||
1 | package org.scilab.modules.xcos.utils; | 13 | package org.scilab.modules.xcos.utils; |
2 | 14 | ||
3 | import org.scilab.modules.graph.utils.ScilabConstants; | 15 | import org.scilab.modules.graph.utils.ScilabConstants; |
diff --git a/scilab/tools/localization/dispatchLocalizationFile.sh b/scilab/tools/localization/dispatchLocalizationFile.sh index 6a76fa6..5c89d24 100644 --- a/scilab/tools/localization/dispatchLocalizationFile.sh +++ b/scilab/tools/localization/dispatchLocalizationFile.sh | |||
@@ -1,6 +1,13 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/sh |
2 | # Copyright INRIA/Scilab 2008 | 2 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | # Author : Sylvestre Ledru <sylvestre.ledru@inria.fr> | 3 | # Copyright (C) INRIA - 2007-2008 - Sylvestre Ledru |
4 | # Copyright (C) DIGITEO - 2009-2010 - Sylvestre Ledru | ||
5 | # This file must be used under the terms of the CeCILL. | ||
6 | # This source file is licensed as described in the file COPYING, which | ||
7 | # you should have received as part of this distribution. The terms | ||
8 | # are also available at | ||
9 | # http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | # | ||
4 | # This script takes a list of localization files dumped by launchpad | 11 | # This script takes a list of localization files dumped by launchpad |
5 | # here https://translations.launchpad.net/scilab/trunk/+export | 12 | # here https://translations.launchpad.net/scilab/trunk/+export |
6 | # and dispatch them into Scilab source tree | 13 | # and dispatch them into Scilab source tree |
diff --git a/scilab/tools/localization/generatePoFile.sce b/scilab/tools/localization/generatePoFile.sce index 13cd159..8f89652 100644 --- a/scilab/tools/localization/generatePoFile.sce +++ b/scilab/tools/localization/generatePoFile.sce | |||
@@ -1,9 +1,13 @@ | |||
1 | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab | ||
2 | // Copyright (C) 2007 - INRIA - Allan CORNET | ||
3 | // | ||
4 | // This file must be used under the terms of the CeCILL. | ||
5 | // This source file is licensed as described in the file COPYING, which | ||
6 | // you should have received as part of this distribution. The terms | ||
7 | // are also available at | ||
8 | // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
9 | |||
1 | function generatePoFile(LANGUAGE) | 10 | function generatePoFile(LANGUAGE) |
2 | // ====================================== | ||
3 | // INRIA 2007 | ||
4 | // Allan CORNET | ||
5 | // based on generatePoFile.sh | ||
6 | // ====================================== | ||
7 | PATH_GETTEXT_TOOLS = '/usr/bin/'; | 11 | PATH_GETTEXT_TOOLS = '/usr/bin/'; |
8 | LC = 'LC_MESSAGES'; | 12 | LC = 'LC_MESSAGES'; |
9 | DEST_FILE_MO = SCI+filesep()+'locale'+filesep()+LANGUAGE+filesep()+LC+filesep()+'scilab.mo'; | 13 | DEST_FILE_MO = SCI+filesep()+'locale'+filesep()+LANGUAGE+filesep()+LC+filesep()+'scilab.mo'; |
diff --git a/scilab/tools/localization/updateLocalizationModule.sh b/scilab/tools/localization/updateLocalizationModule.sh index 63b7f69..3a62c08 100644 --- a/scilab/tools/localization/updateLocalizationModule.sh +++ b/scilab/tools/localization/updateLocalizationModule.sh | |||
@@ -1,6 +1,13 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/sh |
2 | # Copyright INRIA/Scilab 2007/2008 | 2 | # Scilab ( http://www.scilab.org/ ) - This file is part of Scilab |
3 | # Author : Sylvestre Ledru <sylvestre.ledru@inria.fr> | 3 | # Copyright (C) INRIA - 2007-2008 - Sylvestre Ledru |
4 | # Copyright (C) DIGITEO - 2009-2010 - Sylvestre Ledru | ||
5 | # This file must be used under the terms of the CeCILL. | ||
6 | # This source file is licensed as described in the file COPYING, which | ||
7 | # you should have received as part of this distribution. The terms | ||
8 | # are also available at | ||
9 | # http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt | ||
10 | # | ||
4 | # This script goes into a module and updates the localization file by checking | 11 | # This script goes into a module and updates the localization file by checking |
5 | # the _( and gettext( calls in the code | 12 | # the _( and gettext( calls in the code |
6 | 13 | ||