Hi Fabrizio,
I saw that you recently committed to squeaksource.com/PetitSQLParser. Please note that the official repository has moved to: http://www.smalltalkhub.com/mc/Moose/PetitSQLParser/main Furthermore, we should move PetitPHPParser and PetitJSParser to STHub as well. Do you agree? Cheers, Doru -- www.tudorgirba.com "Yesterday is a fact. Tomorrow is a possibility. Today is a challenge." _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
I can help if you need.
Stef On Mar 23, 2013, at 9:54 PM, Tudor Girba <[hidden email]> wrote: > Hi Fabrizio, > > I saw that you recently committed to squeaksource.com/PetitSQLParser. Please note that the official repository has moved to: > http://www.smalltalkhub.com/mc/Moose/PetitSQLParser/main > > Furthermore, we should move PetitPHPParser and PetitJSParser to STHub as well. Do you agree? > > Cheers, > Doru > > > -- > www.tudorgirba.com > > "Yesterday is a fact. > Tomorrow is a possibility. > Today is a challenge." > > > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Hi, @Stef: thanks stef. I will surely ask if I will have problems. only one question: Do you have a preferred repo name/strcture or i can create one as it pleases me? Cheers, On Mar 24, 2013 9:38 PM, "stephane ducasse" <[hidden email]> wrote:
I can help if you need. _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Hi,
Thanks Fabrizio. Please put them under the Moose team. I created the following repositories: - http://www.smalltalkhub.com/#!/~Moose/PetitPHPParser - http://www.smalltalkhub.com/#!/~Moose/PetitJSPParser As for PetitSQLParser, please merge the squeaksource changes with the official repository from: http://www.smalltalkhub.com/#!/~Moose/PetitSQLParser For the record, here is the script you can use: sourceGofer := Gofer new squeaksource: 'PetitPHPParser'. pattern := 'PetitPHP*'. repo := MCSmalltalkhubRepository owner: 'Moose' project: 'PetitPHPParser' user: 'XXX' password: 'YYY'. ((sourceGofer allResolved select: [:aPac | pattern match: aPac packageName ]) do: [:each | self crLog: each packageName. sourceGofer package: each packageName. self crLog: each printString. sourceGofer fetch ]). targetGofer := Gofer new. targetGofer repository: repo. (((FileSystem disk workingDirectory / 'package-cache') allFiles select: [:each | (pattern, '.mcz') match: each basename]) groupedBy: [:each | (each base copyUpToLast: $-) ]) keys do: [:name | targetGofer package: name; push] Cheers, Doru On Mar 24, 2013, at 11:03 PM, Fabrizio Perin <[hidden email]> wrote: > Hi, > @Doru: for me it is ok to move those projects. I will do that this week. > > @Stef: thanks stef. I will surely ask if I will have problems. > > only one question: Do you have a preferred repo name/strcture or i can create one as it pleases me? > > Cheers, > fabrizio > On Mar 24, 2013 9:38 PM, "stephane ducasse" <[hidden email]> wrote: > I can help if you need. > > Stef > > On Mar 23, 2013, at 9:54 PM, Tudor Girba <[hidden email]> wrote: > > > Hi Fabrizio, > > > > I saw that you recently committed to squeaksource.com/PetitSQLParser. Please note that the official repository has moved to: > > http://www.smalltalkhub.com/mc/Moose/PetitSQLParser/main > > > > Furthermore, we should move PetitPHPParser and PetitJSParser to STHub as well. Do you agree? > > > > Cheers, > > Doru > > > > > > -- > > www.tudorgirba.com > > > > "Yesterday is a fact. > > Tomorrow is a possibility. > > Today is a challenge." > > > > > > > > > > _______________________________________________ > > Moose-dev mailing list > > [hidden email] > > https://www.iam.unibe.ch/mailman/listinfo/moose-dev > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev -- www.tudorgirba.com "Quality cannot be an afterthought." _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
In reply to this post by Fabrizio Perin-3
On Mar 24, 2013, at 11:03 PM, Fabrizio Perin <[hidden email]> wrote:
Moose/... Moose/... Stef _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
I already created the repositories, as mentioned in the other mail :) Doru On Mon, Mar 25, 2013 at 9:00 AM, stephane ducasse <[hidden email]> wrote:
"Every thing has its own flow"
_______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
In reply to this post by Tudor Girba-2
On Mar 25, 2013, at 7:22 AM, Tudor Girba <[hidden email]> wrote: > Hi, > > Thanks Fabrizio. > > Please put them under the Moose team. I created the following repositories: > - http://www.smalltalkhub.com/#!/~Moose/PetitPHPParser > - http://www.smalltalkhub.com/#!/~Moose/PetitJSPParser > > As for PetitSQLParser, please merge the squeaksource changes with the official repository from: > http://www.smalltalkhub.com/#!/~Moose/PetitSQLParser > > For the record, here is the script you can use: > > sourceGofer := Gofer new squeaksource: 'PetitPHPParser'. > pattern := 'PetitPHP*'. > repo := MCSmalltalkhubRepository > owner: 'Moose' > project: 'PetitPHPParser' > user: 'XXX' > password: 'YYY'. > > pattern := 'PetitPHP*'. Pay attention that with this pattern you will miss the ConfigurationOf > > ((sourceGofer allResolved select: [:aPac | pattern match: aPac packageName ]) > do: [:each | > self crLog: each packageName. > sourceGofer package: each packageName. > self crLog: each printString. > sourceGofer fetch ]). > targetGofer := Gofer new. > targetGofer repository: repo. > (((FileSystem disk workingDirectory / 'package-cache') > allFiles select: [:each | (pattern, '.mcz') match: each basename]) > groupedBy: [:each | (each base copyUpToLast: $-) ]) > keys do: [:name | > targetGofer package: name; push] > > Cheers, > Doru > > > > On Mar 24, 2013, at 11:03 PM, Fabrizio Perin <[hidden email]> wrote: > >> Hi, >> @Doru: for me it is ok to move those projects. I will do that this week. >> >> @Stef: thanks stef. I will surely ask if I will have problems. >> >> only one question: Do you have a preferred repo name/strcture or i can create one as it pleases me? >> >> Cheers, >> fabrizio >> On Mar 24, 2013 9:38 PM, "stephane ducasse" <[hidden email]> wrote: >> I can help if you need. >> >> Stef >> >> On Mar 23, 2013, at 9:54 PM, Tudor Girba <[hidden email]> wrote: >> >>> Hi Fabrizio, >>> >>> I saw that you recently committed to squeaksource.com/PetitSQLParser. Please note that the official repository has moved to: >>> http://www.smalltalkhub.com/mc/Moose/PetitSQLParser/main >>> >>> Furthermore, we should move PetitPHPParser and PetitJSParser to STHub as well. Do you agree? >>> >>> Cheers, >>> Doru >>> >>> >>> -- >>> www.tudorgirba.com >>> >>> "Yesterday is a fact. >>> Tomorrow is a possibility. >>> Today is a challenge." >>> >>> >>> >>> >>> _______________________________________________ >>> Moose-dev mailing list >>> [hidden email] >>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >> >> >> _______________________________________________ >> Moose-dev mailing list >> [hidden email] >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >> _______________________________________________ >> Moose-dev mailing list >> [hidden email] >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev > > -- > www.tudorgirba.com > > "Quality cannot be an afterthought." > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Hi, i will check on petit sql this evening. Cheers, On Mar 27, 2013 8:05 AM, "stephane ducasse" <[hidden email]> wrote:
_______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
excellent!
Stef On Mar 27, 2013, at 8:17 AM, Fabrizio Perin <[hidden email]> wrote:
_______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Free forum by Nabble | Edit this page |