From lambdasoftware at yahoo.es Tue Nov 1 20:21:22 2016 From: lambdasoftware at yahoo.es (Amanda) Date: Tue, 01 Nov 2016 17:21:22 -0200 Subject: [Scilab-Dev] Object Orientation Message-ID: <1478028082.6068.1.camel@yahoo.es> Hi everbody, i'm implementing a simple object orientation in SciLAB with heritage and encapsulation only. Somebody can tell me if exists another work in progress ? I have found a message from Simon Lipp, but i'm unable to contact him. http://mailinglists.scilab.org/Object-orientation-in-Scilab-6-td2610878 .html -- Amanda -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Tue Nov 1 21:14:50 2016 From: sgougeon at free.fr (Samuel Gougeon) Date: Tue, 1 Nov 2016 21:14:50 +0100 Subject: [Scilab-Dev] Object Orientation In-Reply-To: <1478028082.6068.1.camel@yahoo.es> References: <1478028082.6068.1.camel@yahoo.es> Message-ID: <5818F7BA.3060500@free.fr> Hello Amanda, Le 01/11/2016 20:21, Amanda a ?crit : > Hi everbody, i'm implementing a simple object orientation in SciLAB > with heritage and encapsulation only. > > Somebody can tell me if exists another work in progress ? > > I have found a message from Simon Lipp, but i'm unable to contact him. > > http://mailinglists.scilab.org/Object-orientation-in-Scilab-6-td2610878.html . On this topic, there was also this thread: http://mailinglists.scilab.org/SEP-Object-oriented-programming-under-scilab-tt2610065.html The related SEP was uploaded there on GIT And this wiki page (2011): https://wiki.scilab.org/Emulate%20Object%20Oriented%20in%20Scilab Best regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From lambdasoftware at yahoo.es Wed Nov 2 12:31:56 2016 From: lambdasoftware at yahoo.es (Amanda) Date: Wed, 02 Nov 2016 09:31:56 -0200 Subject: [Scilab-Dev] dev Digest, Vol 51, Issue 1 In-Reply-To: References: Message-ID: <1478086316.11702.1.camel@yahoo.es> Thanks Samuel, but it's a emulation.I would like to implement a real object orientation in the SciLAB core.? It don't means that SciLAB team needs to approve my patch, but i need information about how to add keywords in the SciLAB language and map then into SciLAB bytecode. I'm not finding information about the SciLAB architecture. On Wed, 2016-11-02 at 12:00 +0100, dev-request at lists.scilab.org wrote: > Send dev mailing list submissions to > dev at lists.scilab.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.scilab.org/mailman/listinfo/dev > or, via email, send a message with subject or body 'help' to > dev-request at lists.scilab.org > > You can reach the person managing the list at > dev-owner at lists.scilab.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of dev digest..." > > > Today's Topics: > > ???1. Object Orientation (Amanda) > ???2. Re: Object Orientation (Samuel Gougeon) > > > ------------------------------------------------------------------- > --- > > Message: 1 > Date: Tue, 01 Nov 2016 17:21:22 -0200 > From: Amanda > To: dev at lists.scilab.org > Subject: [Scilab-Dev] Object Orientation > Message-ID: <1478028082.6068.1.camel at yahoo.es> > Content-Type: text/plain; charset="utf-8" > > Hi everbody, i'm implementing a simple object orientation in SciLAB > with heritage and encapsulation only. > > Somebody can tell me if exists another work in progress ? > > I have found a message from Simon Lipp, but i'm unable to contact > him. > > http://mailinglists.scilab.org/Object-orientation-in-Scilab-6-td26108 > 78 > .html > > -- Amanda > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: 8fc4/attachment-0001.html> > > ------------------------------ > > Message: 2 > Date: Tue, 1 Nov 2016 21:14:50 +0100 > From: Samuel Gougeon > To: List dedicated to the development of Scilab > > Subject: Re: [Scilab-Dev] Object Orientation > Message-ID: <5818F7BA.3060500 at free.fr> > Content-Type: text/plain; charset="windows-1252"; Format="flowed" > > Hello Amanda, > > Le 01/11/2016 20:21, Amanda a ?crit : > > Hi everbody, i'm implementing a simple object orientation in > > SciLAB? > > with heritage and encapsulation only. > > > > Somebody can tell me if exists another work in progress ? > > > > I have found a message from Simon Lipp, but i'm unable to contact > > him. > > > > http://mailinglists.scilab.org/Object-orientation-in-Scilab-6-td261 > > 0878.html > > . > On this topic, there was also this thread:? > http://mailinglists.scilab.org/SEP-Object-oriented-programming-under- > scilab-tt2610065.html > The related SEP was uploaded there? > dt;hb=HEAD>? > on GIT > And this wiki page (2011):? > https://wiki.scilab.org/Emulate%20Object%20Oriented%20in%20Scilab > > Best regards > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: 59e8/attachment-0001.html> > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev > > > ------------------------------ > > End of dev Digest, Vol 51, Issue 1 > ********************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From clement.david at scilab-enterprises.com Thu Nov 10 11:07:47 2016 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Thu, 10 Nov 2016 11:07:47 +0100 Subject: [Scilab-Dev] dev Digest, Vol 51, Issue 1 In-Reply-To: <1478086316.11702.1.camel@yahoo.es> References: <1478086316.11702.1.camel@yahoo.es> Message-ID: <1478772467.1956.5.camel@scilab-enterprises.com> Hello Amanda, Thanks for your help on Scilab. I suggest you to first setup a local git repository (checkout, build locally) [1] and add a simple keyword on the Scilab parser [2]. Then by updating the source code, you will be able to implement the needed operations on the "ast" module as we currently have no bytecode (the execution is performed directly on the AST). [1]:?https://wiki.scilab.org/Compilation%20of%20Scilab [2]: modules/ast/src/cpp/parse/bison/parsescilab.yy Do not hesitate to ask if you have questions, -- Cl?ment Le mercredi 02 novembre 2016 ? 09:31 -0200, Amanda a ?crit?: > Thanks Samuel, but it's a emulation. > I would like to implement a real object orientation in the SciLAB core. > > It don't means that SciLAB team needs to approve my patch, but i need information about how to add > keywords in the SciLAB language and map then into SciLAB bytecode. > > I'm not finding information about the SciLAB architecture. > > On Wed, 2016-11-02 at 12:00 +0100, dev-request at lists.scilab.org wrote: > > Send dev mailing list submissions to > > dev at lists.scilab.org > > > > To subscribe or unsubscribe via the World Wide Web, visit > > http://lists.scilab.org/mailman/listinfo/dev > > or, via email, send a message with subject or body 'help' to > > dev-request at lists.scilab.org > > > > You can reach the person managing the list at > > dev-owner at lists.scilab.org > > > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of dev digest..." > > > > > > Today's Topics: > > > > ???1. Object Orientation (Amanda) > > ???2. Re: Object Orientation (Samuel Gougeon) > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Tue, 01 Nov 2016 17:21:22 -0200 > > From: Amanda > > To: dev at lists.scilab.org > > Subject: [Scilab-Dev] Object Orientation > > Message-ID: <1478028082.6068.1.camel at yahoo.es> > > Content-Type: text/plain; charset="utf-8" > > > > Hi everbody, i'm implementing a simple object orientation in SciLAB > > with heritage and encapsulation only. > > > > Somebody can tell me if exists another work in progress ? > > > > I have found a message from Simon Lipp, but i'm unable to contact him. > > > > http://mailinglists.scilab.org/Object-orientation-in-Scilab-6-td2610878 > > .html > > > > -- Amanda > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > > ------------------------------ > > > > Message: 2 > > Date: Tue, 1 Nov 2016 21:14:50 +0100 > > From: Samuel Gougeon > > To: List dedicated to the development of Scilab > > Subject: Re: [Scilab-Dev] Object Orientation > > Message-ID: <5818F7BA.3060500 at free.fr> > > Content-Type: text/plain; charset="windows-1252"; Format="flowed" > > > > Hello Amanda, > > > > Le 01/11/2016 20:21, Amanda a ?crit : > > > > > > Hi everbody, i'm implementing a simple object orientation in SciLAB? > > > with heritage and encapsulation only. > > > > > > Somebody can tell me if exists another work in progress ? > > > > > > I have found a message from Simon Lipp, but i'm unable to contact him. > > > > > > http://mailinglists.scilab.org/Object-orientation-in-Scilab-6-td2610878.html > > . > > On this topic, there was also this thread:? > > http://mailinglists.scilab.org/SEP-Object-oriented-programming-under-scilab-tt2610065.html > > The related SEP was uploaded there? > > ? > > on GIT > > And this wiki page (2011):? > > https://wiki.scilab.org/Emulate%20Object%20Oriented%20in%20Scilab > > > > Best regards > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > > ------------------------------ > > > > Subject: Digest Footer > > > > _______________________________________________ > > dev mailing list > > dev at lists.scilab.org > > http://lists.scilab.org/mailman/listinfo/dev > > > > > > ------------------------------ > > > > End of dev Digest, Vol 51, Issue 1 > > ********************************** > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev From lambdasoftware at yahoo.es Fri Nov 11 12:01:47 2016 From: lambdasoftware at yahoo.es (Amanda) Date: Fri, 11 Nov 2016 09:01:47 -0200 Subject: [Scilab-Dev] dev Digest, Vol 51, Issue 1 In-Reply-To: <1478772467.1956.5.camel@scilab-enterprises.com> References: <1478086316.11702.1.camel@yahoo.es> <1478772467.1956.5.camel@scilab-enterprises.com> Message-ID: <1478862107.8476.1.camel@yahoo.es> Hello Cl?ment, thanks very much for the answer. I will put me in work.??:-D -- Amanda On Thu, 2016-11-10 at 11:07 +0100, Cl?ment David wrote: > Hello Amanda, > > Thanks for your help on Scilab. I suggest you to first setup a local > git repository (checkout, build > locally) [1] and add a simple keyword on the Scilab parser [2]. > > Then by updating the source code, you will be able to implement the > needed operations on the "ast" > module as we currently have no bytecode (the execution is performed > directly on the AST). > > [1]:?https://wiki.scilab.org/Compilation%20of%20Scilab > [2]: modules/ast/src/cpp/parse/bison/parsescilab.yy > > Do not hesitate to ask if you have questions, > > -- > Cl?ment > > Le mercredi 02 novembre 2016 ? 09:31 -0200, Amanda a ?crit?: > > Thanks Samuel, but it's a emulation. > > I would like to implement a real object orientation in the SciLAB > > core. > > > > It don't means that SciLAB team needs to approve my patch, but i > > need information about how to add > > keywords in the SciLAB language and map then into SciLAB bytecode. > > > > I'm not finding information about the SciLAB architecture. > > > > On Wed, 2016-11-02 at 12:00 +0100, dev-request at lists.scilab.org > > wrote: > > > Send dev mailing list submissions to > > > dev at lists.scilab.org > > > > > > To subscribe or unsubscribe via the World Wide Web, visit > > > http://lists.scilab.org/mailman/listinfo/dev > > > or, via email, send a message with subject or body 'help' to > > > dev-request at lists.scilab.org > > > > > > You can reach the person managing the list at > > > dev-owner at lists.scilab.org > > > > > > When replying, please edit your Subject line so it is more > > > specific > > > than "Re: Contents of dev digest..." > > > > > > > > > Today's Topics: > > > > > > ???1. Object Orientation (Amanda) > > > ???2. Re: Object Orientation (Samuel Gougeon) > > > > > > > > > --------------------------------------------------------------- > > > ------- > > > > > > Message: 1 > > > Date: Tue, 01 Nov 2016 17:21:22 -0200 > > > From: Amanda > > > To: dev at lists.scilab.org > > > Subject: [Scilab-Dev] Object Orientation > > > Message-ID: <1478028082.6068.1.camel at yahoo.es> > > > Content-Type: text/plain; charset="utf-8" > > > > > > Hi everbody, i'm implementing a simple object orientation in > > > SciLAB > > > with heritage and encapsulation only. > > > > > > Somebody can tell me if exists another work in progress ? > > > > > > I have found a message from Simon Lipp, but i'm unable to contact > > > him. > > > > > > http://mailinglists.scilab.org/Object-orientation-in-Scilab-6-td2 > > > 610878 > > > .html > > > > > > -- Amanda > > > -------------- next part -------------- > > > An HTML attachment was scrubbed... > > > URL: > > 1d2a8fc4/attachment-0001.html> > > > > > > ------------------------------ > > > > > > Message: 2 > > > Date: Tue, 1 Nov 2016 21:14:50 +0100 > > > From: Samuel Gougeon > > > To: List dedicated to the development of Scilab > > .org> > > > Subject: Re: [Scilab-Dev] Object Orientation > > > Message-ID: <5818F7BA.3060500 at free.fr> > > > Content-Type: text/plain; charset="windows-1252"; Format="flowed" > > > > > > Hello Amanda, > > > > > > Le 01/11/2016 20:21, Amanda a ?crit : > > > > Hi everbody, i'm implementing a simple object orientation in > > > > SciLAB? > > > > with heritage and encapsulation only. > > > > > > > > Somebody can tell me if exists another work in progress ? > > > > > > > > I have found a message from Simon Lipp, but i'm unable to > > > > contact him. > > > > > > > > http://mailinglists.scilab.org/Object-orientation-in-Scilab-6-t > > > > d2610878.html > > > > > > . > > > On this topic, there was also this thread:? > > > http://mailinglists.scilab.org/SEP-Object-oriented-programming-un > > > der-scilab-tt2610065.html > > > The related SEP was uploaded there? > > > > > ct.odt;hb=HEAD>? > > > on GIT > > > And this wiki page (2011):? > > > https://wiki.scilab.org/Emulate%20Object%20Oriented%20in%20Scilab > > > > > > Best regards > > > > > > -------------- next part -------------- > > > An HTML attachment was scrubbed... > > > URL: > > de1e59e8/attachment-0001.html> > > > > > > ------------------------------ > > > > > > Subject: Digest Footer > > > > > > _______________________________________________ > > > dev mailing list > > > dev at lists.scilab.org > > > http://lists.scilab.org/mailman/listinfo/dev > > > > > > > > > ------------------------------ > > > > > > End of dev Digest, Vol 51, Issue 1 > > > ********************************** > > > > _______________________________________________ > > dev mailing list > > dev at lists.scilab.org > > http://lists.scilab.org/mailman/listinfo/dev > > _______________________________________________ > dev mailing list > dev at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/dev -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: face-smile-big.png Type: image/png Size: 1580 bytes Desc: not available URL: