[Pkg] Installer: Installer-Core-kph.284.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Thu Jan 15 15:11:28 UTC 2009


A new version of Installer-Core was added to project Installer:
http://www.squeaksource.com/Installer/Installer-Core-kph.284.mcz

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

Name: Installer-Core-kph.284
Author: test
Time: 15 January 2009, 3:11:23 pm
UUID: 82c2043b-61ec-48a0-b504-5a52f70b0468
Ancestors: Installer-Core-kph.283

fixed #mcUrl - thanks damien

=============== Diff against Installer-Core-kph.283 ===============

Item was changed:
  ----- Method: InstallerMonticello>>mcUrl (in category 'monticello') -----
  mcUrl
  
+ 	^ self mc description 
+ 	!
- 	^ self mc, (self project ifNil: [''])!

Item was added:
+ ----- Method: InstallerMantis>>fixedIn (in category 'search-private') -----
+ fixedIn
+ 
+ 	^ self dataAtName: 'FixedIn'
+ !

Item was added:
+ ----- Method: InstallerMantis>>project (in category 'search-private') -----
+ project
+ 
+ 	^ self dataAtName: 'Project'
+ !

Item was changed:
  ----- Method: InstallerMantis>>dataGetFrom: (in category 'public interface') -----
  dataGetFrom: aPath
  
  	| rs line first col row out |
  		
  	rs := HTTPSocket httpGet: ma, aPath.
  	
  	first := true.
  	
  	out := OrderedCollection new.
  	
  	[ rs atEnd ] whileFalse: [ 
  		
  		line := rs nextLine readStream.
  		col := 1.
  		row := Array new: 9.
  		[ (line atEnd or: [ col > 9 ]) ] whileFalse: [ row at: col put: (line upTo: $|). col := col + 1 ].	
  
  		rs next.
+ 		[ out add: (self class new in: self row: row) ] ifError: []
+ 		
+ 	 ].
- 		out add: (self class new in: self row: row) ].
  		
  	^ out
  "
  self reset.
  self getBugsList 
  "!



More information about the Packages mailing list