[Pkg] The Trunk: SMLoader-gk.59.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jan 20 21:29:19 UTC 2011


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

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

Name: SMLoader-gk.59
Author: gk
Time: 12 April 2010, 12:59:01 am
UUID: 3dddfee9-991a-4068-b15c-914e580ff9cb
Ancestors: SMLoader-gk.58

Fixed an old URL.

=============== Diff against SMLoader-gk.58 ===============

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 Packages mailing list