[squeak-dev] The Trunk: MorphicExtras-ul.58.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Nov 18 04:32:05 UTC 2009


Andreas Raab uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-ul.58.mcz

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

Name: MorphicExtras-ul.58
Author: ul
Time: 18 November 2009, 12:17:49 pm
UUID: 8a42c71b-2c81-c741-ab9d-c4f69e67e1c1
Ancestors: MorphicExtras-nice.57

Fixed the reference to PreferenceBrowser in the tools flap defining quad.
After loading this package, do it:
Flaps initializeFlapsQuads.
This will fix LocaleTest >> #testLocaleChanged

=============== Diff against MorphicExtras-nice.57 ===============

Item was changed:
  ----- Method: Flaps class>>defaultsQuadsDefiningToolsFlap (in category 'flaps registry') -----
  defaultsQuadsDefiningToolsFlap
  	"Answer a structure defining the default Tools flap.
  	previously in quadsDefiningToolsFlap"
  
  	^ OrderedCollection new
  	addAll: #(
  	(Browser 				prototypicalToolWindow		'Browser'			'A Browser is a tool that allows you to view all the code of all the classes in the system')
  	(TranscriptStream		openMorphicTranscript				'Transcript'			'A Transcript is a window usable for logging and debugging; browse references to #Transcript for examples of how to write to it.')
  	(Workspace			prototypicalToolWindow		'Workspace'			'A Workspace is a simple window for editing text.  You can later save the contents to a file if you desire.'));
  		add: {   FileList2 .
  				#prototypicalToolWindow.
  				'File List'.
  				'A File List is a tool for browsing folders and files on disks and FTP servers.' };
  	addAll: #(
  	(DualChangeSorter		prototypicalToolWindow		'Change Sorter'		'Shows two change sets side by side')
  	(SelectorBrowser		prototypicalToolWindow		'Method Finder'		'A tool for discovering methods by providing sample values for arguments and results')
  	(MessageNames		prototypicalToolWindow		'Message Names'		'A tool for finding, viewing, and editing all methods whose names contain a given character sequence.')
+ 	(PreferencesBrowser	prototypicalToolWindow	'Preferences'			'Allows you to control numerous options')
- 	(Preferences			preferencesControlPanel	'Preferences'			'Allows you to control numerous options')
  	(Utilities				recentSubmissionsWindow	'Recent'				'A message browser that tracks the most recently-submitted methods')
  	(ProcessBrowser		prototypicalToolWindow		'Processes'			'A Process Browser shows you all the running processes')
  	(Preferences			annotationEditingWindow	'Annotations'		'Allows you to specify the annotations to be shown in the annotation panes of browsers, etc.')
  		(PackagePaneBrowser	prototypicalToolWindow		'Packages'			'Package Browser:  like a System Browser, except that if has extra level of categorization in the top-left pane, such that class-categories are further organized into groups called "packages"')
  	(ChangeSorter			prototypicalToolWindow		'Change Set'			'A tool that allows you to view and manipulate all the code changes in a single change set'));
  		yourself!




More information about the Squeak-dev mailing list