Pharo-dev
By thread
pharo-dev@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
September 2015
- 1010 messages
Re: [Pharo-dev] size of MCbrowser should be proportional
by Peter Uhnák
>
> The new, large size, makes it a very scary tool. That many packages? That
> many repositories?
>
Pharo 4 image has just 2 external repos (Pharo + PharoInbox),
Pharo 5 has 19 fucking repositories.
I don't want to generalize, but how often does an end user care about any
of them?
For example the only time I interact with Pharo or PharoInbox is when I am
fixing issues and I do that from clean image.
So my proposal:
Why not hide them? There could be a checkbox "[ ] Show system repositories"
(default unchecked).
That way the window can be much much smaller and users will see what is
important for them.
Peter
Sept. 3, 2015
Re: [Pharo-dev] block brace alignment (Re: feedback from J Brant)
by Yuriy Tymchuk
I also code in the same way as Svenâs example. For more advanced things, why not to have:
self xxx
ifTrue:
[ self bla.
self foo
or
self xxx
ifTrue: [ self bla.
self foo
this are the interesting things to me. I guess I should read Kent Beck's formatting rules :) but one more thing that I like to have is
anObject
a: param1;
cascading: param2;
message: param3;
formatted: param4
Although there are some issues around it.
Uko
> On 03 Sep 2015, at 07:29, Sven Van Caekenberghe <sven(a)stfx.eu> wrote:
>
> And what happened to the plain normal (in my mind/experience) ?
>
> self xxx
> ifTrue: [
> self bla.
> self foo ].
>
> I would say that is the most common one I've seen in the image. And it is how the old formatter worked.
>
>> On 03 Sep 2015, at 03:39, Eliot Miranda <eliot.miranda(a)gmail.com> wrote:
>>
>> Hi Ben,
>>
>> have you read Kent Beck's formatting rules? I wish we would adhere to these in our formatters. And I wish he would put the formatting rules in the public domain on the web (Kent?). He actually justifies the rules he chooses; they're not just personal preferences. And IMO they produce eleant, readable Smalltalk. I have to say your block formatting below is horrible. Blocks are blocks. [ & ] are /not/ the same as { & } in C. [...] define an *object*, not merely delimit syntax. As such any good Smalltalk format will emphasize the objectness of blocks. And IMNERHO that is to make them rectangles as in
>>
>> self ifIWantedYouToWriteC ifTrue:
>> [self useABloodyCCompiler.
>> self useCCMinusPToMakeSenseOfTheDamageDoneByTheCPreProcessor]
>>
>>
>> On Wed, Sep 2, 2015 at 6:23 PM, Ben Coman <btc(a)openinworld.com> wrote:
>> On Thu, Sep 3, 2015 at 2:28 AM, stepharo <stepharo(a)free.fr> wrote:
>>>
>>> I do not really like all the formattings of kent. Because sometimes it just
>>> does not work.
>>> But this is why we ask franck (an interns to start to have a look).
>>>
>>> For example I do not like
>>>
>>> self xxx
>>> ifTrue:
>>> [
>>> self bla
>>> self foo.
>>
>> Agreed. Unneccessary waste of a line.
>>
>>> in the current default formatter.
>>> and I prefer
>>>
>>> self xxx
>>> ifTrue: [ self bla.
>>> self foo
>>> But here the problem is that the self foo is not tab aligned because
>>> ifTrue: [
>>>
>>> self xxx
>>> ifTrue:
>>> [ self bla.
>>> self foo
>>> So may be this one is a nice compromise
>>
>> Not quite there. The "self bla" is still not actually vertically aligned.
>>
>>> I think that we should change some settings. In fact in alpha things are
>>> there to evolve until the release :)
>>
>> I like...
>> self xxx
>> ifTrue:
>> [ self bla.
>> self foo.
>> ].
>>
>> for three reasons:
>> * the first statement of the block is vertically aligned with the rest
>> * vertical alignment of paired brackets makes visual matching *simple*
>> * the vertical whitespace enforced by the closing bracket on its
>> own visually groups blocks.
>>
>> Now some people don't like the closing brace on its own because they
>> prefer code density. So maybe this...
>>
>> self xxx
>> ifTrue:
>> [ self bla.
>> self foo. ]
>> ifFalse:
>> [ self baa.
>> self moo. ].
>>
>> But still I prefer...
>>
>> self xxx
>> ifTrue:
>> [ self bla.
>> self foo.
>> ]
>> ifFalse:
>> [ self baa.
>> self moo.
>> ].
>>
>> cheers -ben
>>
>>
>>
>>
>> --
>> _,,,^..^,,,_
>> best, Eliot
>
>
Sept. 3, 2015
Re: [Pharo-dev] size of MCbrowser should be proportional
by Thierry Goubier
2015-09-03 10:29 GMT+02:00 Esteban Lorenzano <estebanlm(a)gmail.com>:
>
> On 03 Sep 2015, at 10:03, Nicolai Hess <nicolaihess(a)web.de> wrote:
>
>
>
> 2015-09-03 7:56 GMT+02:00 Esteban Lorenzano <estebanlm(a)gmail.com>:
>
>> +1
>>
>> I also submitted an issue about MCBrowser not taking into account the
>> size of the world window (and then appearing with part of it hidden out of
>> the visible area)
>>
>
>
> That one is fixed:
> 16401
> <https://pharo.fogbugz.com/f/cases/16401/opening-monticello-window-does-not-…>
> opening monticello window does not respect world size
>
>
> heh⦠I missed that one :)
>
>
>
> and for "size of MCbrowser should be proportional":
>
> We don't have any other windows with a size proportional to the display
> size.
> Why should only MCBrowser behave like that? (Nautilus uses the same size).
>
> And what would be a good size, max. half the screen?
>
> And if we want a display screen dependent window size, this should be done
> by
> RealEstateAgent, and not for every single tool.
>
>
> I really donât know if it should be proportional. I has never been like
> that. What I do know is that now is too big (while before was to small) :)
> So maybe best is to play a bit with the sizes⦠it was small, now is big,
> lets find something in the middle :)
>
The previous size, small, made it not too scary.
The new, large size, makes it a very scary tool. That many packages? That
many repositories?
Ok, that was there before, but in XXL size, it becomes a bit too obvious
there is a lot in there.
Thierry
>
> Esteban
>
>
>
>
>
>
>> > On 02 Sep 2015, at 10:07, stepharo <stepharo(a)free.fr> wrote:
>> >
>> > Hi guys
>> >
>> > now when I open MCBrowser it gets 80% of my window.
>> > So this is good to make it larger but it should be proportional to the
>> actual size.
>> >
>> >
>> https://pharo.fogbugz.com/f/cases/16451/MCBrowser-default-size-should-propo…
>> > Could the person that originally changed it fix it?
>> >
>> > Stef
>> >
>>
>>
>>
>
>
Sept. 3, 2015
Re: [Pharo-dev] size of MCbrowser should be proportional
by Esteban Lorenzano
> On 03 Sep 2015, at 10:03, Nicolai Hess <nicolaihess(a)web.de> wrote:
>
>
>
> 2015-09-03 7:56 GMT+02:00 Esteban Lorenzano <estebanlm(a)gmail.com <mailto:estebanlm@gmail.com>>:
> +1
>
> I also submitted an issue about MCBrowser not taking into account the size of the world window (and then appearing with part of it hidden out of the visible area)
>
>
> That one is fixed:
> 16401 <https://pharo.fogbugz.com/f/cases/16401/opening-monticello-window-does-not-…> opening monticello window does not respect world size
heh⦠I missed that one :)
>
>
> and for "size of MCbrowser should be proportional":
>
> We don't have any other windows with a size proportional to the display size.
> Why should only MCBrowser behave like that? (Nautilus uses the same size).
>
> And what would be a good size, max. half the screen?
>
> And if we want a display screen dependent window size, this should be done by
> RealEstateAgent, and not for every single tool.
I really donât know if it should be proportional. I has never been like that. What I do know is that now is too big (while before was to small) :)
So maybe best is to play a bit with the sizes⦠it was small, now is big, lets find something in the middle :)
Esteban
>
>
>
>
>
> > On 02 Sep 2015, at 10:07, stepharo <stepharo(a)free.fr <mailto:stepharo@free.fr>> wrote:
> >
> > Hi guys
> >
> > now when I open MCBrowser it gets 80% of my window.
> > So this is good to make it larger but it should be proportional to the actual size.
> >
> > https://pharo.fogbugz.com/f/cases/16451/MCBrowser-default-size-should-propo… <https://pharo.fogbugz.com/f/cases/16451/MCBrowser-default-size-should-propo…>
> > Could the person that originally changed it fix it?
> >
> > Stef
> >
>
>
>
Sept. 3, 2015
Re: [Pharo-dev] size of MCbrowser should be proportional
by Nicolai Hess
2015-09-03 7:56 GMT+02:00 Esteban Lorenzano <estebanlm(a)gmail.com>:
> +1
>
> I also submitted an issue about MCBrowser not taking into account the size
> of the world window (and then appearing with part of it hidden out of the
> visible area)
>
That one is fixed:
16401
<https://pharo.fogbugz.com/f/cases/16401/opening-monticello-window-does-not-…>
opening monticello window does not respect world size
and for "size of MCbrowser should be proportional":
We don't have any other windows with a size proportional to the display
size.
Why should only MCBrowser behave like that? (Nautilus uses the same size).
And what would be a good size, max. half the screen?
And if we want a display screen dependent window size, this should be done
by
RealEstateAgent, and not for every single tool.
> > On 02 Sep 2015, at 10:07, stepharo <stepharo(a)free.fr> wrote:
> >
> > Hi guys
> >
> > now when I open MCBrowser it gets 80% of my window.
> > So this is good to make it larger but it should be proportional to the
> actual size.
> >
> >
> https://pharo.fogbugz.com/f/cases/16451/MCBrowser-default-size-should-propo…
> > Could the person that originally changed it fix it?
> >
> > Stef
> >
>
>
>
Sept. 3, 2015
Re: [Pharo-dev] Garage-OpenDBX does not load on Pharo 50 because it uses Timestamp
by Ben Coman
On Thu, Sep 3, 2015 at 1:33 PM, Sven Van Caekenberghe <sven(a)stfx.eu> wrote:
>
>> On 03 Sep 2015, at 06:01, H. Hirzel <hannes.hirzel(a)gmail.com> wrote:
>>
>> On 9/2/15, Sven Van Caekenberghe <sven(a)stfx.eu> wrote:
>>> But Timestamp was already removed completely from 4.0, why re-add it, even
>>> deprecated ?
>>
>> Because it will be added in a compatibility layer package which is
>> only loaded by packages which need it. There might be other things in
>> the Pharo 5/4 compatibility package.
>
> But still, if external packages do load that code, they will never have to change, and the class will remain in the image forever.
>
> It is like when you load certain Squeak packages that are 'ported' with compatibility layers to Pharo: they just add again all the methods that we tried to clean up.
Unfortunately this is a pragmatic engineering approach to porting. I
haven't done a lot of this in practice, but I expect much of the
effort in replacing deprecated methods in applications is ensuring
that the replacement *really* is functionally equivalent. So the
quickest route is reintegrating those methods. The downside is that:
* When reading existing code, use of deprecated method is not obvious.
* Deprecated methods can be accidently reused for new code.
So just brainstorming... perhaps these downsides can be addressed by a
deprecation-compatability package that makes use of it more explicit
by prepending each deprecated method with "deprecatedNN", e.g...
SomeClass>>xyz
self deprecated: 'Blahblah' on: 'April 2015' in: #Pharo4.0.
self deprecated40xyz.
SomeClass>>deprecated40xyz
"original code or call to replacement code..."
So this splits porting into a few steps.
1. Loading the deprecation-compatability package gives
*functional-equivalence* with Deprecation Warnings turned off.
2. Gradually (manually or with rewrite tool) replacing #xyz calls with
#deprecated40xyz calls, results in *functionally-equivalent* but
*ugly* and obvious code.
3. Gradually migrate #deprecated40xyz calls to whatever the final
replacement is.
4. Easy to search for remaining users of #deprecated40 and when none are left
(btw, is there a deprecation-compatability package/repository
somewhere? I couldn't see one on Smalltalkhub)
cheers -ben
>> --HH
>>
>>> I am sure many external packages are already modified, I know I did it for
>>> mine.
>>
>>>> On 02 Sep 2015, at 13:19, Marcus Denker <marcus.denker(a)inria.fr> wrote:
>>>>
>>>>
>>>>> On 02 Sep 2015, at 12:32, stepharo <stepharo(a)free.fr> wrote:
>>>>>
>>>>> Hi guille
>>>>>
>>>>> there is not stress. I just wanted to let you know.
>>>>> I was wondering if just subclassing DateAndTime would not be enough for
>>>>> now.
>>>>
>>>> Yes, as far as I remember Timestamp was just an empy subclass.
>>>>
>>>> We could:
>>>>
>>>> -> add it back to Deprecated50 or maybe even to a âCompatibilityâ package
>>>> -> Write a Quality Check rule.
>>>>
>>>>> I will go back to code with Pharo 40
>>>>>
>>>>> stef
>>>>>
>>>>> Le 2/9/15 10:30, Guillermo Polito a écrit :
>>>>>> If somebody can check it and fix it it would be good :). I've just
>>>>>> started my new job and my evenings are busy looking for an apartment or
>>>>>> staying in a hostel without a proper internet connection...
>>>>>>
>>>>>> If not, I think we can wait a bit. The first step should be enabling CI
>>>>>> jobs for pharo5. Also, I do not think the intersection between 'people
>>>>>> using garage opendbx' and 'people using pharo5' is that big to justify a
>>>>>> rush.
>>>>>>
>>>>>> Guille
>>>>>>
>>>>>> El mié., 2 de sept. de 2015 a la(s) 10:12 a. m., stepharo
>>>>>> <stepharo(a)free.fr> escribió:
>>>>>> for your info...
>>>>>>
>>>>>> Garage-OpenDBX does not load on Pharo 50 because it uses Timestamp
>>>>>>
>>>>>> Stef
>>>>>>
>>>>>
>>>>
>>>
>>>
>>>
>>
>
>
Sept. 3, 2015
Re: [Pharo-dev] block brace alignment (Re: feedback from J Brant)
by Peter Uhnák
>
> I like...
> self xxx
> ifTrue:
> [ self bla.
> self foo.
> ].
Check the settings. It's called "align brackets" I think.
He actually justifies the rules he chooses; they're not just personal
> preferences.
This is thin ice. The justifications can still be based on personal
preferences. Imagine tabs vs spaces flame wars, where both side do have
valid arguments and you pick side based on what is more important to you.
Now with the new Rubric and BlueInk you can automatically have methods
formatted for you, so it doesn't matter as much what other people use. But
generally agreement is a good thing.
And what happened to the plain normal (in my mind/experience) ?
> self xxx
> ifTrue: [
> self bla.
> self foo ].
I'm pretty sure this is a bug; I've reported it few days ago.
https://pharo.fogbugz.com/f/cases/edit/16422/BlueInk-Formatter-breaks-line-…
And there is settings for that also.
Peter
On Thu, Sep 3, 2015 at 7:29 AM, Sven Van Caekenberghe <sven(a)stfx.eu> wrote:
> And what happened to the plain normal (in my mind/experience) ?
>
> self xxx
> ifTrue: [
> self bla.
> self foo ].
>
> I would say that is the most common one I've seen in the image. And it is
> how the old formatter worked.
>
> > On 03 Sep 2015, at 03:39, Eliot Miranda <eliot.miranda(a)gmail.com> wrote:
> >
> > Hi Ben,
> >
> > have you read Kent Beck's formatting rules? I wish we would adhere
> to these in our formatters. And I wish he would put the formatting rules
> in the public domain on the web (Kent?). He actually justifies the rules
> he chooses; they're not just personal preferences. And IMO they produce
> eleant, readable Smalltalk. I have to say your block formatting below is
> horrible. Blocks are blocks. [ & ] are /not/ the same as { & } in C.
> [...] define an *object*, not merely delimit syntax. As such any good
> Smalltalk format will emphasize the objectness of blocks. And IMNERHO that
> is to make them rectangles as in
> >
> > self ifIWantedYouToWriteC ifTrue:
> > [self useABloodyCCompiler.
> > self useCCMinusPToMakeSenseOfTheDamageDoneByTheCPreProcessor]
> >
> >
> > On Wed, Sep 2, 2015 at 6:23 PM, Ben Coman <btc(a)openinworld.com> wrote:
> > On Thu, Sep 3, 2015 at 2:28 AM, stepharo <stepharo(a)free.fr> wrote:
> > >
> > > I do not really like all the formattings of kent. Because sometimes it
> just
> > > does not work.
> > > But this is why we ask franck (an interns to start to have a look).
> > >
> > > For example I do not like
> > >
> > > self xxx
> > > ifTrue:
> > > [
> > > self bla
> > > self foo.
> >
> > Agreed. Unneccessary waste of a line.
> >
> > > in the current default formatter.
> > > and I prefer
> > >
> > > self xxx
> > > ifTrue: [ self bla.
> > > self foo
> > > But here the problem is that the self foo is not tab aligned
> because
> > > ifTrue: [
> > >
> > > self xxx
> > > ifTrue:
> > > [ self bla.
> > > self foo
> > > So may be this one is a nice compromise
> >
> > Not quite there. The "self bla" is still not actually vertically aligned.
> >
> > > I think that we should change some settings. In fact in alpha things
> are
> > > there to evolve until the release :)
> >
> > I like...
> > self xxx
> > ifTrue:
> > [ self bla.
> > self foo.
> > ].
> >
> > for three reasons:
> > * the first statement of the block is vertically aligned with the
> rest
> > * vertical alignment of paired brackets makes visual matching
> *simple*
> > * the vertical whitespace enforced by the closing bracket on its
> > own visually groups blocks.
> >
> > Now some people don't like the closing brace on its own because they
> > prefer code density. So maybe this...
> >
> > self xxx
> > ifTrue:
> > [ self bla.
> > self foo. ]
> > ifFalse:
> > [ self baa.
> > self moo. ].
> >
> > But still I prefer...
> >
> > self xxx
> > ifTrue:
> > [ self bla.
> > self foo.
> > ]
> > ifFalse:
> > [ self baa.
> > self moo.
> > ].
> >
> > cheers -ben
> >
> >
> >
> >
> > --
> > _,,,^..^,,,_
> > best, Eliot
>
>
>
Sept. 3, 2015
[pharo-project/pharo-core]
by GitHub
Branch: refs/tags/50301
Home: https://github.com/pharo-project/pharo-core
Sept. 3, 2015
[pharo-project/pharo-core] 04ba21: 50301
by GitHub
Branch: refs/heads/5.0
Home: https://github.com/pharo-project/pharo-core
Commit: 04ba21efe60fcec9543080ea3ef277e53071be12
https://github.com/pharo-project/pharo-core/commit/04ba21efe60fcec9543080ea…
Author: Jenkins Build Server <board(a)pharo-project.org>
Date: 2015-09-03 (Thu, 03 Sep 2015)
Changed paths:
A Compression-Tests.package/ZipArchiveTest.class/README.md
A Compression-Tests.package/ZipArchiveTest.class/definition.st
A Compression-Tests.package/ZipArchiveTest.class/instance/tests/setUp.st
A Compression-Tests.package/ZipArchiveTest.class/instance/tests/tearDown.st
A Compression-Tests.package/ZipArchiveTest.class/instance/tests/testAddNonExistentFile.st
A Compression-Tests.package/ZipArchiveTest.class/instance/tests/testCreateWithRelativeNames.st
A Compression-Tests.package/ZipArchiveTest.class/instance/tests/testDate29Feb2000.st
A Compression-Tests.package/ZipArchiveTest.class/instance/tests/testFilePermissions.st
A Compression-Tests.package/ZipArchiveTest.class/instance/tests/testParseSqueakZipTimestamp.st
A Compression-Tests.package/ZipArchiveTest.class/instance/tests/testSetLastModification.st
A Compression-Tests.package/ZipArchiveTest.class/instance/tests/testZip.st
A Compression-Tests.package/ZipCrcTests.class/README.md
A Compression-Tests.package/ZipCrcTests.class/definition.st
A Compression-Tests.package/ZipCrcTests.class/instance/tests/testInvalidGZipCrc.st
A Compression-Tests.package/ZipCrcTests.class/instance/tests/testInvalidZLibCrc.st
A Compression-Tests.package/ZipCrcTests.class/instance/tests/testInvalidZipCrc.st
A Compression-Tests.package/ZipCrcTests.class/instance/tests/testMissingGZipCrc.st
A Compression-Tests.package/ZipCrcTests.class/instance/tests/testMissingZLibCrc.st
A Compression-Tests.package/ZipCrcTests.class/instance/tests/testMissingZipCrc.st
A Compression-Tests.package/ZipCrcTests.class/instance/tests/testValidGZipCrc.st
A Compression-Tests.package/ZipCrcTests.class/instance/tests/testValidZLibCrc.st
A Compression-Tests.package/ZipCrcTests.class/instance/tests/testValidZipCrc.st
A Compression-Tests.package/ZipWriteStreamTests.class/README.md
A Compression-Tests.package/ZipWriteStreamTests.class/definition.st
A Compression-Tests.package/ZipWriteStreamTests.class/instance/tests/testEmptyStrings.st
R CompressionTests.package/ZipArchiveTest.class/README.md
R CompressionTests.package/ZipArchiveTest.class/definition.st
R CompressionTests.package/ZipArchiveTest.class/instance/tests/setUp.st
R CompressionTests.package/ZipArchiveTest.class/instance/tests/tearDown.st
R CompressionTests.package/ZipArchiveTest.class/instance/tests/testAddNonExistentFile.st
R CompressionTests.package/ZipArchiveTest.class/instance/tests/testCreateWithRelativeNames.st
R CompressionTests.package/ZipArchiveTest.class/instance/tests/testDate29Feb2000.st
R CompressionTests.package/ZipArchiveTest.class/instance/tests/testFilePermissions.st
R CompressionTests.package/ZipArchiveTest.class/instance/tests/testParseSqueakZipTimestamp.st
R CompressionTests.package/ZipArchiveTest.class/instance/tests/testSetLastModification.st
R CompressionTests.package/ZipArchiveTest.class/instance/tests/testZip.st
R CompressionTests.package/ZipCrcTests.class/README.md
R CompressionTests.package/ZipCrcTests.class/definition.st
R CompressionTests.package/ZipCrcTests.class/instance/tests/testInvalidGZipCrc.st
R CompressionTests.package/ZipCrcTests.class/instance/tests/testInvalidZLibCrc.st
R CompressionTests.package/ZipCrcTests.class/instance/tests/testInvalidZipCrc.st
R CompressionTests.package/ZipCrcTests.class/instance/tests/testMissingGZipCrc.st
R CompressionTests.package/ZipCrcTests.class/instance/tests/testMissingZLibCrc.st
R CompressionTests.package/ZipCrcTests.class/instance/tests/testMissingZipCrc.st
R CompressionTests.package/ZipCrcTests.class/instance/tests/testValidGZipCrc.st
R CompressionTests.package/ZipCrcTests.class/instance/tests/testValidZLibCrc.st
R CompressionTests.package/ZipCrcTests.class/instance/tests/testValidZipCrc.st
R CompressionTests.package/ZipWriteStreamTests.class/README.md
R CompressionTests.package/ZipWriteStreamTests.class/definition.st
R CompressionTests.package/ZipWriteStreamTests.class/instance/tests/testEmptyStrings.st
A FreeType-Tests.package/FreeTypeCacheTest.class/README.md
A FreeType-Tests.package/FreeTypeCacheTest.class/definition.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/private/validateCollections_.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/private/validateSizes_.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/running/setUp.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testConstants.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testEntriesRemovedFIFO.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testFailedGet.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testFreeTypeCacheEntry.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testInstanceInitialization.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testMaximumSizeRespectedOnIfAbsentPut.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testMaximumSizeRespectedOnPut.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testNormalGetIfAbsentPut.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testNormalGetIfAbsentPutTwice.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testNormalGetIfAbsentPutTwiceIntoNonEmptyCache.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testNormalPutGet.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testNormalPutGetTwice.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testNormalPutGetWidth.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testPutSameElementTwice.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testRemoveAll.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testRemoveAllForFont.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testRemoveAllForType.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testReport.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testSetMaximumSize.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testSetMaximumSizeGrow.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testSetMaximumSizeShrink.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testSetMaximumSizeUnbounded.st
A FreeType-Tests.package/FreeTypeCacheTest.class/instance/tests/testSingleton.st
R FreeTypeTests.package/FreeTypeCacheTest.class/README.md
R FreeTypeTests.package/FreeTypeCacheTest.class/definition.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/private/validateCollections_.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/private/validateSizes_.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/running/setUp.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testConstants.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testEntriesRemovedFIFO.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testFailedGet.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testFreeTypeCacheEntry.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testInstanceInitialization.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testMaximumSizeRespectedOnIfAbsentPut.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testMaximumSizeRespectedOnPut.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testNormalGetIfAbsentPut.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testNormalGetIfAbsentPutTwice.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testNormalGetIfAbsentPutTwiceIntoNonEmptyCache.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testNormalPutGet.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testNormalPutGetTwice.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testNormalPutGetWidth.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testPutSameElementTwice.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testRemoveAll.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testRemoveAllForFont.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testRemoveAllForType.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testReport.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testSetMaximumSize.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testSetMaximumSizeGrow.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testSetMaximumSizeShrink.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testSetMaximumSizeUnbounded.st
R FreeTypeTests.package/FreeTypeCacheTest.class/instance/tests/testSingleton.st
A Morphic-Tests.package/CircleMorphTest.class/README.md
A Morphic-Tests.package/CircleMorphTest.class/definition.st
A Morphic-Tests.package/CircleMorphTest.class/instance/running/setUp.st
A Morphic-Tests.package/LayoutFrameTest.class/README.md
A Morphic-Tests.package/LayoutFrameTest.class/definition.st
A Morphic-Tests.package/LayoutFrameTest.class/instance/tests - conversion/testAsLayoutFrame.st
A Morphic-Tests.package/LayoutFrameTest.class/instance/tests/testInset.st
A Morphic-Tests.package/LayoutFrameTest.class/instance/tests/testLeftTopAligned.st
A Morphic-Tests.package/LayoutFrameTest.class/instance/tests/testRightBottomQuadrant.st
A Morphic-Tests.package/LayoutFrameTest.class/instance/tests/testSpaceFill.st
A Morphic-Tests.package/LayoutFrameTest.class/instance/tests/testTransform.st
A Morphic-Tests.package/LayoutFrameTest.class/instance/tests/testTransformReturnASubArea.st
A Morphic-Tests.package/LayoutFrameTest.class/instance/tests/testTransformReturnEmptyRectangleWhenNotPossibleToPlace.st
A Morphic-Tests.package/MCPTest.class/README.md
A Morphic-Tests.package/MCPTest.class/definition.st
A Morphic-Tests.package/MCPTest.class/instance/constants/defaultBounds.st
A Morphic-Tests.package/MCPTest.class/instance/constants/defaultTop.st
A Morphic-Tests.package/MCPTest.class/instance/tests/testTop.st
A Morphic-Tests.package/MorphTest.class/README.md
A Morphic-Tests.package/MorphTest.class/definition.st
A Morphic-Tests.package/MorphTest.class/instance/running/setUp.st
A Morphic-Tests.package/MorphTest.class/instance/running/tearDown.st
A Morphic-Tests.package/MorphTest.class/instance/testing - classification/testIsMorph.st
A Morphic-Tests.package/MorphTest.class/instance/testing - geometry/testBoundingBoxOfSubmorphs.st
A Morphic-Tests.package/MorphTest.class/instance/testing - geometry/testExtent.st
A Morphic-Tests.package/MorphTest.class/instance/testing - initialization/testOpenInWorld.st
A Morphic-Tests.package/MorphTest.class/instance/testing - into%2Foutof world/testIntoWorldCollapseOutOfWorld.st
A Morphic-Tests.package/MorphTest.class/instance/testing - into%2Foutof world/testIntoWorldDeleteOutOfWorld.st
A Morphic-Tests.package/MorphTest.class/instance/testing - into%2Foutof world/testIntoWorldTransferToNewGuy.st
A Morphic-Tests.package/MorphTreeMorphTests.class/README.md
A Morphic-Tests.package/MorphTreeMorphTests.class/definition.st
A Morphic-Tests.package/MorphTreeMorphTests.class/instance/tests/testLastClickedMorphSetUponUpdateList.st
A Morphic-Tests.package/MorphTreeMorphTests.class/instance/tests/testLeakingSelectionsOnUpdate.st
A Morphic-Tests.package/MorphTreeMorphTests.class/instance/tests/testMaintainingSelectionsOnUpdate.st
A Morphic-Tests.package/MorphTreeMorphTests.class/instance/tests/testUpdatingSelectionsOnUpdate.st
A Morphic-Tests.package/MorphTreeMorphTests.class/instance/tests/testUpdatingSelectionsOnUpdateWithRemoval.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/README.md
A Morphic-Tests.package/MorphicEventHandlerTest.class/definition.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/instance/running/setUp.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/instance/running/tearDown.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/instance/tests-events/testMouseEnterDraggingFromMorph.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/instance/tests-events/testMouseEnterFromMorph.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/instance/tests-events/testMouseLeaveFromMorph.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/instance/tests/testClickFromMorph.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/instance/tests/testDoubleClickFromMorph.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/instance/tests/testDoubleClickTimeoutFromMorph.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/instance/tests/testKeyStrokeFromMorph.st
A Morphic-Tests.package/MorphicEventHandlerTest.class/instance/tests/testTwoEventHandlersAreAttached.st
A Morphic-Tests.package/MorphicUIBugTest.class/README.md
A Morphic-Tests.package/MorphicUIBugTest.class/definition.st
A Morphic-Tests.package/MorphicUIBugTest.class/instance/running/setUp.st
A Morphic-Tests.package/MorphicUIBugTest.class/instance/running/tearDown.st
A Morphic-Tests.package/PaginatedMorphTreeMorphTests.class/README.md
A Morphic-Tests.package/PaginatedMorphTreeMorphTests.class/definition.st
A Morphic-Tests.package/PaginatedMorphTreeMorphTests.class/instance/tests/testPager.st
A Morphic-Tests.package/PolygonMorphTest.class/README.md
A Morphic-Tests.package/PolygonMorphTest.class/definition.st
A Morphic-Tests.package/PolygonMorphTest.class/instance/tests/testBoundsBug1035.st
A Morphic-Tests.package/RenderBugsTest.class/README.md
A Morphic-Tests.package/RenderBugsTest.class/definition.st
A Morphic-Tests.package/RenderBugsTest.class/instance/private/long.st
A Morphic-Tests.package/RenderBugsTest.class/instance/private/shouldntTakeLong_.st
A Morphic-Tests.package/RenderBugsTest.class/instance/tests/testForward.st
A Morphic-Tests.package/RenderBugsTest.class/instance/tests/testHeading.st
A Morphic-Tests.package/RenderBugsTest.class/instance/tests/testSetForward.st
A Morphic-Tests.package/RenderBugsTest.class/instance/tests/testTestTime.st
A Morphic-Tests.package/StickynessBugsTest.class/README.md
A Morphic-Tests.package/StickynessBugsTest.class/definition.st
A Morphic-Tests.package/StickynessBugsTest.class/instance/tests/testForTiltedStickyness.st
A Morphic-Tests.package/SupplyAnswerTests.class/README.md
A Morphic-Tests.package/SupplyAnswerTests.class/definition.st
A Morphic-Tests.package/SupplyAnswerTests.class/instance/tests/testChooseDirectory.st
A Morphic-Tests.package/SupplyAnswerTests.class/instance/tests/testFillInTheBlank.st
A Morphic-Tests.package/SupplyAnswerTests.class/instance/tests/testInform.st
A Morphic-Tests.package/TestInWorldMorph.class/README.md
A Morphic-Tests.package/TestInWorldMorph.class/definition.st
A Morphic-Tests.package/TestInWorldMorph.class/instance/accessing/intoWorldCount.st
A Morphic-Tests.package/TestInWorldMorph.class/instance/accessing/intoWorld_.st
A Morphic-Tests.package/TestInWorldMorph.class/instance/accessing/outOfWorldCount.st
A Morphic-Tests.package/TestInWorldMorph.class/instance/accessing/outOfWorld_.st
A Morphic-Tests.package/TestInWorldMorph.class/instance/initialization/initialize.st
A Morphic-Tests.package/TextAnchorTest.class/README.md
A Morphic-Tests.package/TextAnchorTest.class/definition.st
A Morphic-Tests.package/TextAnchorTest.class/instance/running/setUp.st
A Morphic-Tests.package/TextAnchorTest.class/instance/running/testMorphInline.st
A Morphic-Tests.package/TextLineTest.class/README.md
A Morphic-Tests.package/TextLineTest.class/definition.st
A Morphic-Tests.package/TextLineTest.class/instance/running/setUp.st
A Morphic-Tests.package/TextMorphTest.class/README.md
A Morphic-Tests.package/TextMorphTest.class/definition.st
A Morphic-Tests.package/TextMorphTest.class/instance/testing/testInitialize.st
A Morphic-Tests.package/WindowAnnouncementTest.class/README.md
A Morphic-Tests.package/WindowAnnouncementTest.class/definition.st
A Morphic-Tests.package/WindowAnnouncementTest.class/instance/running/tearDown.st
A Morphic-Tests.package/WindowAnnouncementTest.class/instance/tests - window change/testCollapsing.st
A Morphic-Tests.package/WindowAnnouncementTest.class/instance/tests - window change/testMoving.st
A Morphic-Tests.package/WindowAnnouncementTest.class/instance/tests - window change/testResizing.st
A Morphic-Tests.package/WindowAnnouncementTest.class/instance/tests - window change/testScrolling.st
A Morphic-Tests.package/WindowAnnouncementTest.class/instance/tests - window creation and deletion/testResizingClosing.st
A Morphic-Tests.package/WindowAnnouncementTest.class/instance/tests - window creation and deletion/testWindowCreation.st
A Morphic-Tests.package/WindowAnnouncementTest.class/instance/tests - window creation and deletion/testWindowCreationAndDeletion.st
A Morphic-Tests.package/WindowAnnouncementTest.class/instance/tests - window creation and deletion/testWindowLabelling.st
R MorphicTests.package/CircleMorphTest.class/README.md
R MorphicTests.package/CircleMorphTest.class/definition.st
R MorphicTests.package/CircleMorphTest.class/instance/running/setUp.st
R MorphicTests.package/LayoutFrameTest.class/README.md
R MorphicTests.package/LayoutFrameTest.class/definition.st
R MorphicTests.package/LayoutFrameTest.class/instance/tests - conversion/testAsLayoutFrame.st
R MorphicTests.package/LayoutFrameTest.class/instance/tests/testInset.st
R MorphicTests.package/LayoutFrameTest.class/instance/tests/testLeftTopAligned.st
R MorphicTests.package/LayoutFrameTest.class/instance/tests/testRightBottomQuadrant.st
R MorphicTests.package/LayoutFrameTest.class/instance/tests/testSpaceFill.st
R MorphicTests.package/LayoutFrameTest.class/instance/tests/testTransform.st
R MorphicTests.package/LayoutFrameTest.class/instance/tests/testTransformReturnASubArea.st
R MorphicTests.package/LayoutFrameTest.class/instance/tests/testTransformReturnEmptyRectangleWhenNotPossibleToPlace.st
R MorphicTests.package/MCPTest.class/README.md
R MorphicTests.package/MCPTest.class/definition.st
R MorphicTests.package/MCPTest.class/instance/constants/defaultBounds.st
R MorphicTests.package/MCPTest.class/instance/constants/defaultTop.st
R MorphicTests.package/MCPTest.class/instance/tests/testTop.st
R MorphicTests.package/MorphTest.class/README.md
R MorphicTests.package/MorphTest.class/definition.st
R MorphicTests.package/MorphTest.class/instance/running/setUp.st
R MorphicTests.package/MorphTest.class/instance/running/tearDown.st
R MorphicTests.package/MorphTest.class/instance/testing - classification/testIsMorph.st
R MorphicTests.package/MorphTest.class/instance/testing - geometry/testBoundingBoxOfSubmorphs.st
R MorphicTests.package/MorphTest.class/instance/testing - geometry/testExtent.st
R MorphicTests.package/MorphTest.class/instance/testing - initialization/testOpenInWorld.st
R MorphicTests.package/MorphTest.class/instance/testing - into%2Foutof world/testIntoWorldCollapseOutOfWorld.st
R MorphicTests.package/MorphTest.class/instance/testing - into%2Foutof world/testIntoWorldDeleteOutOfWorld.st
R MorphicTests.package/MorphTest.class/instance/testing - into%2Foutof world/testIntoWorldTransferToNewGuy.st
R MorphicTests.package/MorphTreeMorphTests.class/README.md
R MorphicTests.package/MorphTreeMorphTests.class/definition.st
R MorphicTests.package/MorphTreeMorphTests.class/instance/tests/testLastClickedMorphSetUponUpdateList.st
R MorphicTests.package/MorphTreeMorphTests.class/instance/tests/testLeakingSelectionsOnUpdate.st
R MorphicTests.package/MorphTreeMorphTests.class/instance/tests/testMaintainingSelectionsOnUpdate.st
R MorphicTests.package/MorphTreeMorphTests.class/instance/tests/testUpdatingSelectionsOnUpdate.st
R MorphicTests.package/MorphTreeMorphTests.class/instance/tests/testUpdatingSelectionsOnUpdateWithRemoval.st
R MorphicTests.package/MorphicEventHandlerTest.class/README.md
R MorphicTests.package/MorphicEventHandlerTest.class/definition.st
R MorphicTests.package/MorphicEventHandlerTest.class/instance/running/setUp.st
R MorphicTests.package/MorphicEventHandlerTest.class/instance/running/tearDown.st
R MorphicTests.package/MorphicEventHandlerTest.class/instance/tests-events/testMouseEnterDraggingFromMorph.st
R MorphicTests.package/MorphicEventHandlerTest.class/instance/tests-events/testMouseEnterFromMorph.st
R MorphicTests.package/MorphicEventHandlerTest.class/instance/tests-events/testMouseLeaveFromMorph.st
R MorphicTests.package/MorphicEventHandlerTest.class/instance/tests/testClickFromMorph.st
R MorphicTests.package/MorphicEventHandlerTest.class/instance/tests/testDoubleClickFromMorph.st
R MorphicTests.package/MorphicEventHandlerTest.class/instance/tests/testDoubleClickTimeoutFromMorph.st
R MorphicTests.package/MorphicEventHandlerTest.class/instance/tests/testKeyStrokeFromMorph.st
R MorphicTests.package/MorphicEventHandlerTest.class/instance/tests/testTwoEventHandlersAreAttached.st
R MorphicTests.package/MorphicUIBugTest.class/README.md
R MorphicTests.package/MorphicUIBugTest.class/definition.st
R MorphicTests.package/MorphicUIBugTest.class/instance/running/setUp.st
R MorphicTests.package/MorphicUIBugTest.class/instance/running/tearDown.st
R MorphicTests.package/PaginatedMorphTreeMorphTests.class/README.md
R MorphicTests.package/PaginatedMorphTreeMorphTests.class/definition.st
R MorphicTests.package/PaginatedMorphTreeMorphTests.class/instance/tests/testPager.st
R MorphicTests.package/PolygonMorphTest.class/README.md
R MorphicTests.package/PolygonMorphTest.class/definition.st
R MorphicTests.package/PolygonMorphTest.class/instance/tests/testBoundsBug1035.st
R MorphicTests.package/RenderBugsTest.class/README.md
R MorphicTests.package/RenderBugsTest.class/definition.st
R MorphicTests.package/RenderBugsTest.class/instance/private/long.st
R MorphicTests.package/RenderBugsTest.class/instance/private/shouldntTakeLong_.st
R MorphicTests.package/RenderBugsTest.class/instance/tests/testForward.st
R MorphicTests.package/RenderBugsTest.class/instance/tests/testHeading.st
R MorphicTests.package/RenderBugsTest.class/instance/tests/testSetForward.st
R MorphicTests.package/RenderBugsTest.class/instance/tests/testTestTime.st
R MorphicTests.package/StickynessBugsTest.class/README.md
R MorphicTests.package/StickynessBugsTest.class/definition.st
R MorphicTests.package/StickynessBugsTest.class/instance/tests/testForTiltedStickyness.st
R MorphicTests.package/SupplyAnswerTests.class/README.md
R MorphicTests.package/SupplyAnswerTests.class/definition.st
R MorphicTests.package/SupplyAnswerTests.class/instance/tests/testChooseDirectory.st
R MorphicTests.package/SupplyAnswerTests.class/instance/tests/testFillInTheBlank.st
R MorphicTests.package/SupplyAnswerTests.class/instance/tests/testInform.st
R MorphicTests.package/TestInWorldMorph.class/README.md
R MorphicTests.package/TestInWorldMorph.class/definition.st
R MorphicTests.package/TestInWorldMorph.class/instance/accessing/intoWorldCount.st
R MorphicTests.package/TestInWorldMorph.class/instance/accessing/intoWorld_.st
R MorphicTests.package/TestInWorldMorph.class/instance/accessing/outOfWorldCount.st
R MorphicTests.package/TestInWorldMorph.class/instance/accessing/outOfWorld_.st
R MorphicTests.package/TestInWorldMorph.class/instance/initialization/initialize.st
R MorphicTests.package/TextAnchorTest.class/README.md
R MorphicTests.package/TextAnchorTest.class/definition.st
R MorphicTests.package/TextAnchorTest.class/instance/running/setUp.st
R MorphicTests.package/TextAnchorTest.class/instance/running/testMorphInline.st
R MorphicTests.package/TextLineTest.class/README.md
R MorphicTests.package/TextLineTest.class/definition.st
R MorphicTests.package/TextLineTest.class/instance/running/setUp.st
R MorphicTests.package/TextMorphTest.class/README.md
R MorphicTests.package/TextMorphTest.class/definition.st
R MorphicTests.package/TextMorphTest.class/instance/testing/testInitialize.st
R MorphicTests.package/WindowAnnouncementTest.class/README.md
R MorphicTests.package/WindowAnnouncementTest.class/definition.st
R MorphicTests.package/WindowAnnouncementTest.class/instance/running/tearDown.st
R MorphicTests.package/WindowAnnouncementTest.class/instance/tests - window change/testCollapsing.st
R MorphicTests.package/WindowAnnouncementTest.class/instance/tests - window change/testMoving.st
R MorphicTests.package/WindowAnnouncementTest.class/instance/tests - window change/testResizing.st
R MorphicTests.package/WindowAnnouncementTest.class/instance/tests - window change/testScrolling.st
R MorphicTests.package/WindowAnnouncementTest.class/instance/tests - window creation and deletion/testResizingClosing.st
R MorphicTests.package/WindowAnnouncementTest.class/instance/tests - window creation and deletion/testWindowCreation.st
R MorphicTests.package/WindowAnnouncementTest.class/instance/tests - window creation and deletion/testWindowCreationAndDeletion.st
R MorphicTests.package/WindowAnnouncementTest.class/instance/tests - window creation and deletion/testWindowLabelling.st
R ScriptLoader50.package/ScriptLoader.class/instance/pharo - scripts/script50300.st
A ScriptLoader50.package/ScriptLoader.class/instance/pharo - scripts/script50301.st
R ScriptLoader50.package/ScriptLoader.class/instance/pharo - updates/update50300.st
A ScriptLoader50.package/ScriptLoader.class/instance/pharo - updates/update50301.st
M ScriptLoader50.package/ScriptLoader.class/instance/public/commentForCurrentUpdate.st
Log Message:
-----------
50301
14432 FreeTypeTests package should be FreeType-Tests
https://pharo.fogbugz.com/f/cases/14432
14427 CompressionTests package should be Compression-Tests
https://pharo.fogbugz.com/f/cases/14427
14434 MorphicTests package should be Morphic-Tests
https://pharo.fogbugz.com/f/cases/14434
http://files.pharo.org/image/50/50301.zip
Sept. 3, 2015
Re: [Pharo-dev] GitFileTree: Playing Nice with FileTree
by Peter Uhnák
Hi
> (git)filetree://path/to/canonical/local/repo
This is a relative path:
(git)filetree:// + path/to/...
it should be:
(git)filetree:// + /my/absolute/path (triple slash)
As for FileTree/GitFileTree, due to windows issues my colleague and I were
using both. I was commiting directly through gitfiletree, and he was
comitting via filetree, and then applying git on top of that manually.
And if MCBrowser can't do it, maybe try it from playground... e.g.
Metacello new
baseline: 'Project'; "or configuration maybe for non-git"
repository: 'gitfiletree:///my/abs/path/repository';
load.
Peter
On Thu, Sep 3, 2015 at 6:53 AM, Thierry Goubier <thierry.goubier(a)gmail.com>
wrote:
> Hi Sean,
>
> Le 03/09/2015 04:29, Sean P. DeNigris a écrit :
>
>> If I have a filetree://path/to/canonical/local/repo repository, can I
>> later
>> point a GitFileTree repo to that folder? From the MC Browser +Repository
>> menu, I only seem to be able to set the subfolder relative to the
>> #imageDirectory, not the absolute pathâ¦
>>
>
> Are you sure about the local path? I know I played with a few things to
> try to get local paths to work if used.
>
> But gitfiletree://path/to/canonical/local/repo will work.
>
> Thierry
>
>
Sept. 3, 2015