(name 'Spec-Examples-StephanEggermont.30' message 'Spelling mistakes Desactivation -> Deactivation' id '27be950b-a72b-4f44-8a87-4ca2a213b5c1' date '10 July 2013' time '4:04:56.965102 pm' author 'StephanEggermont' ancestors ((name 'Spec-Examples-MarcusDenker.29' message '10727 Cleaning trigger: use for deprecation of event
	https://pharo.fogbugz.com/f/cases/10727
	
6489 Spec-ify DropListModel / TextModel
	https://pharo.fogbugz.com/f/cases/close/6489
' id '519af9f5-b77b-4075-bcd0-2cd8244ccc78' date '25 May 2013' time '1:14:17.793833 pm' author 'MarcusDenker' ancestors ((name 'Spec-Examples-BenjaminVanRyseghem.28' message 'Add back the list keyboard management (and add enter in addition to select the current selected item -> trigger the action again )' id 'c9b8f072-9e4d-4f76-aae8-ba9b7b41c630' date '24 May 2013' time '7:27:07.494067 pm' author 'BenjaminVanRyseghem' ancestors ((name 'Spec-Examples-BenjaminVanRyseghem.27' message '- Fix the 330 conflicts' id '2ccf158a-bb7c-467c-8d38-973cf8589a2e' date '19 May 2013' time '12:23:03.916296 pm' author 'BenjaminVanRyseghem' ancestors ((name 'Spec-Examples-MarcusDenker.26' message '10543 methodDict values -> methods
	https://pharo.fogbugz.com/f/cases/10543
	
10554 clean up #schematicTempNamesString
	https://pharo.fogbugz.com/f/cases/10554
	
10553 VirtualMachine --> Smalltalk vm
	https://pharo.fogbugz.com/f/cases/10553' id '71f2bb6d-66d2-4c01-982b-01bad69350f7' date '7 May 2013' time '1:04:47.028158 pm' author 'MarcusDenker' ancestors ((name 'Spec-Examples-MarcusDenker.25' message 'methodDict values -> methods' id 'aae68490-89fa-4286-83a0-9adc2d69d34b' date '6 May 2013' time '5:15:09.208741 pm' author 'MarcusDenker' ancestors ((name 'Spec-Examples-MarcusDenker.24' message '10443 Create Env object using NativeBoost
	https://pharo.fogbugz.com/f/cases/10443
	
10510 Random compiling related cleanups
	https://pharo.fogbugz.com/f/cases/10510

10515 case insensitive method categories sort
	https://pharo.fogbugz.com/f/cases/10515' id '407ab504-7cc4-4eac-a59d-9513594e23c7' date '4 May 2013' time '5:30:57.483485 pm' author 'MarcusDenker' ancestors ((name 'Spec-Examples-MarcusDenker.23' message '10510
Random compiling related cleanups' id '7c6f130e-bc55-44b1-b9dc-bb72da93bf2e' date '4 May 2013' time '10:27:54.84338 am' author 'MarcusDenker' ancestors ((name 'Spec-Examples-MarcusDenker.22' message '10458	New Spec examples
	https://pharo.fogbugz.com/f/cases/10458
	
10463 Decompiler related cleanup
	https://pharo.fogbugz.com/f/cases/10463' id '26811624-3c30-4409-bc73-aba7476425ed' date '1 May 2013' time '11:49:28.612 am' author 'MarcusDenker' ancestors ((name 'Spec-Examples-BenjaminVanRyseghem.21' message 'SLICE-Issue-10458-New-Spec-examples' id 'd8c68e05-d15b-488e-ae1d-73c21ab5b305' date '30 April 2013' time '4:19:56.223 pm' author 'BenjaminVanRyseghem' ancestors ((name 'Spec-Examples-MarcusDenker.20' message '10216 Fix two RB Related failing test
	https://pharo.fogbugz.com/f/cases/10216
	
10214 Spec example update
	https://pharo.fogbugz.com/f/cases/10214/
	
10212 New Spec version
	https://pharo.fogbugz.com/f/cases/10212' id '745ca8fc-8245-499b-bbdd-6f131d9ac23b' date '8 April 2013' time '10:06:49.052 am' author 'MarcusDenker' ancestors ((name 'Spec-Examples-BenjaminVanRyseghem.19' message 'empty log message' id 'ffd1ae6c-beef-4310-863d-f00009c0a215' date '3 April 2013' time '5:51:47.376 pm' author 'BenjaminVanRyseghem' ancestors ((name 'Spec-Examples-EstebanLorenzano.18' message 'Issue 7535:	[SPEC] ClassMethodBrowser double initialization
	http://code.google.com/p/pharo/issues/detail?id=7535
	
Issue 7546:	add failing windows NB tests as windows-only known failures
	http://code.google.com/p/pharo/issues/detail?id=7546
' id 'adde1f66-342b-4ae9-b1fc-8a15e1df45e9' date '20 February 2013' time '2:02:00.92 pm' author 'EstebanLorenzano' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Spec-Examples-SeanDeNigris.22' message 'New in v. 2:
Per Ben''s comments in the issue, for the case where the objects really are just labels, and their corresponding actions are not so cleanly programmable, you can now write e.g.:
	aDropList
		addItemLabeled: ''Open workspace'' do: [ Workspace open ];
		addItemLabeled: ''Inspect current morph'' do: [ uniformDropList selectedItem inspect ].

From v. 1:
Instead of:
colorItems := #(''Green'' ''Red'' ''Yellow'') collect: [ :e | DropListItem named: e do: [] ].
colorModel
    items: colorItems.
And then matching the strings that come back (yuck)...

You can now say:
colorModel
    items: { Color green. Color red. Color yellow };
    displayBlock: [ :e | e name capitalized ].

And then:
colorModel whenSelectedItemChangedDo: [ :color | Transcript show: color brightness ].' id '8ac0de53-abea-4511-8926-3559b97d91ff' date '17 April 2013' time '11:00:53.158 pm' author 'SeanDeNigris' ancestors ((name 'Spec-Examples-SeanDeNigris.21' message 'It''s a little ugly because I wanted to preserve the old raw-string behavior for now.

Instead of:
colorItems := #(''Green'' ''Red'' ''Yellow'') collect: [ :e | DropListItem named: e do: [] ].
colorModel
    items: colorItems.
And then matching the strings that come back (yuck)...

You can now say:
colorModel
    items: { Color green. Color red. Color yellow };
    displayBlock: [ :e | e name capitalized ].

And then:
colorModel whenSelectedItemChangedDo: [ :color | Transcript show: color brightness ].' id '2f55682e-0802-4b1d-9ff3-9bb7b9367571' date '15 April 2013' time '9:37:14.052 pm' author 'SeanDeNigris' ancestors ((id '745ca8fc-8245-499b-bbdd-6f131d9ac23b')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())