From 0345245e860375a32c9a437c4a9d9cae807134e9 Mon Sep 17 00:00:00 2001 From: Shashank Date: Mon, 29 May 2017 12:40:26 +0530 Subject: CMSCOPE changed --- modules/tclsci/help/en_US/ScilabEval.xml | 192 +++++++++++++++++++++++++ modules/tclsci/help/en_US/TCL_CreateSlave.xml | 80 +++++++++++ modules/tclsci/help/en_US/TCL_DeleteInterp.xml | 76 ++++++++++ modules/tclsci/help/en_US/TCL_EvalFile.xml | 128 +++++++++++++++++ modules/tclsci/help/en_US/TCL_EvalStr.xml | 129 +++++++++++++++++ modules/tclsci/help/en_US/TCL_ExistArray.xml | 99 +++++++++++++ modules/tclsci/help/en_US/TCL_ExistInterp.xml | 70 +++++++++ modules/tclsci/help/en_US/TCL_ExistVar.xml | 109 ++++++++++++++ modules/tclsci/help/en_US/TCL_GetVar.xml | 166 +++++++++++++++++++++ modules/tclsci/help/en_US/TCL_GetVersion.xml | 40 ++++++ modules/tclsci/help/en_US/TCL_SetVar.xml | 168 ++++++++++++++++++++++ modules/tclsci/help/en_US/TCL_UnsetVar.xml | 108 ++++++++++++++ modules/tclsci/help/en_US/TCL_UpVar.xml | 126 ++++++++++++++++ modules/tclsci/help/en_US/addchapter.sce | 11 ++ modules/tclsci/help/en_US/winlist.xml | 39 +++++ modules/tclsci/help/fr_FR/addchapter.sce | 11 ++ modules/tclsci/help/ja_JP/addchapter.sce | 11 ++ modules/tclsci/help/pt_BR/addchapter.sce | 11 ++ modules/tclsci/help/ru_RU/addchapter.sce | 11 ++ 19 files changed, 1585 insertions(+) create mode 100755 modules/tclsci/help/en_US/ScilabEval.xml create mode 100755 modules/tclsci/help/en_US/TCL_CreateSlave.xml create mode 100755 modules/tclsci/help/en_US/TCL_DeleteInterp.xml create mode 100755 modules/tclsci/help/en_US/TCL_EvalFile.xml create mode 100755 modules/tclsci/help/en_US/TCL_EvalStr.xml create mode 100755 modules/tclsci/help/en_US/TCL_ExistArray.xml create mode 100755 modules/tclsci/help/en_US/TCL_ExistInterp.xml create mode 100755 modules/tclsci/help/en_US/TCL_ExistVar.xml create mode 100755 modules/tclsci/help/en_US/TCL_GetVar.xml create mode 100755 modules/tclsci/help/en_US/TCL_GetVersion.xml create mode 100755 modules/tclsci/help/en_US/TCL_SetVar.xml create mode 100755 modules/tclsci/help/en_US/TCL_UnsetVar.xml create mode 100755 modules/tclsci/help/en_US/TCL_UpVar.xml create mode 100755 modules/tclsci/help/en_US/addchapter.sce create mode 100755 modules/tclsci/help/en_US/winlist.xml create mode 100755 modules/tclsci/help/fr_FR/addchapter.sce create mode 100755 modules/tclsci/help/ja_JP/addchapter.sce create mode 100755 modules/tclsci/help/pt_BR/addchapter.sce create mode 100755 modules/tclsci/help/ru_RU/addchapter.sce (limited to 'modules/tclsci/help') diff --git a/modules/tclsci/help/en_US/ScilabEval.xml b/modules/tclsci/help/en_US/ScilabEval.xml new file mode 100755 index 000000000..62e52eecc --- /dev/null +++ b/modules/tclsci/help/en_US/ScilabEval.xml @@ -0,0 +1,192 @@ + + + + + ScilabEval + tcl instruction : Evaluate a string + with scilab interpreter + + + + Calling Sequence + ScilabEval instruction + ScilabEval instruction "seq" + ScilabEval instruction "sync" + ScilabEval instruction "sync" "seq" + ScilabEval "flush" + + + + Arguments + + + instruction + + tcl string character contains a Scilab instruction to evaluate + with the current Scilab interpreter. + + + + + + + Description + This function must be called in a tcl/tk script executed from Scilab. + It allows to associate Scilab actions to tcl/tk widgets (graphic objects) + or to use Scilab to perform some computations within a tcl script. + + + + + ScilabEval instruction + + + If the ScilabEval instruction syntax is used, the + instruction is first stored in a FIFO queue, + ScilabEval returns immediately. Scilab executes the + queued instructions when possible (it should be at the + prompt but also at the end of each instructions of the currently + running function) in the order they were submitted. This syntax can be + used to associate Scilab actions to tcl/tk widgets but not into a tcl + script executed by TCL_EvalFile or TCL_EvalStr + because in this situation the Scilab interpreter is blocked up to the + end of the script. Note that with the + ScilabEval instruction syntax, if there are many + ScilabEval + commands stored in the queue the execution of the second one can be + started in the middle of the execution of the first one (in particular + if the first one contains more than a simple expression). + + + If the "seq" option is added, the associated + instruction evaluation should be finished (or paused) before the next + queued instruction evaluation can be started. The next callback stored + in the command queue will only be taken into account when the current + one will be finished or paused. + + + + + + ScilabEval instruction "sync" + + + If the ScilabEval instruction "sync" syntax is used, + the instruction is executed immediately (not queued) and the + ScilabEvalreturns when the instruction + evaluation is finished. The scilab instruction + evaluation may be interrupted by new or queued commands. + + + If the "seq" option is added, the associated + instruction evaluation should be finished (or paused) before any + queued instruction evaluation can be started. The scilab + instruction evaluation may not be interrupted by new or + queued commands (except if it is paused). + + + + + + ScilabEval "flush" + + + If the ScilabEval "flush" syntax is used, all the + previously queued instructions are executed immediately + and the ScilabEval returns when the execution is finished. Each + instruction is executed with the option used at the time + of queuing up (i.e. seq or no option). + + + + + The evaluation context of all these cases is the current Scilab context + when theinstruction evaluation starts. + + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + TCL_EvalFile + + + TCL_EvalStr + + + TCL_GetVar + + + TCL_SetVar + + + + diff --git a/modules/tclsci/help/en_US/TCL_CreateSlave.xml b/modules/tclsci/help/en_US/TCL_CreateSlave.xml new file mode 100755 index 000000000..f97c1de71 --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_CreateSlave.xml @@ -0,0 +1,80 @@ + + + + + TCL_CreateSlave + Create a TCL slave + interpreter + + + + Calling Sequence + TCL_CreateSlave(slaveName[, isSafe]) + + + Arguments + + + slaveName + + String: Name of the TCL slave interpreter to create. + + + + isSafe + + + Boolean: %T to create a safe slave interpreter, %F otherwise. The default value is %F. A safe slave is not allowed to perform some operations, see the TCL documentation for more information. + + + + + + + Description + This routine allows to create a TCL slave interpreter. + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + TCL_SetVar + + + TCL_ExistVar + + + TCL_DeleteInterp + + + + diff --git a/modules/tclsci/help/en_US/TCL_DeleteInterp.xml b/modules/tclsci/help/en_US/TCL_DeleteInterp.xml new file mode 100755 index 000000000..8819f015e --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_DeleteInterp.xml @@ -0,0 +1,76 @@ + + + + + TCL_DeleteInterp + delete TCL interpreter + + + Calling Sequence + TCL_DeleteInterp(interp) + TCL_DeleteInterp() + + + + Arguments + + + interp + + character string parameter. Name of the slave tcl + interpreter to delete. If not provided, it defaults to the main tcl interpreter created by Scilab. + + + + + + + Description + This routine allows to delete a TCL slave interpreter or the main scilab TCL interpreter. + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + TCL_SetVar + + + TCL_ExistVar + + + TCL_CreateSlave + + + TCL_ExistInterp + + + + diff --git a/modules/tclsci/help/en_US/TCL_EvalFile.xml b/modules/tclsci/help/en_US/TCL_EvalFile.xml new file mode 100755 index 000000000..b769869f6 --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_EvalFile.xml @@ -0,0 +1,128 @@ + + + + + TCL_EvalFile + Reads and evaluate a tcl/tk + file + + + + Calling Sequence + TCL_EvalFile(filename [,interp]) + + + Arguments + + + filename + + character string. Contains the name of the file to read and + evaluate. + + + + + interp + + optional character string parameter. Name of the slave tcl + interpreter in which the operation has to be performed. If not + provided, it defaults to the main tcl interpreter created by + Scilab. + + + + + + + Description + With this routine, one can read and evaluate the content of a file + containing tcl/tk scripts. This allows to create powerful tk + interfaces. + + The filename might be relative or absolute. + + + Advantages and drawbacks of this functionality + This routines allows to use directly tcl/tk scripts. This thus allows, + for instance to use Interface Builders such as SpecTcl to design the + interface. The interfaces built directly with tcl/tk scripts are much + faster than the ones built with the Scilab Graphic Object library provided + with tksci (see uicontrol for example). Indeed, those Objects are warpings + around tk graphic widgets. Nevertheless, this way of creating graphic user + interface should only be used when one aims at addressing directly + specific tk/tcl features. There are two main reasons for this. First of + all, there is no simple way to manipulate Scilab objects from within a + tcl/tk script. Thus, the interface designer has to write two sets of + callbacks routines. One to describe the changes occuring in the interface + when the user acts on the widgets. The second set of call routines will + perform the (pure) Scilab reactions to the user actions. + + Here is an example: Suppose you design a scrollbar corresponding to a + spline tension value. You want the spline to be displayed in a graphic + windows and updated each time the user moves the scrollbar. At the same + time, you want the value of this tension parameter to be displayed within + the Interface. You will have to write a first tcl/tk (callback) function + which will be automatically called by the tk scrollbar ("-command" + option). This callback function will update the displayed value of the + parameter in the interface and will then call the scilab routine + ("ScilabEval" command) to update the graph. + + + + Remarks on the tcl/tk script style + Because Scilab manages the tcl/tk events, it creates the root window + ".", this window should not be destroyed nor directly used by your tcl/tk + scripts. You should thus always create your own toplevel windows. + Moreover, since this module was written at a time when namespaces didn't + exist, some variables defined by scilab tcl/tk scripts could collide your + code. Running your scripts in a slave interpreter may help in such a + case. + + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + ScilabEval + + + TCL_EvalStr + + + TCL_GetVar + + + TCL_SetVar + + + TCL_ExistVar + + + TCL_UnsetVar + + + TCL_UpVar + + + + diff --git a/modules/tclsci/help/en_US/TCL_EvalStr.xml b/modules/tclsci/help/en_US/TCL_EvalStr.xml new file mode 100755 index 000000000..4fc436a8d --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_EvalStr.xml @@ -0,0 +1,129 @@ + + + + TCL_EvalStr + Evaluate a string whithin the Tcl/Tk interpreter + + + Calling Sequence + TCL_EvalStr(str [,interp]) + res = TCL_EvalStr(str [,interp]) + + + + Arguments + + + str + + string or matrix of strings, contains a Tcl/Tk script in each + element. + + + + + interp + + optional character string parameter. Name of the slave Tcl + interpreter in which the operation has to be performed. If not + provided, it defaults to the main Tcl interpreter created by + Scilab. + + + + + res + + result of the evaluation, if it is successful. This is a + character string matrix giving the evaluation result for each + element of the input argument str + + + + + + + Description + This routine allows to evaluate Tcl/Tk instructions with the Tcl/Tk + interpreter launched with Scilab (when the interp parameter + is not given), or in a slave interpreter. + + When Tcl/Tk support is enabled in Scilab, you can evaluate Tcl/Tk + expression from Scilab interpreter. In fact, Scilab launches a main Tcl/Tk + interpreter. The Scilab instruction TCL_EvalStr can be used + to evaluate expressions without having to write Tcl/Tk instructions in a + separated file (this capability is provided by + TCL_EvalFile). + + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + ScilabEval + + + TCL_EvalFile + + + TCL_GetVar + + + TCL_SetVar + + + TCL_ExistVar + + + TCL_UnsetVar + + + TCL_UpVar + + + + diff --git a/modules/tclsci/help/en_US/TCL_ExistArray.xml b/modules/tclsci/help/en_US/TCL_ExistArray.xml new file mode 100755 index 000000000..3114a85e2 --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_ExistArray.xml @@ -0,0 +1,99 @@ + + + + + TCL_ExistArray + Return %T if a tcl array + exists + + + + Calling Sequence + OK=TCL_ExistArray(arrayname [,interp]) + + + Arguments + + + arrayname + + character string. Contains the name of the tcl/tk + array. + + + + + interp + + optional character string parameter. Name of the slave tcl + interpreter in which the operation has to be performed. If not + provided, it defaults to the main tcl interpreter created by + Scilab. + + + + + ok + + boolean. %T if arrayname exists. + + + + + + Description + This routine allows to test if a tcl array exists. + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + ScilabEval + + + TCL_EvalFile + + + TCL_EvalStr + + + TCL_GetVar + + + TCL_SetVar + + + TCL_UnsetVar + + + TCL_UpVar + + + TCL_CreateSlave + + + + diff --git a/modules/tclsci/help/en_US/TCL_ExistInterp.xml b/modules/tclsci/help/en_US/TCL_ExistInterp.xml new file mode 100755 index 000000000..00bc15baa --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_ExistInterp.xml @@ -0,0 +1,70 @@ + + + + + TCL_ExistInterp + Return %T if a tcl slave interperter + exists + + + + Calling Sequence + OK=TCL_ExistInterp(interp) + + + Arguments + + + interp + + character string parameter. Name of the slave tcl + interpreter. + + + + + ok + + boolean. %T if TCL interpreter exists. + + + + + + Description + This routine allows to test if TCL interpreter exists. + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + TCL_CreateSlave + + + TCL_DeleteInterp + + + + diff --git a/modules/tclsci/help/en_US/TCL_ExistVar.xml b/modules/tclsci/help/en_US/TCL_ExistVar.xml new file mode 100755 index 000000000..a9a95e7e2 --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_ExistVar.xml @@ -0,0 +1,109 @@ + + + + + TCL_ExistVar + Return %T if a tcl variable + exists + + + + Calling Sequence + OK=TCL_ExistVar(varname [,interp]) + + + Arguments + + + varname + + character string. Contains the name of the tcl/tk + variable. + + + + + interp + + optional character string parameter. Name of the slave tcl + interpreter in which the operation has to be performed. If not + provided, it defaults to the main tcl interpreter created by + Scilab. + + + + + ok + + boolean. %T if varname exists. + + + + + + Description + This routine allows to test if a tcl variable exists. + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + ScilabEval + + + TCL_EvalFile + + + TCL_EvalStr + + + TCL_GetVar + + + TCL_SetVar + + + TCL_UnsetVar + + + TCL_UpVar + + + TCL_CreateSlave + + + + diff --git a/modules/tclsci/help/en_US/TCL_GetVar.xml b/modules/tclsci/help/en_US/TCL_GetVar.xml new file mode 100755 index 000000000..c471269f6 --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_GetVar.xml @@ -0,0 +1,166 @@ + + + + + TCL_GetVar + Get a tcl/tk variable + value + + + + Calling Sequence + value=TCL_GetVar(Varname [,interp]) + + + Arguments + + + varname + + character string. Contains the name of the tcl/tk + variable. + + + + + interp + + optional character string parameter. Name of the slave tcl + interpreter in which the operation has to be performed. If not + provided, it defaults to the main tcl interpreter created by + Scilab. + + + + + value + + may be a character string or a strings matrix. Contains the + value of the tcl/tk variable varname in the interpreter + interp. + + + + + + + Description + When tcl/tk support is enabled in Scilab, this routine can be used to + retreive the value of a tcl/tk variable. + + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + ScilabEval + + + TCL_EvalFile + + + TCL_EvalStr + + + TCL_SetVar + + + TCL_ExistVar + + + TCL_UnsetVar + + + TCL_UpVar + + + TCL_CreateSlave + + + TCL_DeleteInterp + + + + diff --git a/modules/tclsci/help/en_US/TCL_GetVersion.xml b/modules/tclsci/help/en_US/TCL_GetVersion.xml new file mode 100755 index 000000000..47b3c0088 --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_GetVersion.xml @@ -0,0 +1,40 @@ + + + + + TCL_GetVersion + get the version of the TCL/TK + library at runtime. + + + + Calling Sequence + TCL_GetVersion() + ret=TCL_GetVersion('numbers') + + + + Description + get the version of the TCL/TK library at runtime. + ret=TCL_GetVersion('numbers') returns a matrix with the version of the + TCL/TK library at runtime. + + + + Examples + + + diff --git a/modules/tclsci/help/en_US/TCL_SetVar.xml b/modules/tclsci/help/en_US/TCL_SetVar.xml new file mode 100755 index 000000000..b803e5376 --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_SetVar.xml @@ -0,0 +1,168 @@ + + + + + TCL_SetVar + Set a tcl/tk variable + value + + + + Calling Sequence + TCL_SetVar(varname, value [,interp]) + + + Arguments + + + varname + + character string. Contains the name of the tcl/tk variable to + set. + + + + + value + + may be a character string, a scalar, a real or string matrix + (m x n). Contains the value to give to the tcl/tk variable. + + + + + interp + + optional character string parameter. Name of the slave tcl + interpreter in which the operation has to be performed. If not + provided, it defaults to the main tcl interpreter created by + Scilab. + + + + + + + Description + This routine allows to set a variable within a tcl/tk interpreter. When + tcl/tk support is enabled in scilab, this routine can be used to set up + the value of a tcl/tk variable. This can be useful to change some value in + the tcl/tk interpreter without having to build a tcl/tk instruction (and + use TCL_EvalStr). + + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + ScilabEval + + + TCL_EvalFile + + + TCL_EvalStr + + + TCL_GetVar + + + TCL_ExistVar + + + TCL_UnsetVar + + + TCL_UpVar + + + TCL_CreateSlave + + + TCL_DeleteInterp + + + + diff --git a/modules/tclsci/help/en_US/TCL_UnsetVar.xml b/modules/tclsci/help/en_US/TCL_UnsetVar.xml new file mode 100755 index 000000000..13bec2f61 --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_UnsetVar.xml @@ -0,0 +1,108 @@ + + + + + TCL_UnsetVar + Remove a tcl + variable + + + + Calling Sequence + OK=TCL_UnsetVar(varname [,interp]) + + + Arguments + + + varname + + character string. Contains the name of the tcl/tk variable to + unset. + + + + + interp + + optional character string parameter. Name of the slave tcl + interpreter in which the operation has to be performed. If not + provided, it defaults to the main tcl interpreter created by + Scilab. + + + + + ok + + boolean. %T if varname was deleted. + + + + + + Description + This routine allows to unset a tcl variable. + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + ScilabEval + + + TCL_EvalFile + + + TCL_EvalStr + + + TCL_GetVar + + + TCL_SetVar + + + TCL_ExistVar + + + TCL_UpVar + + + TCL_CreateSlave + + + TCL_DeleteInterp + + + + diff --git a/modules/tclsci/help/en_US/TCL_UpVar.xml b/modules/tclsci/help/en_US/TCL_UpVar.xml new file mode 100755 index 000000000..ba4f2f114 --- /dev/null +++ b/modules/tclsci/help/en_US/TCL_UpVar.xml @@ -0,0 +1,126 @@ + + + + + TCL_UpVar + Make a link from a tcl source variable + to a tcl destination variable + + + + Calling Sequence + OK=TCL_UpVar(varname1,varname2,[interp]) + + + Arguments + + + varname1 + + character string. Contains the name of the tcl source + variable. + + + + + varname2 + + character string. Contains the name of the tcl destination + variable. + + + + + interp + + optional character string parameter. Name of the slave tcl + interpreter in which the operation has to be performed. If not + provided, it defaults to the main tcl interpreter created by + Scilab. + + + + + ok + + boolean. %T if it is ok. + + + + + + Description + Make a link from a tcl source variable to a tcl destination + variable. + + + More information about Tcl/Tk: http://www.tcl.tk/doc/ + + + + Examples + + + + See Also + + + ScilabEval + + + TCL_EvalFile + + + TCL_EvalStr + + + TCL_GetVar + + + TCL_SetVar + + + TCL_ExistVar + + + TCL_UnsetVar + + + TCL_CreateSlave + + + TCL_DeleteInterp + + + + diff --git a/modules/tclsci/help/en_US/addchapter.sce b/modules/tclsci/help/en_US/addchapter.sce new file mode 100755 index 000000000..d25418e4c --- /dev/null +++ b/modules/tclsci/help/en_US/addchapter.sce @@ -0,0 +1,11 @@ +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + +add_help_chapter("Tcl/Tk Interface",SCI+"/modules/tclsci/help/en_US",%T); + diff --git a/modules/tclsci/help/en_US/winlist.xml b/modules/tclsci/help/en_US/winlist.xml new file mode 100755 index 000000000..f0531afea --- /dev/null +++ b/modules/tclsci/help/en_US/winlist.xml @@ -0,0 +1,39 @@ + + + + + winlist + Return the winId of current window created by sciGUI + + + Calling Sequence + winIds=winlist() + + + Arguments + + + winIds + + matrix of integer greater than 0, window identificator. + + + + + + Description + + winlist() Return the winId of current window created by sciGUI. + + + diff --git a/modules/tclsci/help/fr_FR/addchapter.sce b/modules/tclsci/help/fr_FR/addchapter.sce new file mode 100755 index 000000000..8e8b928f5 --- /dev/null +++ b/modules/tclsci/help/fr_FR/addchapter.sce @@ -0,0 +1,11 @@ +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + +add_help_chapter("Interface avec Tcl/Tk",SCI+"/modules/tclsci/help/fr_FR",%T); + diff --git a/modules/tclsci/help/ja_JP/addchapter.sce b/modules/tclsci/help/ja_JP/addchapter.sce new file mode 100755 index 000000000..f4a8dae04 --- /dev/null +++ b/modules/tclsci/help/ja_JP/addchapter.sce @@ -0,0 +1,11 @@ +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + +add_help_chapter("Tcl/Tk Interface",SCI+"/modules/tclsci/help/ja_JP",%T); + diff --git a/modules/tclsci/help/pt_BR/addchapter.sce b/modules/tclsci/help/pt_BR/addchapter.sce new file mode 100755 index 000000000..4ef135958 --- /dev/null +++ b/modules/tclsci/help/pt_BR/addchapter.sce @@ -0,0 +1,11 @@ +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + +add_help_chapter("Interfaces com Tcl/Tk",SCI+"/modules/tclsci/help/pt_BR",%T); + diff --git a/modules/tclsci/help/ru_RU/addchapter.sce b/modules/tclsci/help/ru_RU/addchapter.sce new file mode 100755 index 000000000..b341e72b5 --- /dev/null +++ b/modules/tclsci/help/ru_RU/addchapter.sce @@ -0,0 +1,11 @@ +// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +// Copyright (C) 2009 - DIGITEO +// +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + +add_help_chapter("Tcl/Tk Interface",SCI+"/modules/tclsci/help/ru_RU",%T); + -- cgit