[squeak-dev] The Trunk: SMLoader-cmm.61.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jan 20 21:48:34 UTC 2011


Chris Muller uploaded a new version of SMLoader to project The Trunk:
http://source.squeak.org/trunk/SMLoader-cmm.61.mcz

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

Name: SMLoader-cmm.61
Author: cmm
Time: 20 January 2011, 3:48:28.714 pm
UUID: c58a4d43-6551-4f14-ada2-14198d6a20da
Ancestors: SMLoader-cmm.60, SMLoader-gk.59

Merged gk.59.

=============== Diff against SMLoader-cmm.60 ===============

Item was changed:
  ----- Method: SMLoader>>help (in category 'interface') -----
  help
  	"Present help text. If there is a web server available, offer to open it.
  	Use the WebBrowser registry if possible, or Scamper if available."
  	| message browserClass |
  	message := 'Welcome to the SqueakMap package loader. 
  The names of packages are followed by (installed version -> latest version).
  If there is no arrow, your installed version of the package is the latest.
  Installed packages and releases are also in bold.
  The checkbox menu items at the bottom let you modify which packages 
  you''ll see. Take a look at them - only some packages are shown initially.
  The options available for a package depend on how it was packaged.
  If you like a package or have comments on it, please contact
  the author or the squeak mailing list.'.
  
  	browserClass := Smalltalk at: #WebBrowser ifPresent: [ :registry | registry default ].
  	browserClass := browserClass ifNil: [ Smalltalk at: #Scamper ifAbsent: [ ^self inform: message ]].
  
  	(self confirm: message, '
  Would you like to view more detailed help on the SqueakMap swiki page?') 
+ 	ifTrue: [ browserClass openOnUrl: 'http://wiki.squeak.org/squeak/2726' asUrl]!
- 	ifTrue: [ browserClass openOnUrl: 'http://minnow.cc.gatech.edu/squeak/2726' asUrl]!




More information about the Squeak-dev mailing list