[squeak-dev] The Inbox: System-hjh.318.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Apr 22 13:03:19 UTC 2010


A new version of System was added to project The Inbox:
http://source.squeak.org/inbox/System-hjh.318.mcz

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

Name: System-hjh.318
Author: hjh
Time: 22 April 2010, 1:00:59.824 pm
UUID: 77033b59-cf7b-fe47-8067-9cc369160358
Ancestors: System-ul.317

Fixed documentation of class CodeLoader. People should be directed to use Installer instead.

=============== Diff against System-ul.317 ===============

Item was changed:
  Object subclass: #CodeLoader
  	instanceVariableNames: 'baseURL sourceFiles segments publicKey'
  	classVariableNames: 'DefaultBaseURL DefaultKey'
  	poolDictionaries: ''
  	category: 'System-Download'!
  
+ !CodeLoader commentStamp: 'hjh 4/22/2010 12:58' prior: 0!
- !CodeLoader commentStamp: 'nice 3/25/2010 22:59' prior: 0!
  CodeLoader provides a simple facility for loading code from the network.
  
+ CodeLoader has a very specific purpose, primarily for loading Etoys projects. It is not meant to be used for anything else. Use Installer for general purposes.
+ 
  Examples:
  	| loader |
  	loader := CodeLoader new.
  	loader baseURL:'http://isgwww.cs.uni-magdeburg.de/~raab/test/'.
  	loader localCache: #('.cache' 'source').
  	"Sources and segments can be loaded in parallel"
  	loader loadSourceFiles: #('file1.st' 'file2.st.gz').
  	loader localCache: #('.cache' 'segments').
  	loader loadSegments: #('is1.extseg' 'is2.extseg.gz').
  	"Install sources first - will wait until the files are actually loaded"
  	loader installSourceFiles.
  	"And then the segments"
  	loader installSegments.!

Item was added:
+ ----- Method: Preferences class>>mercuryPanel (in category 'standard queries') -----
+ mercuryPanel
+ 	^ self
+ 		valueOfFlag: #mercuryPanel
+ 		ifAbsent: [false]!

Item was added:
+ ----- Method: Preferences class>>chasingBrowsers (in category 'standard queries') -----
+ chasingBrowsers
+ 	^ self
+ 		valueOfFlag: #chasingBrowsers
+ 		ifAbsent: [true]!




More information about the Squeak-dev mailing list