Re: [Scilab-Dev] Issue with unicode exponents

2019-11-28 Thread Antoine ELIAS
Le 28/11/2019 à 23:35, Samuel Gougeon a écrit : Hello Antoine, Le 28/11/2019 à 23:17, Antoine ELIAS a écrit : Hello Samuel, I'm agree with you about the issue. I will try to find a way to change the console properties inside binary like when we change color in nw mode ( W/B vs B/W

Re: [Scilab-Dev] Issue with unicode exponents

2019-11-28 Thread Antoine ELIAS
Hello Samuel, I'm agree with you about the issue. I will try to find a way to change the console properties inside binary like when we change color in nw mode ( W/B vs B/W ) But I does not show trouble with 2 or 3 and others superscript numbers. With this configuration Le 28/11/2019 à

Re: [Scilab-Dev] setScilabOutputMethod - output vs error streams

2019-07-18 Thread Antoine ELIAS
Hello Sylvain, I made changes on master branch. You can update your repo ( Clément has merged the PR ) Now you have 3 functions: void setScilabOutputMethod(SCILAB_OUTPUT_METHOD writer); void setScilabErrorStreamMethod(SCILAB_OUTPUT_METHOD writer); void

Re: [Scilab-Dev] tests: <-- ENGLISH IMPOSED --> removed and gettext() added: why?

2019-06-14 Thread Antoine ELIAS
Hahaha it was me \o/ Seriously, I don't care about localization in test. A long time ago we had a discussion about localization in tests. I would have preferred to have some tests about localization mechanism and no localization in the others. The goal of all tests is *not* to check

Re: [Scilab-Dev] list as output in function call

2019-04-23 Thread Antoine ELIAS
Hello Stéphane, Just to be sure, you want that we fill the X-list with all outputs of ngdrid. Following witch information, size(X) or size(outputs) ? In your cas I suppose that the size is the same. What append if X is not a list or does not have the good size ? Some functions that returns

Re: [Scilab-Dev] protect / unprotect: recent progress & analysis

2019-04-09 Thread Antoine Elias
/Questions in blue in your message Regards, Antoine De : Samuel Gougeon Envoyé : dimanche 7 avril 2019 19:25 À : Antoine Elias ; List dedicated to development questions Objet : protect / unprotect: recent progress & analysis Hello Antoine, On 2019-01-18, you called in a private

Re: [Scilab-Dev] completion() alone in [completion] => in [core] ?

2019-03-01 Thread Antoine ELIAS
Completion is the only gateway but there is a lot of code around it and some java files and java/c wrapper. I think it was to avoid dependency between core and JVM for "no java" mode. Historically, core was the main module of Scilab ( before 6 ) and we avoided to make link from core to others

Re: [Scilab-Dev] A && B is considered as A & B for unsupported A types

2019-01-16 Thread Antoine ELIAS
I'm agree to explicitly show that we do not support overload for && and ||. But I'm not understand the second part about {} and []. Can you explain it ? Antoine Le 16/01/2019 à 00:11, Samuel Gougeon a écrit : Hello, Another approach to tackle overloading of the new && and || operators: With

Re: [Scilab-Dev] varn([]) changed

2019-01-15 Thread Antoine ELIAS
ne, Le 15/01/2019 à 09:53, Antoine ELIAS a écrit : Hello Samuel, No, it is not intentional, I will take a look to that today. IMO, this is not necessarilly a bad change. Please also consider that remark <http://bugzilla.scilab.org/show_bug.cgi?id=11077#c8> about applicability of varn(

Re: [Scilab-Dev] &&, ||, {} as cell-builder not overloadable: official?

2019-01-15 Thread Antoine ELIAS
Hello Samuel, You are right, there is no overload for these new operators. for || and &&, it seems to be OK, we can create new overloads like %x_gg_x ( || ) and %_hh_x ( && ) for example. but for {} it would be difficult, cell creation accepts ALL types so how to detect and call overloads ?

Re: [Scilab-Dev] Are genlib() changes intentional? Documenting them makes them official

2019-01-15 Thread Antoine ELIAS
Hello Samuel, 1. It's intentional, when a function is private, it must stay private. 2. Need time to read threads and understand the problem. 3.It is a bug ! Someone forgot to read documentation before coding ! ( probably me ^^ ) Antoine Le 14/01/2019 à 23:58, Samuel Gougeon a écrit : Hello

[Scilab-Dev] Thirdparties update for Windows (matio)

2018-11-17 Thread Antoine ELIAS
Hello devs, Following bug reported by Samuel ( 15877 on savematfile ), I found a problem in library libmatio.dll Problem comes from recent change on hdf5 Scilab library ( scihdf5.dll ) and its dependencies. ( remane for compatibily with

Re: [Scilab-Dev] Modification dates mismatch between GIT and gitweb

2018-11-17 Thread Antoine ELIAS
Hello Samuel, First, never use Windows date/time as reference, it is just a view of your local repo and there no link with git information. > In GIT, as shown above, all dates of *.sci are actually very recent. Not really, in fact image/view of the repo on your system have recent dates.

Re: [Scilab-Dev] Big literal integers for int64() and uint64()

2018-10-27 Thread Antoine ELIAS
7:34, Samuel Gougeon a écrit : Hello Antoine, Thanks for your answer. I have opened a bug report #15837 <http://bugzilla.scilab.org/show_bug.cgi?id=15837> about this topic. About the overload: Le 27/10/2018 à 14:00, Antoine ELIAS a écrit : Hello Samuel, Currently, parser ... lexer

Re: [Scilab-Dev] Big literal integers for int64() and uint64()

2018-10-27 Thread Antoine ELIAS
Hello Samuel, Currently, parser ... lexer, in fact, try to read "number" and convert it to floating point number, at this moment, we have no idea what the final goal of this number. After that, the parser try to understand what to do with this number (already a double). So I think the first

Re: [Scilab-Dev] strings cannot be cut into several lines

2018-09-08 Thread Antoine ELIAS
Hello Eric, In Scilab 5, you could write strings on multiple lines using ... but not only, it worked with everything. -->1.. -->2  ans  =     12. and more horrible -->fun.. -->ction toto(.. -->) -->disp("fu.. -->nction"); -->endf... -->unction -->toto()  function In fact "..." are used

Re: [Scilab-Dev] XMLDoc==XMLDoc definition

2018-07-28 Thread Antoine ELIAS
Hello Samuel, Example outside of xml "object" (lot of overloads) a = mlist(["toto", "id"], 1); b = mlist(["toto", "id"], 1); a == b -> [%t %t] For mlist we compare the type ("toto") and fields  ("id" in this case) Regards, Antoine Le 28/07/2018 à 16:47, Samuel Gougeon a écrit : Hello, Before

Re: [Scilab-Dev] gitweb: which Scilab branch?

2018-03-13 Thread Antoine ELIAS
Me again ;) You can use http://cgit.scilab.org/scilab/ too. ( choose branch at the top right ) Another tool to do the same thing, sometimes it is faster than gitweb. Antoine Le 13/03/2018 à 15:37, Antoine ELIAS a écrit : Hello Samuel, http://gitweb.scilab.org/?p=scilab.git can show all

Re: [Scilab-Dev] CodeReview : How to download a files set?

2018-03-03 Thread Antoine ELIAS
Le 03/03/2018 à 23:39, Samuel Gougeon a écrit : Le 03/03/2018 à 23:31, Antoine ELIAS a écrit : No I don't find this option too. What is the goal behind ? ( to find another way if it is possible ) To easily save a copy of the files set as it is, without to have to pick up them one by one

Re: [Scilab-Dev] CodeReview : How to download a files set?

2018-03-03 Thread Antoine ELIAS
You can download the diff file and apply it to your local repo. git apply .diff After that you have modified files locally. (without commit, history, ...) Le 03/03/2018 à 23:31, Antoine ELIAS a écrit : No I don't find this option too. What is the goal behind ? ( to find another way

Re: [Scilab-Dev] CodeReview : How to download a files set?

2018-03-03 Thread Antoine ELIAS
No I don't find this option too. What is the goal behind ? ( to find another way if it is possible ) Antoine Le 03/03/2018 à 17:50, Samuel Gougeon a écrit : Hello, Is there any way from the CodeReview Gerrit interface, for a given review, to download the set of files of a given patch set? I

Re: [Scilab-Dev] Evolution of Scilab API

2018-02-14 Thread Antoine ELIAS
Hello, First one ( API 1 ) was write to be "compatible" between Scilab 5 and Scilab 6. ( except last arg, int -> void*, sorry about that ) So in Scilab 6 we reproduce stack behavior ( Top, Rhs, LhsVar(x) = y), but that produce lot of copy, move of data). The second ( API 2 ) is the nearest

Re: [Scilab-Dev] householder: mismatch between GIT HEAD and the continuous built for the 6.0 branch

2017-12-09 Thread Antoine ELIAS
Hello Samuel, I think the issue comes from linear_algebra.iss, it does not install *.sce files from macros folder. I will patch 6.0 branch to add this file or .sce in Windows installer. Regards, Antoine Le 09/12/2017 à 22:29, Samuel Gougeon a écrit : Hello devs, I wanted to fix an issue

Re: [Scilab-Dev] Scilab forge down

2017-11-07 Thread Antoine ELIAS
Hello all, Since Tuesday evening, services around xxx.scilab.org are interrupted by a hardware failure of an internal connection. ISP is working on it. In the meantime, ITs start to move servers ( VM ) to another site. They started by the mailing list server. I do not have more information

Re: [Scilab-Dev] Private functions in a .sci file <= Re: Multiple Functions in a sci file

2017-02-22 Thread antoine . elias
Hello, After some tests, it seems that Scilab 5 loads in local context "sub functions" only when you call the main function. with your sample, test1 and testa in the same test1.sci file genlib -> load -> testa -> KO -> test1 -> testa -> OK In Scilab 6, we load "sub functions"

Re: [Scilab-Dev] 6.0 branched from master

2017-02-17 Thread antoine . elias
Hello Samuel, branch 6.0 is for version 6.0.0 to 6.0.x branch master is for 6.1.0 to < 7.0.0 Normally, 6.0.1 is for bug fixes or small improvement. In doubt, push your commits on branch master and we cherry pick commits on 6.0 branch if needed. Branch 6.0 will be regularly merged in master.

Re: [Scilab-Dev] lib() unavailable on YaSp?

2015-07-15 Thread Antoine ELIAS
with sets of macros with YaSp. Best regards Samuel ___ dev mailing list dev@lists.scilab.org http://lists.scilab.org/mailman/listinfo/dev -- Antoine ELIAS Software developer --- Scilab Enterprises 143bis rue Yves Le Coz - 78000