Pharo-dev
By thread
pharo-dev@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- August
- 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
August 2014
- 931 messages
Re: [Pharo-dev] [Pharo-users] [ANN] HelloPharo - webapp deployment tool
by François Stephany
Good idea, I add monit as one of the next step.
Load balancing is not supported at all. But we could change the nginx
config file to load balance between two images. And maybe make something
for Seaside and its state (sticky sessions?). I haven't done enough of this
to actually take an informed decision.
I'll update the README to be more clear about what is done behind the
scene. Showing the tree of directories created by HelloPharo will be worth
a thousand words (especially if you've used capistrano before).
On Thu, Aug 14, 2014 at 3:13 PM, Sven Van Caekenberghe <sven(a)stfx.eu> wrote:
>
> On 14 Aug 2014, at 13:08, François Stephany <tulipe.moutarde(a)gmail.com>
> wrote:
>
> > Oh, I forgot to mention Sven. He wrote the original
> http://stfx.eu/pharo-server/
> > We basically stole all his Bash-fu to build the main script:
> >
> > https://github.com/fstephany/hello-pharo/blob/master/app
> >
> > Thanks a lot Sven!
>
> You're welcome, François. BTW, I am still using that script for all my
> deploys.
>
> I didn't immediately see it, but does your solution include something for
> process monitoring and automatic restarts (like monit) and/or some basic
> load balancing ? In my experience the combination of these two makes for a
> more robust solution. Maybe that is the next step ;-)
>
> Sven
>
> > On Thu, Aug 14, 2014 at 1:02 PM, François Stephany <
> tulipe.moutarde(a)gmail.com> wrote:
> > Hello,
> >
> > At Ta Mère, we are used to deploy Ruby/Rails application with Heroku or
> on VPS with Capistrano. Almost everybody uses the same tools and techniques
> in the Rails community so deployment is quite easy once you grasp the
> process.
> >
> > The same process was quite frustrating with Pharo. To solve that, we've
> built HelloPharo. It is a tool to deploy small apps to a Linux VPS/VM.
> >
> > It is heavily inspired by Capistrano, it prones convention over
> configuration and it wants to be full stack (e.g., serve the assets,
> restart the processes). It is built with Ansible.
> >
> > We haven't released a fixed version yet but the tool starts to be in a
> good-enough shape to be shown. We want to grab some feedback and fix the
> most obvious limitations (see the README for more) before releasing version
> 0.1.0.
> >
> > If you or your company uses a well defined process to deploy pharo
> webapps, we are all ears. We think that having a canonical way to deploy
> simple apps is a must if we want to see wider Pharo adoption for small web
> companies. This process *must* be Unix friendly if we want to attract
> Python or Ruby people. Most of them are Devops anyway, the command line is
> their friend, NOT something they want to avoid.
> >
> > Pull requests (for code or instructions in the README) are more than
> welcome. The code and the documentation are MIT licensed.
> >
> > https://github.com/fstephany/hello-pharo/
> >
> > Cheers,
> > Francois
> >
>
>
>
Aug. 14, 2014
Re: [Pharo-dev] [Pharo-users] [ANN] HelloPharo - webapp deployment tool
by Sven Van Caekenberghe
On 14 Aug 2014, at 13:08, François Stephany <tulipe.moutarde(a)gmail.com> wrote:
> Oh, I forgot to mention Sven. He wrote the original http://stfx.eu/pharo-server/
> We basically stole all his Bash-fu to build the main script:
>
> https://github.com/fstephany/hello-pharo/blob/master/app
>
> Thanks a lot Sven!
You're welcome, François. BTW, I am still using that script for all my deploys.
I didn't immediately see it, but does your solution include something for process monitoring and automatic restarts (like monit) and/or some basic load balancing ? In my experience the combination of these two makes for a more robust solution. Maybe that is the next step ;-)
Sven
> On Thu, Aug 14, 2014 at 1:02 PM, François Stephany <tulipe.moutarde(a)gmail.com> wrote:
> Hello,
>
> At Ta Mère, we are used to deploy Ruby/Rails application with Heroku or on VPS with Capistrano. Almost everybody uses the same tools and techniques in the Rails community so deployment is quite easy once you grasp the process.
>
> The same process was quite frustrating with Pharo. To solve that, we've built HelloPharo. It is a tool to deploy small apps to a Linux VPS/VM.
>
> It is heavily inspired by Capistrano, it prones convention over configuration and it wants to be full stack (e.g., serve the assets, restart the processes). It is built with Ansible.
>
> We haven't released a fixed version yet but the tool starts to be in a good-enough shape to be shown. We want to grab some feedback and fix the most obvious limitations (see the README for more) before releasing version 0.1.0.
>
> If you or your company uses a well defined process to deploy pharo webapps, we are all ears. We think that having a canonical way to deploy simple apps is a must if we want to see wider Pharo adoption for small web companies. This process *must* be Unix friendly if we want to attract Python or Ruby people. Most of them are Devops anyway, the command line is their friend, NOT something they want to avoid.
>
> Pull requests (for code or instructions in the README) are more than welcome. The code and the documentation are MIT licensed.
>
> https://github.com/fstephany/hello-pharo/
>
> Cheers,
> Francois
>
Aug. 14, 2014
[pharo-project/pharo-core] 2d8a3a: 40169
by GitHub
Branch: refs/heads/4.0
Home: https://github.com/pharo-project/pharo-core
Commit: 2d8a3a309ea8a8ef755441079227340ff7f9ce18
https://github.com/pharo-project/pharo-core/commit/2d8a3a309ea8a8ef75544107…
Author: Jenkins Build Server <board(a)pharo-project.org>
Date: 2014-08-14 (Thu, 14 Aug 2014)
Changed paths:
A Graphics-Fonts-Tests.package/StandardSystemFontsTest.class/README.md
A Graphics-Fonts-Tests.package/StandardSystemFontsTest.class/definition.st
A Graphics-Fonts-Tests.package/StandardSystemFontsTest.class/instance/utilities/assert_familyName_pointSize_.st
A Graphics-Fonts-Tests.package/StandardSystemFontsTest.class/instance/utilities/saveStandardSystemFontsDuring_.st
A Monticello-Tests.package/MCAncestryTest.class/README.md
A Monticello-Tests.package/MCAncestryTest.class/definition.st
A Monticello-Tests.package/MCAncestryTest.class/instance/asserting/assertCommonAncestorOf_and_in_in_.st
A Monticello-Tests.package/MCAncestryTest.class/instance/asserting/assertCommonAncestorOf_and_is_in_.st
A Monticello-Tests.package/MCAncestryTest.class/instance/asserting/assertNamesOf_are_.st
A Monticello-Tests.package/MCAncestryTest.class/instance/asserting/assertPathTo_is_.st
A Monticello-Tests.package/MCAncestryTest.class/instance/building/tree.st
A Monticello-Tests.package/MCAncestryTest.class/instance/building/twoPersonTree.st
A Monticello-Tests.package/MCAncestryTest.class/instance/building/versionForName_in_.st
A Monticello-Tests.package/MCAncestryTest.class/instance/tests/testCommonAncestors.st
A Monticello-Tests.package/MCAncestryTest.class/instance/tests/testDescendants.st
A Monticello-Tests.package/MCAncestryTest.class/instance/tests/testLinearPath.st
A Monticello-Tests.package/MCAncestryTest.class/instance/tests/testPathToMissingAncestor.st
A Monticello-Tests.package/MCChangeNotificationTest.class/README.md
A Monticello-Tests.package/MCChangeNotificationTest.class/definition.st
A Monticello-Tests.package/MCChangeNotificationTest.class/instance/events/modifiedEventFor_ofClass_.st
A Monticello-Tests.package/MCChangeNotificationTest.class/instance/private/foreignMethod.st
A Monticello-Tests.package/MCChangeNotificationTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCChangeNotificationTest.class/instance/tests/testCoreMethodModified.st
A Monticello-Tests.package/MCChangeNotificationTest.class/instance/tests/testExtMethodModified.st
A Monticello-Tests.package/MCChangeNotificationTest.class/instance/tests/testForeignMethodModified.st
A Monticello-Tests.package/MCClassDefinitionTest.class/README.md
A Monticello-Tests.package/MCClassDefinitionTest.class/class/as yet unclassified/classAComment.st
A Monticello-Tests.package/MCClassDefinitionTest.class/class/as yet unclassified/classACommentStamp.st
A Monticello-Tests.package/MCClassDefinitionTest.class/class/as yet unclassified/restoreClassAComment.st
A Monticello-Tests.package/MCClassDefinitionTest.class/definition.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/private/classAComment.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/private/creationMessage.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/running/tearDown.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testCannotLoad.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testComparison.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testCreation.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testDefinitionString.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testEquals.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testEqualsSensitivity.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testKindOfSubclass.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testLoadAndUnload.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testValidTraitComposition.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testValidTraitComposition2.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testValidTraitComposition3.st
A Monticello-Tests.package/MCClassDefinitionTest.class/instance/tests/testValidTraitComposition4.st
A Monticello-Tests.package/MCDataStreamTest.class/README.md
A Monticello-Tests.package/MCDataStreamTest.class/definition.st
A Monticello-Tests.package/MCDataStreamTest.class/instance/testing/baseStreamType.st
A Monticello-Tests.package/MCDependencySorterTest.class/README.md
A Monticello-Tests.package/MCDependencySorterTest.class/class/testing/isUnitTest.st
A Monticello-Tests.package/MCDependencySorterTest.class/definition.st
A Monticello-Tests.package/MCDependencySorterTest.class/instance/asserting/assertItems_orderAs_withRequired_toLoad_.st
A Monticello-Tests.package/MCDependencySorterTest.class/instance/asserting/assertItems_orderAs_withRequired_toLoad_extraProvisions_.st
A Monticello-Tests.package/MCDependencySorterTest.class/instance/building/itemWithSpec_.st
A Monticello-Tests.package/MCDependencySorterTest.class/instance/tests/testCascadingUnresolved.st
A Monticello-Tests.package/MCDependencySorterTest.class/instance/tests/testCycle.st
A Monticello-Tests.package/MCDependencySorterTest.class/instance/tests/testExtraProvisions.st
A Monticello-Tests.package/MCDependencySorterTest.class/instance/tests/testMultiRequirementOrdering.st
A Monticello-Tests.package/MCDependencySorterTest.class/instance/tests/testSimpleOrdering.st
A Monticello-Tests.package/MCDependencySorterTest.class/instance/tests/testSimpleUnresolved.st
A Monticello-Tests.package/MCDependencySorterTest.class/instance/tests/testUnusedAlternateProvider.st
A Monticello-Tests.package/MCDictionaryRepositoryTest.class/README.md
A Monticello-Tests.package/MCDictionaryRepositoryTest.class/definition.st
A Monticello-Tests.package/MCDictionaryRepositoryTest.class/instance/actions/addVersion_.st
A Monticello-Tests.package/MCDictionaryRepositoryTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCDictionaryRepositoryTest.class/instance/utility/deleteNode_.st
A Monticello-Tests.package/MCDictionaryRepositoryTest.class/instance/utility/dictionary.st
A Monticello-Tests.package/MCDirectoryRepositoryTest.class/README.md
A Monticello-Tests.package/MCDirectoryRepositoryTest.class/definition.st
A Monticello-Tests.package/MCDirectoryRepositoryTest.class/instance/accessing/directory.st
A Monticello-Tests.package/MCDirectoryRepositoryTest.class/instance/actions/addVersion_.st
A Monticello-Tests.package/MCDirectoryRepositoryTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCDirectoryRepositoryTest.class/instance/running/tearDown.st
A Monticello-Tests.package/MCFileInTest.class/README.md
A Monticello-Tests.package/MCFileInTest.class/definition.st
A Monticello-Tests.package/MCFileInTest.class/instance/asserting/assertNoChange.st
A Monticello-Tests.package/MCFileInTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCFileInTest.class/instance/running/tearDown.st
A Monticello-Tests.package/MCFileInTest.class/instance/testing/alterInitialState.st
A Monticello-Tests.package/MCFileInTest.class/instance/testing/assertFileOutFrom_canBeFiledInWith_.st
A Monticello-Tests.package/MCFileInTest.class/instance/testing/assertInitializersCalled.st
A Monticello-Tests.package/MCFileInTest.class/instance/testing/assertInitializersOrder.st
A Monticello-Tests.package/MCFileInTest.class/instance/testing/assertSuccessfulLoadWith_.st
A Monticello-Tests.package/MCFileInTest.class/instance/testing/testStWriter.st
A Monticello-Tests.package/MCMczInstallerTest.class/README.md
A Monticello-Tests.package/MCMczInstallerTest.class/class/as yet unclassified/isAbstract.st
A Monticello-Tests.package/MCMczInstallerTest.class/class/as yet unclassified/suite.st
A Monticello-Tests.package/MCMczInstallerTest.class/definition.st
A Monticello-Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/assertDict_matchesInfo_.st
A Monticello-Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/assertNoChange.st
A Monticello-Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/assertVersionInfoPresent.st
A Monticello-Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/deleteFile.st
A Monticello-Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/fileName.st
A Monticello-Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/fileStream.st
A Monticello-Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/setUp.st
A Monticello-Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/tearDown.st
A Monticello-Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/testInstallFromFile.st
A Monticello-Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/testInstallFromStream.st
A Monticello-Tests.package/MCMergingTest.class/README.md
A Monticello-Tests.package/MCMergingTest.class/definition.st
A Monticello-Tests.package/MCMergingTest.class/instance/asserting/assertMerge_with_base_gives_conflicts_.st
A Monticello-Tests.package/MCMergingTest.class/instance/asserting/assert_hasElements_.st
A Monticello-Tests.package/MCMergingTest.class/instance/emulating/handleConflict_.st
A Monticello-Tests.package/MCMergingTest.class/instance/emulating/snapshotWithElements_.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testAdditiveConflictlessMerge.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testComplexConflictlessMerge.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testIdenticalModification.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testLocalModifyRemoteRemove.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testLocalRemoveRemoteModify.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testMultiPackageMerge.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testMultiPackageMerge2.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testMultiPackageMerge3.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testMultipleConflicts.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testSimultaneousModification.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testSimultaneousRemove.st
A Monticello-Tests.package/MCMergingTest.class/instance/tests/testSubtractiveConflictlessMerge.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/README.md
A Monticello-Tests.package/MCMethodDefinitionTest.class/definition.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/instance/mocks/override.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/instance/running/ownPackage.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/instance/running/tearDown.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/instance/testing/testCannotLoad.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/instance/testing/testComparison.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/instance/testing/testLoadAndUnload.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/instance/testing/testPartiallyRevertOverrideMethod.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/instance/testing/testRevertOldMethod.st
A Monticello-Tests.package/MCMethodDefinitionTest.class/instance/testing/testRevertOverrideMethod.st
A Monticello-Tests.package/MCMockDependency.class/README.md
A Monticello-Tests.package/MCMockDependency.class/class/instance creation/fromTree_.st
A Monticello-Tests.package/MCMockDependency.class/definition.st
A Monticello-Tests.package/MCMockDependency.class/instance/accessing/children.st
A Monticello-Tests.package/MCMockDependency.class/instance/accessing/initializeWithTree_.st
A Monticello-Tests.package/MCMockDependency.class/instance/accessing/name.st
A Monticello-Tests.package/MCMockDependency.class/instance/comparing/=.st
A Monticello-Tests.package/MCMockDependency.class/instance/comparing/hash.st
A Monticello-Tests.package/MCMockDependency.class/instance/mocks/mockVersionInfo.st
A Monticello-Tests.package/MCMockDependency.class/instance/mocks/uuidForName_.st
A Monticello-Tests.package/MCMockDependency.class/instance/resolving/hasResolution.st
A Monticello-Tests.package/MCMockDependency.class/instance/resolving/resolve.st
A Monticello-Tests.package/MCOrganizationTest.class/README.md
A Monticello-Tests.package/MCOrganizationTest.class/definition.st
A Monticello-Tests.package/MCOrganizationTest.class/instance/tests/testLoadAndUnload.st
A Monticello-Tests.package/MCOrganizationTest.class/instance/tests/testReordering.st
A Monticello-Tests.package/MCOrganizationTest.class/instance/tests/testReorderingWithNoCategoriesInVersion.st
A Monticello-Tests.package/MCOrganizationTest.class/instance/tests/testReorderingWithRemovals.st
A Monticello-Tests.package/MCPackageTest.class/README.md
A Monticello-Tests.package/MCPackageTest.class/definition.st
A Monticello-Tests.package/MCPackageTest.class/instance/private/aMethodRemoved_.st
A Monticello-Tests.package/MCPackageTest.class/instance/running/tearDown.st
A Monticello-Tests.package/MCPackageTest.class/instance/tests/testUnload.st
A Monticello-Tests.package/MCPackageTest.class/instance/tests/testUnloadWithAdditionalTracking.st
A Monticello-Tests.package/MCPatchTest.class/README.md
A Monticello-Tests.package/MCPatchTest.class/definition.st
A Monticello-Tests.package/MCPatchTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCPatchTest.class/instance/running/tearDown.st
A Monticello-Tests.package/MCPatchTest.class/instance/tests/testPatchContents.st
A Monticello-Tests.package/MCRepositoryAuthorizationTest.class/README.md
A Monticello-Tests.package/MCRepositoryAuthorizationTest.class/definition.st
A Monticello-Tests.package/MCRepositoryAuthorizationTest.class/instance/accessing/exampleServerUrl.st
A Monticello-Tests.package/MCRepositoryAuthorizationTest.class/instance/asserting/assert_on_hasUser_withPassword_.st
A Monticello-Tests.package/MCRepositoryAuthorizationTest.class/instance/tests/testEmptyCredentials.st
A Monticello-Tests.package/MCRepositoryAuthorizationTest.class/instance/tests/testNoCredentials.st
A Monticello-Tests.package/MCRepositoryAuthorizationTest.class/instance/tests/testOverrideStoredCredentials.st
A Monticello-Tests.package/MCRepositoryAuthorizationTest.class/instance/tests/testStoredCredentials.st
A Monticello-Tests.package/MCRepositoryAuthorizationTest.class/instance/tests/testStoredCredentialsUsesMostSpecific.st
A Monticello-Tests.package/MCRepositoryTest.class/README.md
A Monticello-Tests.package/MCRepositoryTest.class/class/testing/isAbstract.st
A Monticello-Tests.package/MCRepositoryTest.class/definition.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/accessing/snapshotAt_.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/actions/addVersionWithSnapshot_name_.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/actions/addVersion_.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/actions/saveSnapshot1.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/actions/saveSnapshot2.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/actions/saveSnapshot_named_.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/asserting/assertMissing_.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/asserting/assertVersionInfos_.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/building/snapshot1.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/building/snapshot2.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/building/versionWithSnapshot_name_.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/tests/testAddAndLoad.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/tests/testIncludesName.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/tests/testLoadMissingNode.st
A Monticello-Tests.package/MCRepositoryTest.class/instance/tests/testStoreAndLoad.st
A Monticello-Tests.package/MCScannerTest.class/README.md
A Monticello-Tests.package/MCScannerTest.class/definition.st
A Monticello-Tests.package/MCScannerTest.class/instance/asserting/assertScans_.st
A Monticello-Tests.package/MCScannerTest.class/instance/tests/test1.st
A Monticello-Tests.package/MCScannerTest.class/instance/tests/test2.st
A Monticello-Tests.package/MCScannerTest.class/instance/tests/test3.st
A Monticello-Tests.package/MCScannerTest.class/instance/tests/test4.st
A Monticello-Tests.package/MCScannerTest.class/instance/tests/test5.st
A Monticello-Tests.package/MCScannerTest.class/instance/tests/test6.st
A Monticello-Tests.package/MCSerializationTest.class/README.md
A Monticello-Tests.package/MCSerializationTest.class/definition.st
A Monticello-Tests.package/MCSerializationTest.class/instance/asserting/assertClass_providesServices_.st
A Monticello-Tests.package/MCSerializationTest.class/instance/asserting/assertDependenciesMatchWith_.st
A Monticello-Tests.package/MCSerializationTest.class/instance/asserting/assertExtensionProvidedBy_.st
A Monticello-Tests.package/MCSerializationTest.class/instance/asserting/assertSnapshotsMatchWith_.st
A Monticello-Tests.package/MCSerializationTest.class/instance/asserting/assertVersionInfosMatchWith_.st
A Monticello-Tests.package/MCSerializationTest.class/instance/asserting/assertVersionsMatchWith_.st
A Monticello-Tests.package/MCSerializationTest.class/instance/mocks/mockDiffyVersion.st
A Monticello-Tests.package/MCSerializationTest.class/instance/testing/testMcdSerialization.st
A Monticello-Tests.package/MCSerializationTest.class/instance/testing/testMczSerialization.st
A Monticello-Tests.package/MCSerializationTest.class/instance/testing/testStSerialization.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/README.md
A Monticello-Tests.package/MCSnapshotBrowserTest.class/definition.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/asserting/assertAListIncludes_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/asserting/assertAListMatches_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/asserting/assertButtonExists_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/asserting/assertButtonOn_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/asserting/assertTextIs_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/asserting/denyAListHasSelection_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/asserting/denyAListIncludesAnyOf_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/asserting/denyButtonOn_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/morphic/annotationTextMorph.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/morphic/buttonMorphs.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/morphic/findButtonWithLabel_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/morphic/findListContaining_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/morphic/listMorphs.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/morphic/morphsOfClass_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/morphic/textMorph.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/allCategories.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/allMethods.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/allProtocols.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/classABooleanMethods.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/classAClassProtocols.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/classAComment.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/classADefinitionString.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/classAProtocols.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/classAclassDefinitionString.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/definedClasses.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/falsehoodMethodSource.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/private/protocolsForClass_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/selecting/selectMockClassA.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/simulating/clickOnButton_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/simulating/clickOnListItem_.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testButtonMutex.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testCategorySelected.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testClassSelected.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testClassSideClassSelected.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testComment.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testFourColumns.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testMethodIsCleared.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testMethodSelected.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testNoSelection.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testProtocolIsCleared.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testProtocolSelected.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testTextPane.st
A Monticello-Tests.package/MCSnapshotBrowserTest.class/instance/testing/testThreeButtons.st
A Monticello-Tests.package/MCSnapshotResource.class/README.md
A Monticello-Tests.package/MCSnapshotResource.class/class/accessing/mockPackage.st
A Monticello-Tests.package/MCSnapshotResource.class/class/accessing/mockPackageName.st
A Monticello-Tests.package/MCSnapshotResource.class/class/accessing/takeSnapshot.st
A Monticello-Tests.package/MCSnapshotResource.class/definition.st
A Monticello-Tests.package/MCSnapshotResource.class/instance/accessing/definitions.st
A Monticello-Tests.package/MCSnapshotResource.class/instance/accessing/snapshot.st
A Monticello-Tests.package/MCSnapshotResource.class/instance/running/setUp.st
A Monticello-Tests.package/MCSnapshotTest.class/README.md
A Monticello-Tests.package/MCSnapshotTest.class/definition.st
A Monticello-Tests.package/MCSnapshotTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCSnapshotTest.class/instance/tests/testCreation.st
A Monticello-Tests.package/MCSnapshotTest.class/instance/tests/testInstanceReuse.st
A Monticello-Tests.package/MCSortingTest.class/README.md
A Monticello-Tests.package/MCSortingTest.class/class/testing/isUnitTest.st
A Monticello-Tests.package/MCSortingTest.class/definition.st
A Monticello-Tests.package/MCSortingTest.class/instance/actions/sortDefinitions_.st
A Monticello-Tests.package/MCSortingTest.class/instance/building/classNamed_.st
A Monticello-Tests.package/MCSortingTest.class/instance/building/methodNamed_class_meta_.st
A Monticello-Tests.package/MCSortingTest.class/instance/building/sortKeyFor_.st
A Monticello-Tests.package/MCSortingTest.class/instance/tests/testConsistentSorting.st
A Monticello-Tests.package/MCSortingTest.class/instance/tests/testSortOrder.st
A Monticello-Tests.package/MCStReaderTest.class/README.md
A Monticello-Tests.package/MCStReaderTest.class/definition.st
A Monticello-Tests.package/MCStReaderTest.class/instance/tests/testCommentWithStyle.st
A Monticello-Tests.package/MCStReaderTest.class/instance/tests/testCommentWithoutStyle.st
A Monticello-Tests.package/MCStReaderTest.class/instance/tests/testMethodWithStyle.st
A Monticello-Tests.package/MCStReaderTest.class/instance/util/commentWithStyle.st
A Monticello-Tests.package/MCStReaderTest.class/instance/util/commentWithoutStyle.st
A Monticello-Tests.package/MCStReaderTest.class/instance/util/methodWithStyle.st
A Monticello-Tests.package/MCStWriterTest.class/README.md
A Monticello-Tests.package/MCStWriterTest.class/definition.st
A Monticello-Tests.package/MCStWriterTest.class/instance/asserting/assertAllChunksAreWellFormed.st
A Monticello-Tests.package/MCStWriterTest.class/instance/asserting/assertChunkIsWellFormed_.st
A Monticello-Tests.package/MCStWriterTest.class/instance/asserting/assertContentsOf_match_.st
A Monticello-Tests.package/MCStWriterTest.class/instance/asserting/assertMethodChunkIsWellFormed_.st
A Monticello-Tests.package/MCStWriterTest.class/instance/data/expectedClassDefinitionA.st
A Monticello-Tests.package/MCStWriterTest.class/instance/data/expectedClassDefinitionB.st
A Monticello-Tests.package/MCStWriterTest.class/instance/data/expectedClassMethodDefinition.st
A Monticello-Tests.package/MCStWriterTest.class/instance/data/expectedMethodDefinition.st
A Monticello-Tests.package/MCStWriterTest.class/instance/data/expectedMethodDefinitionWithBangs.st
A Monticello-Tests.package/MCStWriterTest.class/instance/data/expectedOrganizationDefinition.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/expectedInitializerA.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/expectedInitializerASubclass.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/methodWithBangs.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/setUp.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/testClassDefinitionA.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/testClassDefinitionB.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/testClassMethodDefinition.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/testInitializerDefinition.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/testMethodDefinition.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/testMethodDefinitionWithBangs.st
A Monticello-Tests.package/MCStWriterTest.class/instance/testing/testOrganizationDefinition.st
A Monticello-Tests.package/MCSubDirectoryRepositoryTest.class/README.md
A Monticello-Tests.package/MCSubDirectoryRepositoryTest.class/definition.st
A Monticello-Tests.package/MCSubDirectoryRepositoryTest.class/instance/tests/testIssue7368.st
A Monticello-Tests.package/MCTestCase.class/README.md
A Monticello-Tests.package/MCTestCase.class/class/as yet unclassified/isAbstract.st
A Monticello-Tests.package/MCTestCase.class/class/as yet unclassified/resources.st
A Monticello-Tests.package/MCTestCase.class/class/testing/isUnitTest.st
A Monticello-Tests.package/MCTestCase.class/definition.st
A Monticello-Tests.package/MCTestCase.class/instance/asserting/assertPackage_matches_.st
A Monticello-Tests.package/MCTestCase.class/instance/asserting/assertSnapshot_matches_.st
A Monticello-Tests.package/MCTestCase.class/instance/asserting/assertVersionInfo_matches_.st
A Monticello-Tests.package/MCTestCase.class/instance/asserting/assertVersion_matches_.st
A Monticello-Tests.package/MCTestCase.class/instance/compiling/change_toReturn_.st
A Monticello-Tests.package/MCTestCase.class/instance/compiling/compileClass_source_category_.st
A Monticello-Tests.package/MCTestCase.class/instance/compiling/restoreMocks.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/commentForClass_.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/commentStampForClass_.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockCategoryName.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockClassA.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockClassB.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockClass_super_.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockDependencies.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockEmptyPackage.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockExtensionMethodCategory.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockInstanceA.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockMessageString.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockMethod_class_source_meta_.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockOverrideMethodCategory.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockPackage.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockSnapshot.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockToken_.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockVersion.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockVersionInfo.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockVersionInfoWithAncestor_.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockVersionInfo_.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockVersionName.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockVersionWithAncestor_.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/mockVersionWithDependencies.st
A Monticello-Tests.package/MCTestCase.class/instance/mocks/treeFrom_.st
A Monticello-Tests.package/MCTestCase.class/instance/running/runCase.st
A Monticello-Tests.package/MCVersionTest.class/README.md
A Monticello-Tests.package/MCVersionTest.class/definition.st
A Monticello-Tests.package/MCVersionTest.class/instance/asserting/assert_orders_as_.st
A Monticello-Tests.package/MCVersionTest.class/instance/asserting/assert_orders_as_unresolved_.st
A Monticello-Tests.package/MCVersionTest.class/instance/building/dependencyFromTree_.st
A Monticello-Tests.package/MCVersionTest.class/instance/building/versionFromTree_.st
A Monticello-Tests.package/MCVersionTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCVersionTest.class/instance/tests/testAllAvailablePostOrder.st
A Monticello-Tests.package/MCVersionTest.class/instance/tests/testAllMissing.st
A Monticello-Tests.package/MCVersionTest.class/instance/tests/testAllUnresolved.st
A Monticello-Tests.package/MCVersionTest.class/instance/tests/testDependencyOrder.st
A Monticello-Tests.package/MCVersionTest.class/instance/tests/testPostOrder.st
A Monticello-Tests.package/MCVersionTest.class/instance/tests/testWithAll.st
A Monticello-Tests.package/MCVersionTest.class/instance/tests/testWithAllMissing.st
A Monticello-Tests.package/MCVersionTest.class/instance/tests/testWithAllUnresolved.st
A Monticello-Tests.package/MCWorkingCopyTest.class/README.md
A Monticello-Tests.package/MCWorkingCopyTest.class/definition.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/accessing/description.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/actions/basicMerge_.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/actions/load_.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/actions/merge_.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/actions/snapshot.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/asserting/assertNameWhenSavingTo_is_.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/asserting/assertNumberWhenSavingTo_is_.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/private/packageName.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/running/clearPackageCache.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/running/setUp.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/running/tearDown.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testAncestorMerge.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testBackport.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testDoubleRepeatedMerge.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testMergeIntoImageWithNoChanges.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testMergeIntoUnmodifiedImage.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testNaming.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testOptimizedLoad.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testRedundantMerge.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testRepeatedMerge.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testRepositoryFallback.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testSelectiveBackport.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testSimpleMerge.st
A Monticello-Tests.package/MCWorkingCopyTest.class/instance/tests/testSnapshotAndLoad.st
A ScriptLoader40-Tests.package/ScriptLoaderTest.class/README.md
A ScriptLoader40-Tests.package/ScriptLoaderTest.class/definition.st
A ScriptLoader40-Tests.package/ScriptLoaderTest.class/instance/testing/testAllCurrentPackagesContainScriptLoader.st
A ScriptLoader40-Tests.package/ScriptLoaderTest.class/instance/testing/testAllCurrentVersionsContainsScriptLoader.st
A ScriptLoader40-Tests.package/ScriptLoaderTest.class/instance/testing/testCurrentPackagesDoesNotContainScriptLoader.st
A ScriptLoader40-Tests.package/ScriptLoaderTest.class/instance/testing/testMarkPackageBeforeLoad.st
M ScriptLoader40.package/Loader.class/instance/private/packagesNotToSavePatternNames.st
M ScriptLoader40.package/ScriptLoader.class/instance/private/packagesNotToSavePatternNames.st
M ScriptLoader40.package/ScriptLoader.class/instance/public/commentForCurrentUpdate.st
A System-History-Tests.package/HistoryIteratorTest.class/README.md
A System-History-Tests.package/HistoryIteratorTest.class/definition.st
A System-History-Tests.package/HistoryIteratorTest.class/instance/running/setUp.st
A System-History-Tests.package/HistoryIteratorTest.class/instance/testing/testGroupedUndo1.st
A System-History-Tests.package/HistoryIteratorTest.class/instance/testing/testGroupedUndo2.st
A System-History-Tests.package/HistoryIteratorTest.class/instance/testing/testGrouping.st
A System-History-Tests.package/HistoryIteratorTest.class/instance/testing/testMaxSize.st
A System-History-Tests.package/HistoryIteratorTest.class/instance/testing/testUndo1.st
A System-History-Tests.package/HistoryIteratorTest.class/instance/testing/testUndo2.st
A System-History-Tests.package/HistoryNodeTest.class/README.md
A System-History-Tests.package/HistoryNodeTest.class/definition.st
A System-History-Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testClose.st
A System-History-Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testEmptyHistory.st
A System-History-Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testGroup.st
A System-History-Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testOneGroup.st
A System-History-Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testOneItem.st
A System-History-Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testReset.st
A System-History-Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testTwoConsecutiveCloseGroup.st
A System-History-Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testTwoGroups.st
R Tests.package/FileDialogWindowTest.class/README.md
R Tests.package/FileDialogWindowTest.class/definition.st
R Tests.package/FileDialogWindowTest.class/instance/tests/testIssue6406.st
R Tests.package/FontTest.class/README.md
R Tests.package/FontTest.class/definition.st
R Tests.package/FontTest.class/instance/testing/testDisplay.st
R Tests.package/FontTest.class/instance/testing/testParagraph.st
R Tests.package/HistoryIteratorTest.class/README.md
R Tests.package/HistoryIteratorTest.class/definition.st
R Tests.package/HistoryIteratorTest.class/instance/running/setUp.st
R Tests.package/HistoryIteratorTest.class/instance/testing/testGroupedUndo1.st
R Tests.package/HistoryIteratorTest.class/instance/testing/testGroupedUndo2.st
R Tests.package/HistoryIteratorTest.class/instance/testing/testGrouping.st
R Tests.package/HistoryIteratorTest.class/instance/testing/testMaxSize.st
R Tests.package/HistoryIteratorTest.class/instance/testing/testUndo1.st
R Tests.package/HistoryIteratorTest.class/instance/testing/testUndo2.st
R Tests.package/HistoryNodeTest.class/README.md
R Tests.package/HistoryNodeTest.class/definition.st
R Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testClose.st
R Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testEmptyHistory.st
R Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testGroup.st
R Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testOneGroup.st
R Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testOneItem.st
R Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testReset.st
R Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testTwoConsecutiveCloseGroup.st
R Tests.package/HistoryNodeTest.class/instance/as yet unclassified/testTwoGroups.st
R Tests.package/MCAncestryTest.class/README.md
R Tests.package/MCAncestryTest.class/definition.st
R Tests.package/MCAncestryTest.class/instance/asserting/assertCommonAncestorOf_and_in_in_.st
R Tests.package/MCAncestryTest.class/instance/asserting/assertCommonAncestorOf_and_is_in_.st
R Tests.package/MCAncestryTest.class/instance/asserting/assertNamesOf_are_.st
R Tests.package/MCAncestryTest.class/instance/asserting/assertPathTo_is_.st
R Tests.package/MCAncestryTest.class/instance/building/tree.st
R Tests.package/MCAncestryTest.class/instance/building/twoPersonTree.st
R Tests.package/MCAncestryTest.class/instance/building/versionForName_in_.st
R Tests.package/MCAncestryTest.class/instance/tests/testCommonAncestors.st
R Tests.package/MCAncestryTest.class/instance/tests/testDescendants.st
R Tests.package/MCAncestryTest.class/instance/tests/testLinearPath.st
R Tests.package/MCAncestryTest.class/instance/tests/testPathToMissingAncestor.st
R Tests.package/MCChangeNotificationTest.class/README.md
R Tests.package/MCChangeNotificationTest.class/definition.st
R Tests.package/MCChangeNotificationTest.class/instance/events/modifiedEventFor_ofClass_.st
R Tests.package/MCChangeNotificationTest.class/instance/private/foreignMethod.st
R Tests.package/MCChangeNotificationTest.class/instance/running/setUp.st
R Tests.package/MCChangeNotificationTest.class/instance/tests/testCoreMethodModified.st
R Tests.package/MCChangeNotificationTest.class/instance/tests/testExtMethodModified.st
R Tests.package/MCChangeNotificationTest.class/instance/tests/testForeignMethodModified.st
R Tests.package/MCClassDefinitionTest.class/README.md
R Tests.package/MCClassDefinitionTest.class/class/as yet unclassified/classAComment.st
R Tests.package/MCClassDefinitionTest.class/class/as yet unclassified/classACommentStamp.st
R Tests.package/MCClassDefinitionTest.class/class/as yet unclassified/restoreClassAComment.st
R Tests.package/MCClassDefinitionTest.class/definition.st
R Tests.package/MCClassDefinitionTest.class/instance/private/classAComment.st
R Tests.package/MCClassDefinitionTest.class/instance/private/creationMessage.st
R Tests.package/MCClassDefinitionTest.class/instance/running/setUp.st
R Tests.package/MCClassDefinitionTest.class/instance/running/tearDown.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testCannotLoad.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testComparison.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testCreation.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testDefinitionString.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testEquals.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testEqualsSensitivity.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testKindOfSubclass.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testLoadAndUnload.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testValidTraitComposition.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testValidTraitComposition2.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testValidTraitComposition3.st
R Tests.package/MCClassDefinitionTest.class/instance/tests/testValidTraitComposition4.st
R Tests.package/MCDataStreamTest.class/README.md
R Tests.package/MCDataStreamTest.class/definition.st
R Tests.package/MCDataStreamTest.class/instance/testing/baseStreamType.st
R Tests.package/MCDependencySorterTest.class/README.md
R Tests.package/MCDependencySorterTest.class/class/testing/isUnitTest.st
R Tests.package/MCDependencySorterTest.class/definition.st
R Tests.package/MCDependencySorterTest.class/instance/asserting/assertItems_orderAs_withRequired_toLoad_.st
R Tests.package/MCDependencySorterTest.class/instance/asserting/assertItems_orderAs_withRequired_toLoad_extraProvisions_.st
R Tests.package/MCDependencySorterTest.class/instance/building/itemWithSpec_.st
R Tests.package/MCDependencySorterTest.class/instance/tests/testCascadingUnresolved.st
R Tests.package/MCDependencySorterTest.class/instance/tests/testCycle.st
R Tests.package/MCDependencySorterTest.class/instance/tests/testExtraProvisions.st
R Tests.package/MCDependencySorterTest.class/instance/tests/testMultiRequirementOrdering.st
R Tests.package/MCDependencySorterTest.class/instance/tests/testSimpleOrdering.st
R Tests.package/MCDependencySorterTest.class/instance/tests/testSimpleUnresolved.st
R Tests.package/MCDependencySorterTest.class/instance/tests/testUnusedAlternateProvider.st
R Tests.package/MCDictionaryRepositoryTest.class/README.md
R Tests.package/MCDictionaryRepositoryTest.class/definition.st
R Tests.package/MCDictionaryRepositoryTest.class/instance/actions/addVersion_.st
R Tests.package/MCDictionaryRepositoryTest.class/instance/running/setUp.st
R Tests.package/MCDictionaryRepositoryTest.class/instance/utility/deleteNode_.st
R Tests.package/MCDictionaryRepositoryTest.class/instance/utility/dictionary.st
R Tests.package/MCDirectoryRepositoryTest.class/README.md
R Tests.package/MCDirectoryRepositoryTest.class/definition.st
R Tests.package/MCDirectoryRepositoryTest.class/instance/accessing/directory.st
R Tests.package/MCDirectoryRepositoryTest.class/instance/actions/addVersion_.st
R Tests.package/MCDirectoryRepositoryTest.class/instance/running/setUp.st
R Tests.package/MCDirectoryRepositoryTest.class/instance/running/tearDown.st
R Tests.package/MCFileInTest.class/README.md
R Tests.package/MCFileInTest.class/definition.st
R Tests.package/MCFileInTest.class/instance/asserting/assertNoChange.st
R Tests.package/MCFileInTest.class/instance/running/setUp.st
R Tests.package/MCFileInTest.class/instance/running/tearDown.st
R Tests.package/MCFileInTest.class/instance/testing/alterInitialState.st
R Tests.package/MCFileInTest.class/instance/testing/assertFileOutFrom_canBeFiledInWith_.st
R Tests.package/MCFileInTest.class/instance/testing/assertInitializersCalled.st
R Tests.package/MCFileInTest.class/instance/testing/assertInitializersOrder.st
R Tests.package/MCFileInTest.class/instance/testing/assertSuccessfulLoadWith_.st
R Tests.package/MCFileInTest.class/instance/testing/testStWriter.st
R Tests.package/MCMczInstallerTest.class/README.md
R Tests.package/MCMczInstallerTest.class/class/as yet unclassified/isAbstract.st
R Tests.package/MCMczInstallerTest.class/class/as yet unclassified/suite.st
R Tests.package/MCMczInstallerTest.class/definition.st
R Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/assertDict_matchesInfo_.st
R Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/assertNoChange.st
R Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/assertVersionInfoPresent.st
R Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/deleteFile.st
R Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/fileName.st
R Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/fileStream.st
R Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/setUp.st
R Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/tearDown.st
R Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/testInstallFromFile.st
R Tests.package/MCMczInstallerTest.class/instance/as yet unclassified/testInstallFromStream.st
R Tests.package/MCMergingTest.class/README.md
R Tests.package/MCMergingTest.class/definition.st
R Tests.package/MCMergingTest.class/instance/asserting/assertMerge_with_base_gives_conflicts_.st
R Tests.package/MCMergingTest.class/instance/asserting/assert_hasElements_.st
R Tests.package/MCMergingTest.class/instance/emulating/handleConflict_.st
R Tests.package/MCMergingTest.class/instance/emulating/snapshotWithElements_.st
R Tests.package/MCMergingTest.class/instance/tests/testAdditiveConflictlessMerge.st
R Tests.package/MCMergingTest.class/instance/tests/testComplexConflictlessMerge.st
R Tests.package/MCMergingTest.class/instance/tests/testIdenticalModification.st
R Tests.package/MCMergingTest.class/instance/tests/testLocalModifyRemoteRemove.st
R Tests.package/MCMergingTest.class/instance/tests/testLocalRemoveRemoteModify.st
R Tests.package/MCMergingTest.class/instance/tests/testMultiPackageMerge.st
R Tests.package/MCMergingTest.class/instance/tests/testMultiPackageMerge2.st
R Tests.package/MCMergingTest.class/instance/tests/testMultiPackageMerge3.st
R Tests.package/MCMergingTest.class/instance/tests/testMultipleConflicts.st
R Tests.package/MCMergingTest.class/instance/tests/testSimultaneousModification.st
R Tests.package/MCMergingTest.class/instance/tests/testSimultaneousRemove.st
R Tests.package/MCMergingTest.class/instance/tests/testSubtractiveConflictlessMerge.st
R Tests.package/MCMethodDefinitionTest.class/README.md
R Tests.package/MCMethodDefinitionTest.class/definition.st
R Tests.package/MCMethodDefinitionTest.class/instance/mocks/override.st
R Tests.package/MCMethodDefinitionTest.class/instance/running/ownPackage.st
R Tests.package/MCMethodDefinitionTest.class/instance/running/setUp.st
R Tests.package/MCMethodDefinitionTest.class/instance/running/tearDown.st
R Tests.package/MCMethodDefinitionTest.class/instance/testing/testCannotLoad.st
R Tests.package/MCMethodDefinitionTest.class/instance/testing/testComparison.st
R Tests.package/MCMethodDefinitionTest.class/instance/testing/testLoadAndUnload.st
R Tests.package/MCMethodDefinitionTest.class/instance/testing/testPartiallyRevertOverrideMethod.st
R Tests.package/MCMethodDefinitionTest.class/instance/testing/testRevertOldMethod.st
R Tests.package/MCMethodDefinitionTest.class/instance/testing/testRevertOverrideMethod.st
R Tests.package/MCMockDependency.class/README.md
R Tests.package/MCMockDependency.class/class/instance creation/fromTree_.st
R Tests.package/MCMockDependency.class/definition.st
R Tests.package/MCMockDependency.class/instance/accessing/children.st
R Tests.package/MCMockDependency.class/instance/accessing/initializeWithTree_.st
R Tests.package/MCMockDependency.class/instance/accessing/name.st
R Tests.package/MCMockDependency.class/instance/comparing/=.st
R Tests.package/MCMockDependency.class/instance/comparing/hash.st
R Tests.package/MCMockDependency.class/instance/mocks/mockVersionInfo.st
R Tests.package/MCMockDependency.class/instance/mocks/uuidForName_.st
R Tests.package/MCMockDependency.class/instance/resolving/hasResolution.st
R Tests.package/MCMockDependency.class/instance/resolving/resolve.st
R Tests.package/MCOrganizationTest.class/README.md
R Tests.package/MCOrganizationTest.class/definition.st
R Tests.package/MCOrganizationTest.class/instance/tests/testLoadAndUnload.st
R Tests.package/MCOrganizationTest.class/instance/tests/testReordering.st
R Tests.package/MCOrganizationTest.class/instance/tests/testReorderingWithNoCategoriesInVersion.st
R Tests.package/MCOrganizationTest.class/instance/tests/testReorderingWithRemovals.st
R Tests.package/MCPackageTest.class/README.md
R Tests.package/MCPackageTest.class/definition.st
R Tests.package/MCPackageTest.class/instance/private/aMethodRemoved_.st
R Tests.package/MCPackageTest.class/instance/running/tearDown.st
R Tests.package/MCPackageTest.class/instance/tests/testUnload.st
R Tests.package/MCPackageTest.class/instance/tests/testUnloadWithAdditionalTracking.st
R Tests.package/MCPatchTest.class/README.md
R Tests.package/MCPatchTest.class/definition.st
R Tests.package/MCPatchTest.class/instance/running/setUp.st
R Tests.package/MCPatchTest.class/instance/running/tearDown.st
R Tests.package/MCPatchTest.class/instance/tests/testPatchContents.st
R Tests.package/MCRepositoryAuthorizationTest.class/README.md
R Tests.package/MCRepositoryAuthorizationTest.class/definition.st
R Tests.package/MCRepositoryAuthorizationTest.class/instance/accessing/exampleServerUrl.st
R Tests.package/MCRepositoryAuthorizationTest.class/instance/asserting/assert_on_hasUser_withPassword_.st
R Tests.package/MCRepositoryAuthorizationTest.class/instance/tests/testEmptyCredentials.st
R Tests.package/MCRepositoryAuthorizationTest.class/instance/tests/testNoCredentials.st
R Tests.package/MCRepositoryAuthorizationTest.class/instance/tests/testOverrideStoredCredentials.st
R Tests.package/MCRepositoryAuthorizationTest.class/instance/tests/testStoredCredentials.st
R Tests.package/MCRepositoryAuthorizationTest.class/instance/tests/testStoredCredentialsUsesMostSpecific.st
R Tests.package/MCRepositoryTest.class/README.md
R Tests.package/MCRepositoryTest.class/class/testing/isAbstract.st
R Tests.package/MCRepositoryTest.class/definition.st
R Tests.package/MCRepositoryTest.class/instance/accessing/snapshotAt_.st
R Tests.package/MCRepositoryTest.class/instance/actions/addVersionWithSnapshot_name_.st
R Tests.package/MCRepositoryTest.class/instance/actions/addVersion_.st
R Tests.package/MCRepositoryTest.class/instance/actions/saveSnapshot1.st
R Tests.package/MCRepositoryTest.class/instance/actions/saveSnapshot2.st
R Tests.package/MCRepositoryTest.class/instance/actions/saveSnapshot_named_.st
R Tests.package/MCRepositoryTest.class/instance/asserting/assertMissing_.st
R Tests.package/MCRepositoryTest.class/instance/asserting/assertVersionInfos_.st
R Tests.package/MCRepositoryTest.class/instance/building/snapshot1.st
R Tests.package/MCRepositoryTest.class/instance/building/snapshot2.st
R Tests.package/MCRepositoryTest.class/instance/building/versionWithSnapshot_name_.st
R Tests.package/MCRepositoryTest.class/instance/tests/testAddAndLoad.st
R Tests.package/MCRepositoryTest.class/instance/tests/testIncludesName.st
R Tests.package/MCRepositoryTest.class/instance/tests/testLoadMissingNode.st
R Tests.package/MCRepositoryTest.class/instance/tests/testStoreAndLoad.st
R Tests.package/MCScannerTest.class/README.md
R Tests.package/MCScannerTest.class/definition.st
R Tests.package/MCScannerTest.class/instance/asserting/assertScans_.st
R Tests.package/MCScannerTest.class/instance/tests/test1.st
R Tests.package/MCScannerTest.class/instance/tests/test2.st
R Tests.package/MCScannerTest.class/instance/tests/test3.st
R Tests.package/MCScannerTest.class/instance/tests/test4.st
R Tests.package/MCScannerTest.class/instance/tests/test5.st
R Tests.package/MCScannerTest.class/instance/tests/test6.st
R Tests.package/MCSerializationTest.class/README.md
R Tests.package/MCSerializationTest.class/definition.st
R Tests.package/MCSerializationTest.class/instance/asserting/assertClass_providesServices_.st
R Tests.package/MCSerializationTest.class/instance/asserting/assertDependenciesMatchWith_.st
R Tests.package/MCSerializationTest.class/instance/asserting/assertExtensionProvidedBy_.st
R Tests.package/MCSerializationTest.class/instance/asserting/assertSnapshotsMatchWith_.st
R Tests.package/MCSerializationTest.class/instance/asserting/assertVersionInfosMatchWith_.st
R Tests.package/MCSerializationTest.class/instance/asserting/assertVersionsMatchWith_.st
R Tests.package/MCSerializationTest.class/instance/mocks/mockDiffyVersion.st
R Tests.package/MCSerializationTest.class/instance/testing/testMcdSerialization.st
R Tests.package/MCSerializationTest.class/instance/testing/testMczSerialization.st
R Tests.package/MCSerializationTest.class/instance/testing/testStSerialization.st
R Tests.package/MCSnapshotBrowserTest.class/README.md
R Tests.package/MCSnapshotBrowserTest.class/definition.st
R Tests.package/MCSnapshotBrowserTest.class/instance/asserting/assertAListIncludes_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/asserting/assertAListMatches_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/asserting/assertButtonExists_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/asserting/assertButtonOn_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/asserting/assertTextIs_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/asserting/denyAListHasSelection_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/asserting/denyAListIncludesAnyOf_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/asserting/denyButtonOn_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/morphic/annotationTextMorph.st
R Tests.package/MCSnapshotBrowserTest.class/instance/morphic/buttonMorphs.st
R Tests.package/MCSnapshotBrowserTest.class/instance/morphic/findButtonWithLabel_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/morphic/findListContaining_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/morphic/listMorphs.st
R Tests.package/MCSnapshotBrowserTest.class/instance/morphic/morphsOfClass_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/morphic/textMorph.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/allCategories.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/allMethods.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/allProtocols.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/classABooleanMethods.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/classAClassProtocols.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/classAComment.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/classADefinitionString.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/classAProtocols.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/classAclassDefinitionString.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/definedClasses.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/falsehoodMethodSource.st
R Tests.package/MCSnapshotBrowserTest.class/instance/private/protocolsForClass_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/running/setUp.st
R Tests.package/MCSnapshotBrowserTest.class/instance/selecting/selectMockClassA.st
R Tests.package/MCSnapshotBrowserTest.class/instance/simulating/clickOnButton_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/simulating/clickOnListItem_.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testButtonMutex.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testCategorySelected.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testClassSelected.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testClassSideClassSelected.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testComment.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testFourColumns.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testMethodIsCleared.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testMethodSelected.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testNoSelection.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testProtocolIsCleared.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testProtocolSelected.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testTextPane.st
R Tests.package/MCSnapshotBrowserTest.class/instance/testing/testThreeButtons.st
R Tests.package/MCSnapshotResource.class/README.md
R Tests.package/MCSnapshotResource.class/class/accessing/mockPackage.st
R Tests.package/MCSnapshotResource.class/class/accessing/mockPackageName.st
R Tests.package/MCSnapshotResource.class/class/accessing/takeSnapshot.st
R Tests.package/MCSnapshotResource.class/definition.st
R Tests.package/MCSnapshotResource.class/instance/accessing/definitions.st
R Tests.package/MCSnapshotResource.class/instance/accessing/snapshot.st
R Tests.package/MCSnapshotResource.class/instance/running/setUp.st
R Tests.package/MCSnapshotTest.class/README.md
R Tests.package/MCSnapshotTest.class/definition.st
R Tests.package/MCSnapshotTest.class/instance/running/setUp.st
R Tests.package/MCSnapshotTest.class/instance/tests/testCreation.st
R Tests.package/MCSnapshotTest.class/instance/tests/testInstanceReuse.st
R Tests.package/MCSortingTest.class/README.md
R Tests.package/MCSortingTest.class/class/testing/isUnitTest.st
R Tests.package/MCSortingTest.class/definition.st
R Tests.package/MCSortingTest.class/instance/actions/sortDefinitions_.st
R Tests.package/MCSortingTest.class/instance/building/classNamed_.st
R Tests.package/MCSortingTest.class/instance/building/methodNamed_class_meta_.st
R Tests.package/MCSortingTest.class/instance/building/sortKeyFor_.st
R Tests.package/MCSortingTest.class/instance/tests/testConsistentSorting.st
R Tests.package/MCSortingTest.class/instance/tests/testSortOrder.st
R Tests.package/MCStReaderTest.class/README.md
R Tests.package/MCStReaderTest.class/definition.st
R Tests.package/MCStReaderTest.class/instance/tests/testCommentWithStyle.st
R Tests.package/MCStReaderTest.class/instance/tests/testCommentWithoutStyle.st
R Tests.package/MCStReaderTest.class/instance/tests/testMethodWithStyle.st
R Tests.package/MCStReaderTest.class/instance/util/commentWithStyle.st
R Tests.package/MCStReaderTest.class/instance/util/commentWithoutStyle.st
R Tests.package/MCStReaderTest.class/instance/util/methodWithStyle.st
R Tests.package/MCStWriterTest.class/README.md
R Tests.package/MCStWriterTest.class/definition.st
R Tests.package/MCStWriterTest.class/instance/asserting/assertAllChunksAreWellFormed.st
R Tests.package/MCStWriterTest.class/instance/asserting/assertChunkIsWellFormed_.st
R Tests.package/MCStWriterTest.class/instance/asserting/assertContentsOf_match_.st
R Tests.package/MCStWriterTest.class/instance/asserting/assertMethodChunkIsWellFormed_.st
R Tests.package/MCStWriterTest.class/instance/data/expectedClassDefinitionA.st
R Tests.package/MCStWriterTest.class/instance/data/expectedClassDefinitionB.st
R Tests.package/MCStWriterTest.class/instance/data/expectedClassMethodDefinition.st
R Tests.package/MCStWriterTest.class/instance/data/expectedMethodDefinition.st
R Tests.package/MCStWriterTest.class/instance/data/expectedMethodDefinitionWithBangs.st
R Tests.package/MCStWriterTest.class/instance/data/expectedOrganizationDefinition.st
R Tests.package/MCStWriterTest.class/instance/testing/expectedInitializerA.st
R Tests.package/MCStWriterTest.class/instance/testing/expectedInitializerASubclass.st
R Tests.package/MCStWriterTest.class/instance/testing/methodWithBangs.st
R Tests.package/MCStWriterTest.class/instance/testing/setUp.st
R Tests.package/MCStWriterTest.class/instance/testing/testClassDefinitionA.st
R Tests.package/MCStWriterTest.class/instance/testing/testClassDefinitionB.st
R Tests.package/MCStWriterTest.class/instance/testing/testClassMethodDefinition.st
R Tests.package/MCStWriterTest.class/instance/testing/testInitializerDefinition.st
R Tests.package/MCStWriterTest.class/instance/testing/testMethodDefinition.st
R Tests.package/MCStWriterTest.class/instance/testing/testMethodDefinitionWithBangs.st
R Tests.package/MCStWriterTest.class/instance/testing/testOrganizationDefinition.st
R Tests.package/MCSubDirectoryRepositoryTest.class/README.md
R Tests.package/MCSubDirectoryRepositoryTest.class/definition.st
R Tests.package/MCSubDirectoryRepositoryTest.class/instance/tests/testIssue7368.st
R Tests.package/MCTestCase.class/README.md
R Tests.package/MCTestCase.class/class/as yet unclassified/isAbstract.st
R Tests.package/MCTestCase.class/class/as yet unclassified/resources.st
R Tests.package/MCTestCase.class/class/testing/isUnitTest.st
R Tests.package/MCTestCase.class/definition.st
R Tests.package/MCTestCase.class/instance/asserting/assertPackage_matches_.st
R Tests.package/MCTestCase.class/instance/asserting/assertSnapshot_matches_.st
R Tests.package/MCTestCase.class/instance/asserting/assertVersionInfo_matches_.st
R Tests.package/MCTestCase.class/instance/asserting/assertVersion_matches_.st
R Tests.package/MCTestCase.class/instance/compiling/change_toReturn_.st
R Tests.package/MCTestCase.class/instance/compiling/compileClass_source_category_.st
R Tests.package/MCTestCase.class/instance/compiling/restoreMocks.st
R Tests.package/MCTestCase.class/instance/mocks/commentForClass_.st
R Tests.package/MCTestCase.class/instance/mocks/commentStampForClass_.st
R Tests.package/MCTestCase.class/instance/mocks/mockCategoryName.st
R Tests.package/MCTestCase.class/instance/mocks/mockClassA.st
R Tests.package/MCTestCase.class/instance/mocks/mockClassB.st
R Tests.package/MCTestCase.class/instance/mocks/mockClass_super_.st
R Tests.package/MCTestCase.class/instance/mocks/mockDependencies.st
R Tests.package/MCTestCase.class/instance/mocks/mockEmptyPackage.st
R Tests.package/MCTestCase.class/instance/mocks/mockExtensionMethodCategory.st
R Tests.package/MCTestCase.class/instance/mocks/mockInstanceA.st
R Tests.package/MCTestCase.class/instance/mocks/mockMessageString.st
R Tests.package/MCTestCase.class/instance/mocks/mockMethod_class_source_meta_.st
R Tests.package/MCTestCase.class/instance/mocks/mockOverrideMethodCategory.st
R Tests.package/MCTestCase.class/instance/mocks/mockPackage.st
R Tests.package/MCTestCase.class/instance/mocks/mockSnapshot.st
R Tests.package/MCTestCase.class/instance/mocks/mockToken_.st
R Tests.package/MCTestCase.class/instance/mocks/mockVersion.st
R Tests.package/MCTestCase.class/instance/mocks/mockVersionInfo.st
R Tests.package/MCTestCase.class/instance/mocks/mockVersionInfoWithAncestor_.st
R Tests.package/MCTestCase.class/instance/mocks/mockVersionInfo_.st
R Tests.package/MCTestCase.class/instance/mocks/mockVersionName.st
R Tests.package/MCTestCase.class/instance/mocks/mockVersionWithAncestor_.st
R Tests.package/MCTestCase.class/instance/mocks/mockVersionWithDependencies.st
R Tests.package/MCTestCase.class/instance/mocks/treeFrom_.st
R Tests.package/MCTestCase.class/instance/running/runCase.st
R Tests.package/MCVersionTest.class/README.md
R Tests.package/MCVersionTest.class/definition.st
R Tests.package/MCVersionTest.class/instance/asserting/assert_orders_as_.st
R Tests.package/MCVersionTest.class/instance/asserting/assert_orders_as_unresolved_.st
R Tests.package/MCVersionTest.class/instance/building/dependencyFromTree_.st
R Tests.package/MCVersionTest.class/instance/building/versionFromTree_.st
R Tests.package/MCVersionTest.class/instance/running/setUp.st
R Tests.package/MCVersionTest.class/instance/tests/testAllAvailablePostOrder.st
R Tests.package/MCVersionTest.class/instance/tests/testAllMissing.st
R Tests.package/MCVersionTest.class/instance/tests/testAllUnresolved.st
R Tests.package/MCVersionTest.class/instance/tests/testDependencyOrder.st
R Tests.package/MCVersionTest.class/instance/tests/testPostOrder.st
R Tests.package/MCVersionTest.class/instance/tests/testWithAll.st
R Tests.package/MCVersionTest.class/instance/tests/testWithAllMissing.st
R Tests.package/MCVersionTest.class/instance/tests/testWithAllUnresolved.st
R Tests.package/MCWorkingCopyTest.class/README.md
R Tests.package/MCWorkingCopyTest.class/definition.st
R Tests.package/MCWorkingCopyTest.class/instance/accessing/description.st
R Tests.package/MCWorkingCopyTest.class/instance/actions/basicMerge_.st
R Tests.package/MCWorkingCopyTest.class/instance/actions/load_.st
R Tests.package/MCWorkingCopyTest.class/instance/actions/merge_.st
R Tests.package/MCWorkingCopyTest.class/instance/actions/snapshot.st
R Tests.package/MCWorkingCopyTest.class/instance/asserting/assertNameWhenSavingTo_is_.st
R Tests.package/MCWorkingCopyTest.class/instance/asserting/assertNumberWhenSavingTo_is_.st
R Tests.package/MCWorkingCopyTest.class/instance/private/packageName.st
R Tests.package/MCWorkingCopyTest.class/instance/running/clearPackageCache.st
R Tests.package/MCWorkingCopyTest.class/instance/running/setUp.st
R Tests.package/MCWorkingCopyTest.class/instance/running/tearDown.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testAncestorMerge.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testBackport.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testDoubleRepeatedMerge.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testMergeIntoImageWithNoChanges.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testMergeIntoUnmodifiedImage.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testNaming.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testOptimizedLoad.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testRedundantMerge.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testRepeatedMerge.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testRepositoryFallback.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testSelectiveBackport.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testSimpleMerge.st
R Tests.package/MCWorkingCopyTest.class/instance/tests/testSnapshotAndLoad.st
R Tests.package/MultiFontTest.class/README.md
R Tests.package/MultiFontTest.class/definition.st
R Tests.package/ScriptLoaderTest.class/README.md
R Tests.package/ScriptLoaderTest.class/definition.st
R Tests.package/ScriptLoaderTest.class/instance/testing/testAllCurrentPackagesContainScriptLoader.st
R Tests.package/ScriptLoaderTest.class/instance/testing/testAllCurrentVersionsContainsScriptLoader.st
R Tests.package/ScriptLoaderTest.class/instance/testing/testCurrentPackagesDoesNotContainScriptLoader.st
R Tests.package/ScriptLoaderTest.class/instance/testing/testMarkPackageBeforeLoad.st
R Tests.package/StandardSystemFontsTest.class/README.md
R Tests.package/StandardSystemFontsTest.class/definition.st
R Tests.package/StandardSystemFontsTest.class/instance/utilities/assert_familyName_pointSize_.st
R Tests.package/StandardSystemFontsTest.class/instance/utilities/saveStandardSystemFontsDuring_.st
R Tests.package/TextEditorTest.class/README.md
R Tests.package/TextEditorTest.class/definition.st
R Tests.package/TextEditorTest.class/instance/accessing/testCursorEnd.st
R Tests.package/TextEditorTest.class/instance/accessing/testSetSearchString.st
R Tests.package/TextEditorTest.class/instance/as yet unclassified/keyboardEvent.st
A Text-Edition-Tests.package/TextEditorTest.class/README.md
A Text-Edition-Tests.package/TextEditorTest.class/definition.st
A Text-Edition-Tests.package/TextEditorTest.class/instance/accessing/testCursorEnd.st
A Text-Edition-Tests.package/TextEditorTest.class/instance/accessing/testSetSearchString.st
A Text-Edition-Tests.package/TextEditorTest.class/instance/as yet unclassified/keyboardEvent.st
A Text-Tests.package/FontTest.class/README.md
A Text-Tests.package/FontTest.class/definition.st
A Text-Tests.package/FontTest.class/instance/testing/testDisplay.st
A Text-Tests.package/FontTest.class/instance/testing/testParagraph.st
A Text-Tests.package/MultiFontTest.class/README.md
A Text-Tests.package/MultiFontTest.class/definition.st
A Tool-FileList-Tests.package/FileDialogWindowTest.class/README.md
A Tool-FileList-Tests.package/FileDialogWindowTest.class/definition.st
A Tool-FileList-Tests.package/FileDialogWindowTest.class/instance/tests/testIssue6406.st
Log Message:
-----------
40169
http://files.pharo.org/image/40/40169.zip
Aug. 14, 2014
[pharo-project/pharo-core]
by GitHub
Branch: refs/tags/40169
Home: https://github.com/pharo-project/pharo-core
Aug. 14, 2014
Re: [Pharo-dev] [ANN] HelloPharo - webapp deployment tool
by François Stephany
Oh, I forgot to mention Sven. He wrote the original
http://stfx.eu/pharo-server/
We basically stole all his Bash-fu to build the main script:
https://github.com/fstephany/hello-pharo/blob/master/app
Thanks a lot Sven!
On Thu, Aug 14, 2014 at 1:02 PM, François Stephany <
tulipe.moutarde(a)gmail.com> wrote:
> Hello,
>
> At Ta Mère, we are used to deploy Ruby/Rails application with Heroku or on
> VPS with Capistrano. Almost everybody uses the same tools and techniques in
> the Rails community so deployment is quite easy once you grasp the process.
>
> The same process was quite frustrating with Pharo. To solve that, we've
> built HelloPharo. It is a tool to deploy small apps to a Linux VPS/VM.
>
> It is heavily inspired by Capistrano, it prones convention over
> configuration and it wants to be full stack (e.g., serve the assets,
> restart the processes). It is built with Ansible.
>
> We haven't released a fixed version yet but the tool starts to be in a
> good-enough shape to be shown. We want to grab some feedback and fix the
> most obvious limitations (see the README for more) before releasing version
> 0.1.0.
>
> If you or your company uses a well defined process to deploy pharo
> webapps, we are all ears. We think that having a canonical way to deploy
> simple apps is a must if we want to see wider Pharo adoption for small web
> companies. This process *must* be Unix friendly if we want to attract
> Python or Ruby people. Most of them are Devops anyway, the command line is
> their friend, NOT something they want to avoid.
>
> Pull requests (for code or instructions in the README) are more than
> welcome. The code and the documentation are MIT licensed.
>
> https://github.com/fstephany/hello-pharo/
>
> Cheers,
> Francois
>
Aug. 14, 2014
[ANN] HelloPharo - webapp deployment tool
by François Stephany
Hello,
At Ta Mère, we are used to deploy Ruby/Rails application with Heroku or on
VPS with Capistrano. Almost everybody uses the same tools and techniques in
the Rails community so deployment is quite easy once you grasp the process.
The same process was quite frustrating with Pharo. To solve that, we've
built HelloPharo. It is a tool to deploy small apps to a Linux VPS/VM.
It is heavily inspired by Capistrano, it prones convention over
configuration and it wants to be full stack (e.g., serve the assets,
restart the processes). It is built with Ansible.
We haven't released a fixed version yet but the tool starts to be in a
good-enough shape to be shown. We want to grab some feedback and fix the
most obvious limitations (see the README for more) before releasing version
0.1.0.
If you or your company uses a well defined process to deploy pharo webapps,
we are all ears. We think that having a canonical way to deploy simple apps
is a must if we want to see wider Pharo adoption for small web companies.
This process *must* be Unix friendly if we want to attract Python or Ruby
people. Most of them are Devops anyway, the command line is their friend,
NOT something they want to avoid.
Pull requests (for code or instructions in the README) are more than
welcome. The code and the documentation are MIT licensed.
https://github.com/fstephany/hello-pharo/
Cheers,
Francois
Aug. 14, 2014
Re: [Pharo-dev] [ANN] Ephestos - Using and Coding Blender from inside Pharo
by kilon alios
Documentation for Ephestos is now located here --->
https://www.gitbook.io/book/kilon/ephestos
documentation will be kept updated with latest features from now on.
I was succesfull in implementing python errors. Now Blender Python errors
trigger the Pharo debugger that will allow you to fix the faulty code and
resume as you do with regular Pharo code.
I am also looking into Phratch to create a visual language for Ephestos.
On Tue, Jul 22, 2014 at 2:35 AM, kilon alios <kilon.alios(a)gmail.com> wrote:
> Yeah !!! I did it !!! :D
>
> Apparently I was doing it wrong , by returning the message in
> doesNotUnderstand , this is why the next MNU was returned by Object instead
> of my parser class.
>
> Say bye bye to ugly nil syntax , Ephestos now supports normal pharo
> messaging.
>
> This ugly thing
>
> EphParser bpy:nil data:nil objects:'[ "Cube" ]' location:
> '=(0.0,0.0,0.0)' .
>
> has turned to this
>
> EphCParser bpy ; data ; objects:'["Cube"]' location:'=(0.0,0.0,0.0)' ; e.
>
> or this
>
> EphCParser bpy data objects:'["Cube"]' location:'=(0.0,0.0,0.0)'; e.
>
> or you can use parentheses . You can send all keywords as single message
> as I do in the example or separate them with parentheses to different
> messages , it does not matter because the parser unites them into a single
> string anyway. Message e, formulates the python string and marks the end of
> pharo command.
>
> Means that now I offer full python support with no weird pharo syntax :)
> New parser is called EphCParser if you want to give it a try, I am still
> working on it to make sure it works well in all scenarios.
>
> this is an example of using python globals for making the code shorter
>
> EphCParser x:'=1.0' ; e.
> EphCParser cube:'=bpy.data.objects["Cube"]';e.
> EphCParser cube ; location:'=(x,0.0,0.0)' ; e.
>
> You may wonder , "why not use pharo variables instead ?" . Well you can do
> that too ;)
>
> cube := EphCParser bpy data objects:'["Cube"]'.
> cube location:'=(x,0.0,0.0)' ; e.
>
> I will try to test the new parser a bit more and I will work on 1)
> receiving data from Blender 2) python errors triggering the pharo debugger
> and 3) buffer together multiple lines of python code for complex stuff
> like class and function definition etc 4) support BGE .
>
>
> On Sun, Jul 20, 2014 at 10:06 PM, Damien Cassou <damien.cassou(a)gmail.com>
> wrote:
>
>> On Sun, Jul 20, 2014 at 7:34 PM, kilon alios <kilon.alios(a)gmail.com>
>> wrote:
>> > With the help of Damien I was successful in creating a parser for pharo
>> to
>> > python syntax. Using pharo messages you can now construct automagically
>> > python strings and pass it to blender . This way you no longer need to
>> type
>> > in python syntax to do python stuff. So a big thanks to Damien. Note
>> this
>> > method of course is slower because of parsing and heavy usage of regex
>> > string matching.
>>
>>
>> are you sure you need to pass 'nil' everywhere? In
>> #doesNotUnderstand:, you could check for the number of arguments and
>> generate something appropriate based on that.
>>
>> --
>> Damien Cassou
>> http://damiencassou.seasidehosting.st
>>
>> "Success is the ability to go from one failure to another without
>> losing enthusiasm."
>> Winston Churchill
>>
>>
>
Aug. 14, 2014
[pharo-project/pharo-core] d077cb: 40168
by GitHub
Branch: refs/heads/4.0
Home: https://github.com/pharo-project/pharo-core
Commit: d077cb74420d3720e112e223835d58324bb3e3df
https://github.com/pharo-project/pharo-core/commit/d077cb74420d3720e112e223…
Author: Jenkins Build Server <board(a)pharo-project.org>
Date: 2014-08-14 (Thu, 14 Aug 2014)
Changed paths:
R NECompletion.package/NECContext.class/instance/private-roel-typer/findCommonSuperclass_.st
R NECompletion.package/NECContext.class/instance/private-roel-typer/guessWithRoelTyper_class_.st
M NECompletion.package/NECContext.class/instance/private/guessInstVarClass_.st
M NECompletion.package/NECMenuMorph.class/instance/drawing/drawLine_on_rectangle_.st
M NECompletion.package/NECPreferences.class/definition.st
R NECompletion.package/NECReadMe.class/README.md
R NECompletion.package/NECReadMe.class/definition.st
M NECompletion.package/NECSymbols.class/README.md
M NECompletion.package/NECSymbols.class/definition.st
R NECompletion.package/NECTestClass.class/class/as yet unclassified/initialize.st
A NECompletion.package/NECTestClass.class/class/initialization/initialize.st
R NECompletion.package/NECTestSuperClass.class/class/as yet unclassified/initialize.st
A NECompletion.package/NECTestSuperClass.class/class/initialization/initialize.st
R NECompletion.package/NECUnseparatedModel.class/README.md
R NECompletion.package/NECUnseparatedModel.class/definition.st
R NECompletion.package/NECUnseparatedModel.class/instance/action/completionAt_.st
R NECompletion.package/extension/Workspace/instance/guessTypeForNameFromOCompletion_.st
M Nautilus.package/PackageTreeNautilusUI.class/instance/private/selectPackageFor_.st
R RecentSubmissions.package/MessageList.class/README.md
R RecentSubmissions.package/MessageList.class/definition.st
R RecentSubmissions.package/MessageList.class/instance/accessing/lastEntry.st
R RecentSubmissions.package/MessageList.class/instance/accessing/methodReferenceList.st
R RecentSubmissions.package/MessageList.class/instance/accessing/methodReferenceList_.st
R RecentSubmissions.package/MessageList.class/instance/actions/addMethodReferenceSilently_.st
R RecentSubmissions.package/MessageList.class/instance/actions/addMethodReference_.st
R RecentSubmissions.package/MessageList.class/instance/actions/clearAll.st
R RecentSubmissions.package/MessageList.class/instance/actions/removeMethodReference_.st
R RecentSubmissions.package/MessageList.class/instance/actions/revertLastMethodSubmission.st
R RecentSubmissions.package/MessageList.class/instance/initialization/initialize.st
R RecentSubmissions.package/MessageList.class/instance/userinterface/open.st
R RecentSubmissions.package/MessageList.class/instance/userinterface/updateView.st
M RecentSubmissions.package/RecentMessageList.class/README.md
M RecentSubmissions.package/RecentMessageList.class/class/instance creation/resetUniqueInstance.st
R RecentSubmissions.package/RecentMessageList.class/class/setting/recentMessageListMenuOn_.st
A RecentSubmissions.package/RecentMessageList.class/class/tool registration/recentMessageListMenuOn_.st
M RecentSubmissions.package/RecentMessageList.class/definition.st
A RecentSubmissions.package/RecentMessageList.class/instance/accessing/lastEntry.st
M RecentSubmissions.package/RecentMessageList.class/instance/accessing/maxListSize.st
M RecentSubmissions.package/RecentMessageList.class/instance/accessing/maxListSize_.st
A RecentSubmissions.package/RecentMessageList.class/instance/accessing/methodReferenceList.st
A RecentSubmissions.package/RecentMessageList.class/instance/accessing/methodReferenceList_.st
A RecentSubmissions.package/RecentMessageList.class/instance/actions/addMethodReferenceSilently_.st
A RecentSubmissions.package/RecentMessageList.class/instance/actions/clearAll.st
A RecentSubmissions.package/RecentMessageList.class/instance/actions/removeMethodReference_.st
A RecentSubmissions.package/RecentMessageList.class/instance/actions/revertLastMethodSubmission.st
M RecentSubmissions.package/RecentMessageList.class/instance/event handler/aClassHasBeenCommented_.st
M RecentSubmissions.package/RecentMessageList.class/instance/initialization/initialize.st
M RecentSubmissions.package/RecentMessageList.class/instance/initialization/registerToAnnouncements.st
A RecentSubmissions.package/RecentMessageList.class/instance/private/createAClassReference_.st
A RecentSubmissions.package/RecentMessageList.class/instance/private/createTheMethodReference_.st
M RecentSubmissions.package/RecentMessageList.class/instance/private/removeAMethod_.st
R RecentSubmissions.package/RecentMessageList.class/instance/ring creation/createAClassReference_.st
R RecentSubmissions.package/RecentMessageList.class/instance/ring creation/createTheMethodReference_.st
A RecentSubmissions.package/RecentMessageList.class/instance/userinterface/open.st
A RecentSubmissions.package/RecentMessageList.class/instance/userinterface/updateView.st
A ScriptLoader40.package/ScriptLoader.class/instance/pharo - scripts/script168.st
A ScriptLoader40.package/ScriptLoader.class/instance/pharo - updates/update40168.st
M ScriptLoader40.package/ScriptLoader.class/instance/public/commentForCurrentUpdate.st
M System-Changes.package/ChangeSet.class/class/cleanup/cleanUp_.st
R System-Changes.package/ChangeSet.class/class/current changeset/noChanges.st
R System-Changes.package/ChangeSet.class/class/enumerating/existingOrNewChangeSetNamed_.st
M System-Changes.package/ChangeSet.class/class/enumerating/gatherChangeSets.st
R System-Changes.package/ChangeSet.class/class/enumerating/removeEmptyUnnamedChangeSets.st
M System-Changes.package/ChangeSet.class/class/filein%2Fout/fileOutChangeSetsNamed_.st
M System-Changes.package/ChangeSet.class/class/instance creation/new.st
M System-Changes.package/ChangeSet.class/class/scanning/scanFile_category_class_meta_stamp_.st
M System-Changes.package/ChangeSet.class/class/scanning/scanFile_from_to_.st
M System-Changes.package/ChangeSet.class/class/services/newChangeSet.st
M System-Changes.package/ChangeSet.class/class/services/newChangesFromStream_named_.st
M System-Changes.package/ChangeSet.class/instance/filein%2Fout/checkForUnclassifiedMethods.st
M System-Changes.package/ChangeSet.class/instance/filein%2Fout/checkForUncommentedMethods.st
M System-Changes.package/ChangeSet.class/instance/filein%2Fout/checkForUnsentMessages.st
M System-Changes.package/ChangeSet.class/instance/filein%2Fout/fileOut.st
M System-Changes.package/ChangeSet.class/instance/filein%2Fout/fileOutChangesFor_on_.st
M System-Changes.package/ChangeSet.class/instance/filein%2Fout/fileOutPSFor_on_.st
M System-Changes.package/ChangeSet.class/instance/filein%2Fout/fileOutPostscriptOn_.st
M System-Changes.package/ChangeSet.class/instance/filein%2Fout/fileOutPreambleOn_.st
M System-Changes.package/ChangeSet.class/instance/filein%2Fout/lookForSlips.st
M System-Changes.package/ChangeSet.class/instance/method changes/hasAnyChangeForSelector_.st
M System-Changes.package/ChangeSet.class/instance/printing/printOn_.st
M System-Changes.package/ChangeSet.class/instance/private/fileOutClassDefinition_on_.st
M System-Changes.package/ClassChangeRecord.class/instance/definition/checkCoherence.st
M System-Changes.package/ClassChangeRecord.class/instance/removal/forgetChangesIn_.st
M System-Changes.package/extension/PositionableStream/instance/backChunk.st
M System-Changes.package/extension/PositionableStream/instance/basicNextChunk.st
M System-Changes.package/extension/PositionableStream/instance/copyPreamble_from_at_.st
M System-Changes.package/extension/PositionableStream/instance/nextChunk.st
Log Message:
-----------
40168
13825 MNU: receiver of protocolsFor: is nil
https://pharo.fogbugz.com/f/cases/13825
13835 Small cleanup in System-Changes
https://pharo.fogbugz.com/f/cases/13835
13836 Clean up RecentSubmissions more
https://pharo.fogbugz.com/f/cases/13836
13834 Small Completion Cleanup
https://pharo.fogbugz.com/f/cases/13834
http://files.pharo.org/image/40/40168.zip
Aug. 14, 2014
[pharo-project/pharo-core]
by GitHub
Branch: refs/tags/40168
Home: https://github.com/pharo-project/pharo-core
Aug. 14, 2014
Re: [Pharo-dev] Pharo 3 backports
by Esteban Lorenzano
no, fixes in 3.0 goes in Pharo30Inbox.
the one that is bad is the validator⦠but AFAIK, it even shouldnât be running :P
I will take a look tomorrow at your changes.
Esteban
On 13 Aug 2014, at 19:08, Ben Coman <btc(a)openinworld.com> wrote:
> Where should we be putting slices for Pharo 3 backports. I am proposing my fix for "Extended Search... Implementors fooled by block variables" be backport for Pharo 3. I took a guess that Pharo30Inbox would be the place to put the slice, but the the report [1] from the monkey reports:
>
> Jenkins Job jenkins-Pharo-3.0-Issue-Validator-27054
> Could not Find Change:
> http://smalltalkhub.com/mc/Pharo/Pharo40Inbox/main
>
>
> So should Pharo 3 backports be put in Pharo40Inbox? (probably easiest short term workaround?)
> Or does something with the monkey need to be changed? (maybe longer term goal?)
>
> cheers -ben
>
> [1] https://ci.inria.fr/pharo/job/Pharo-3.0-Issue-Validator/27054//artifact/val…
>
Aug. 13, 2014