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]! |
I did not mean to add the following two methods
The were added automatically because I loaded OB before. So the only thing I changed is the class comment which should be moved. Hannes 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]! On Thu, 22 Apr 2010 13:03:02.015 0000, [hidden email] <[hidden email]> wrote: > 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]! > > > |
Free forum by Nabble | Edit this page |