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."
I can help if you need.
Stef
On Mar 23, 2013, at 9:54 PM, Tudor Girba tudor@tudorgirba.com 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 Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
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" stephane.ducasse@free.fr wrote:
I can help if you need.
Stef
On Mar 23, 2013, at 9:54 PM, Tudor Girba tudor@tudorgirba.com 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 Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch 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 fabrizio.perin@gmail.com 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" stephane.ducasse@free.fr wrote: I can help if you need.
Stef
On Mar 23, 2013, at 9:54 PM, Tudor Girba tudor@tudorgirba.com 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 Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Quality cannot be an afterthought."
On Mar 25, 2013, at 7:22 AM, Tudor Girba tudor@tudorgirba.com 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 fabrizio.perin@gmail.com 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" stephane.ducasse@free.fr wrote: I can help if you need.
Stef
On Mar 23, 2013, at 9:54 PM, Tudor Girba tudor@tudorgirba.com 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 Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Quality cannot be an afterthought."
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Hi, yesterday evening i pushed petit php and js. I also added the configurations and made a new baseline for pharo 2. Thanks a lot for the script Doru, it was really handy. @stef: i added configurations by hand :)
i will check on petit sql this evening.
Cheers, fabrizio On Mar 27, 2013 8:05 AM, "stephane ducasse" stephane.ducasse@free.fr wrote:
On Mar 25, 2013, at 7:22 AM, Tudor Girba tudor@tudorgirba.com 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 fabrizio.perin@gmail.com
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" stephane.ducasse@free.fr
wrote:
I can help if you need.
Stef
On Mar 23, 2013, at 9:54 PM, Tudor Girba tudor@tudorgirba.com 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 Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Quality cannot be an afterthought."
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
excellent!
Stef
On Mar 27, 2013, at 8:17 AM, Fabrizio Perin fabrizio.perin@gmail.com wrote:
Hi, yesterday evening i pushed petit php and js. I also added the configurations and made a new baseline for pharo 2. Thanks a lot for the script Doru, it was really handy. @stef: i added configurations by hand :)
i will check on petit sql this evening.
Cheers, fabrizio
On Mar 27, 2013 8:05 AM, "stephane ducasse" stephane.ducasse@free.fr wrote:
On Mar 25, 2013, at 7:22 AM, Tudor Girba tudor@tudorgirba.com 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 fabrizio.perin@gmail.com 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" stephane.ducasse@free.fr wrote: I can help if you need.
Stef
On Mar 23, 2013, at 9:54 PM, Tudor Girba tudor@tudorgirba.com 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 Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Quality cannot be an afterthought."
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
On Mar 24, 2013, at 11:03 PM, Fabrizio Perin fabrizio.perin@gmail.com 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?
Moose/PetitsqlParser Moose/... Moose/...
Stef
I already created the repositories, as mentioned in the other mail :)
Doru
On Mon, Mar 25, 2013 at 9:00 AM, stephane ducasse stephane.ducasse@free.frwrote:
On Mar 24, 2013, at 11:03 PM, Fabrizio Perin fabrizio.perin@gmail.com 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?
Moose/PetitsqlParser Moose/... Moose/...
Stef
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev