The Inbox: Monticello-tobe.729.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Monticello-tobe.729.mcz

commits-2
A new version of Monticello was added to project The Inbox:
http://source.squeak.org/inbox/Monticello-tobe.729.mcz

==================== Summary ====================

Name: Monticello-tobe.729
Author: tobe
Time: 3 October 2020, 12:57:12.690975 pm
UUID: cbe1a05f-97e6-4780-9762-824be701f76a
Ancestors: Monticello-ul.728

Include a dot when matching against extensions

Packages of extension-less formats (e.g. tonel) will otherwise match for e.g. the MCStReader in MCReader>>#canReadFileNamed: if their name happens to end on an "st", e.g. "Roassal3-Sunburst"

=============== Diff against Monticello-ul.728 ===============

Item was changed:
  ----- Method: MCVersionReader class>>canReadFileNamed: (in category 'testing') -----
  canReadFileNamed: fileName
+ ^ (fileName endsWith: '.', self extension)!
- ^ (fileName endsWith: self extension)!


Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: Monticello-tobe.729.mcz

Levente Uzonyi
Hi Tom,

On Sat, 3 Oct 2020, [hidden email] wrote:

> A new version of Monticello was added to project The Inbox:
> http://source.squeak.org/inbox/Monticello-tobe.729.mcz
>
> ==================== Summary ====================
>
> Name: Monticello-tobe.729
> Author: tobe
> Time: 3 October 2020, 12:57:12.690975 pm
> UUID: cbe1a05f-97e6-4780-9762-824be701f76a
> Ancestors: Monticello-ul.728
>
> Include a dot when matching against extensions
>
> Packages of extension-less formats (e.g. tonel) will otherwise match for e.g. the MCStReader in MCReader>>#canReadFileNamed: if their name happens to end on an "st", e.g. "Roassal3-Sunburst"
>
> =============== Diff against Monticello-ul.728 ===============
>
> Item was changed:
>  ----- Method: MCVersionReader class>>canReadFileNamed: (in category 'testing') -----
>  canReadFileNamed: fileName
> + ^ (fileName endsWith: '.', self extension)!
> - ^ (fileName endsWith: self extension)!

This is a reasonable change. But the very same method is implemented by
the superclass MCReader. So, I think this method should be removed and
the change should be applied to MCReader class>>canReadFileNamed:.
What do you think?


Levente

Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: Monticello-tobe.729.mcz

Tom Beckmann
Hi Levente,

good catch! Yes that would indeed be a better solution. Would you like me to submit a new version to the inbox or will you just move this to treated and create an according version in trunk directly? :)

Best,
Tom

On Sun, Oct 4, 2020 at 6:00 PM Levente Uzonyi <[hidden email]> wrote:
Hi Tom,

On Sat, 3 Oct 2020, [hidden email] wrote:

> A new version of Monticello was added to project The Inbox:
> http://source.squeak.org/inbox/Monticello-tobe.729.mcz
>
> ==================== Summary ====================
>
> Name: Monticello-tobe.729
> Author: tobe
> Time: 3 October 2020, 12:57:12.690975 pm
> UUID: cbe1a05f-97e6-4780-9762-824be701f76a
> Ancestors: Monticello-ul.728
>
> Include a dot when matching against extensions
>
> Packages of extension-less formats (e.g. tonel) will otherwise match for e.g. the MCStReader in MCReader>>#canReadFileNamed: if their name happens to end on an "st", e.g. "Roassal3-Sunburst"
>
> =============== Diff against Monticello-ul.728 ===============
>
> Item was changed:
>  ----- Method: MCVersionReader class>>canReadFileNamed: (in category 'testing') -----
>  canReadFileNamed: fileName
> +     ^ (fileName endsWith: '.', self extension)!
> -     ^ (fileName endsWith: self extension)!

This is a reasonable change. But the very same method is implemented by
the superclass MCReader. So, I think this method should be removed and
the change should be applied to MCReader class>>canReadFileNamed:.
What do you think?


Levente



Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: Monticello-tobe.729.mcz

Levente Uzonyi
On Sun, 4 Oct 2020, Tom Beckmann wrote:

> Hi Levente,
>
> good catch! Yes that would indeed be a better solution. Would you like me to submit a new version to the inbox or will you just move this to treated and create an according version in trunk directly? :)

Whichever you prefer. :)


Levente

>
> Best,
> Tom
>
> On Sun, Oct 4, 2020 at 6:00 PM Levente Uzonyi <[hidden email]> wrote:
>       Hi Tom,
>
>       On Sat, 3 Oct 2020, [hidden email] wrote:
>
>       > A new version of Monticello was added to project The Inbox:
>       > http://source.squeak.org/inbox/Monticello-tobe.729.mcz
>       >
>       > ==================== Summary ====================
>       >
>       > Name: Monticello-tobe.729
>       > Author: tobe
>       > Time: 3 October 2020, 12:57:12.690975 pm
>       > UUID: cbe1a05f-97e6-4780-9762-824be701f76a
>       > Ancestors: Monticello-ul.728
>       >
>       > Include a dot when matching against extensions
>       >
>       > Packages of extension-less formats (e.g. tonel) will otherwise match for e.g. the MCStReader in MCReader>>#canReadFileNamed: if their name happens to end on an "st", e.g. "Roassal3-Sunburst"
>       >
>       > =============== Diff against Monticello-ul.728 ===============
>       >
>       > Item was changed:
>       >  ----- Method: MCVersionReader class>>canReadFileNamed: (in category 'testing') -----
>       >  canReadFileNamed: fileName
>       > +     ^ (fileName endsWith: '.', self extension)!
>       > -     ^ (fileName endsWith: self extension)!
>
>       This is a reasonable change. But the very same method is implemented by
>       the superclass MCReader. So, I think this method should be removed and
>       the change should be applied to MCReader class>>canReadFileNamed:.
>       What do you think?
>
>
>       Levente
>
>
>

Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: Monticello-tobe.729.mcz

Tom Beckmann
Then please go ahead and create a new version directly if you don't mind :)
I'm still getting sweaty palms each time Monticello warns me about ancestry while committing...

Thank you!
Tom

On Sun, Oct 4, 2020 at 6:07 PM Levente Uzonyi <[hidden email]> wrote:
On Sun, 4 Oct 2020, Tom Beckmann wrote:

> Hi Levente,
>
> good catch! Yes that would indeed be a better solution. Would you like me to submit a new version to the inbox or will you just move this to treated and create an according version in trunk directly? :)

Whichever you prefer. :)


Levente

>
> Best,
> Tom
>
> On Sun, Oct 4, 2020 at 6:00 PM Levente Uzonyi <[hidden email]> wrote:
>       Hi Tom,
>
>       On Sat, 3 Oct 2020, [hidden email] wrote:
>
>       > A new version of Monticello was added to project The Inbox:
>       > http://source.squeak.org/inbox/Monticello-tobe.729.mcz
>       >
>       > ==================== Summary ====================
>       >
>       > Name: Monticello-tobe.729
>       > Author: tobe
>       > Time: 3 October 2020, 12:57:12.690975 pm
>       > UUID: cbe1a05f-97e6-4780-9762-824be701f76a
>       > Ancestors: Monticello-ul.728
>       >
>       > Include a dot when matching against extensions
>       >
>       > Packages of extension-less formats (e.g. tonel) will otherwise match for e.g. the MCStReader in MCReader>>#canReadFileNamed: if their name happens to end on an "st", e.g. "Roassal3-Sunburst"
>       >
>       > =============== Diff against Monticello-ul.728 ===============
>       >
>       > Item was changed:
>       >  ----- Method: MCVersionReader class>>canReadFileNamed: (in category 'testing') -----
>       >  canReadFileNamed: fileName
>       > +     ^ (fileName endsWith: '.', self extension)!
>       > -     ^ (fileName endsWith: self extension)!
>
>       This is a reasonable change. But the very same method is implemented by
>       the superclass MCReader. So, I think this method should be removed and
>       the change should be applied to MCReader class>>canReadFileNamed:.
>       What do you think?
>
>
>       Levente
>
>
>


Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: Monticello-tobe.729.mcz

Levente Uzonyi
The change is in Monticello-ul.729. Moved Monticello-tobe.729 to the
Treated Inbox.


Levente

On Sun, 4 Oct 2020, Tom Beckmann wrote:

> Then please go ahead and create a new version directly if you don't mind :)
> I'm still getting sweaty palms each time Monticello warns me about ancestry while committing...
>
> Thank you!
> Tom
>
> On Sun, Oct 4, 2020 at 6:07 PM Levente Uzonyi <[hidden email]> wrote:
>       On Sun, 4 Oct 2020, Tom Beckmann wrote:
>
>       > Hi Levente,
>       >
>       > good catch! Yes that would indeed be a better solution. Would you like me to submit a new version to the inbox or will you just move this to treated and create an according version in trunk directly? :)
>
>       Whichever you prefer. :)
>
>
>       Levente
>
>       >
>       > Best,
>       > Tom
>       >
>       > On Sun, Oct 4, 2020 at 6:00 PM Levente Uzonyi <[hidden email]> wrote:
>       >       Hi Tom,
>       >
>       >       On Sat, 3 Oct 2020, [hidden email] wrote:
>       >
>       >       > A new version of Monticello was added to project The Inbox:
>       >       > http://source.squeak.org/inbox/Monticello-tobe.729.mcz
>       >       >
>       >       > ==================== Summary ====================
>       >       >
>       >       > Name: Monticello-tobe.729
>       >       > Author: tobe
>       >       > Time: 3 October 2020, 12:57:12.690975 pm
>       >       > UUID: cbe1a05f-97e6-4780-9762-824be701f76a
>       >       > Ancestors: Monticello-ul.728
>       >       >
>       >       > Include a dot when matching against extensions
>       >       >
>       >       > Packages of extension-less formats (e.g. tonel) will otherwise match for e.g. the MCStReader in MCReader>>#canReadFileNamed: if their name happens to end on an "st", e.g. "Roassal3-Sunburst"
>       >       >
>       >       > =============== Diff against Monticello-ul.728 ===============
>       >       >
>       >       > Item was changed:
>       >       >  ----- Method: MCVersionReader class>>canReadFileNamed: (in category 'testing') -----
>       >       >  canReadFileNamed: fileName
>       >       > +     ^ (fileName endsWith: '.', self extension)!
>       >       > -     ^ (fileName endsWith: self extension)!
>       >
>       >       This is a reasonable change. But the very same method is implemented by
>       >       the superclass MCReader. So, I think this method should be removed and
>       >       the change should be applied to MCReader class>>canReadFileNamed:.
>       >       What do you think?
>       >
>       >
>       >       Levente
>       >
>       >
>       >
>
>
>