On 7/31/10 5:30 PM, "Casey Ransberger" <casey.obrien.r@gmail.com> wrote:

Hey all, 

I have a giant pile of images from the last two years. Many of them have experiments I'd rather not lose, but I tend to meander in a Squeak image, and forget to name the image files well, so I basically have a lot of images that might have interesting changes, and no easy way to figure out which ones I want to keep around, or extract things from.

I've gone through most of them manually. I'd like to be able to search an image for changes that have my initials attached to them, though, because poking around in a change sorter is perilous when there've been changes from the trunk (it's noisy.) I don't know enough about how/where changes are kept in the system to do that though. 

Any help would be much appreciated! I'd love it if I could inspect something in particular and find the data structure that my changes live in.

--
Casey Ransberger

I share the attatched hoping help you

File in 7207UtilitiesmethodsWithInitialsinClass.1.cs in your image
"Create a new Change Set:"
Utilities methodsWithInitials: 'edc' inClass: Object . " choose inspect "
self keysAndValuesDo:[:k :v | ChangeSet current adoptSelector: k forClass: v methodClass ] "Make this in code panel"

Export the .cs , you have the ObjectENH.2.cs (in my case_

Or do

"Utilities methodsWithInitials: 'edc' inPackage: 'Monticello'" (in my fork, so I could have my methods in current trunk”

Edgar