[squeak-dev] Re: Display comments in MC patch browsers

Andreas Raab andreas.raab at gmx.de
Thu May 6 05:42:58 UTC 2010


On 5/5/2010 7:22 PM, David T. Lewis wrote:
> I added this update show changes to class comments in Monticello patch
> browsers. I put it in the inbox, since I have little experience with
> Monticello and I don't want to break something critical.

It looks good, if something breaks, I'll take the heat :-)

> Note that both Monticello-topa.392 and Monticello-dtl.392 are now in
> the inbox, so a merge may be needed.

Yup, did that.

Cheers,
   - Andreas

> On Thu, May 06, 2010 at 02:16:39AM +0000, commits at source.squeak.org wrote:
>> A new version of Monticello was added to project The Inbox:
>> http://source.squeak.org/inbox/Monticello-dtl.392.mcz
>>
>> ==================== Summary ====================
>>
>> Name: Monticello-dtl.392
>> Author: dtl
>> Time: 5 May 2010, 10:04:18.92 pm
>> UUID: a0e86123-a9ae-48f8-95fa-9181a1241a35
>> Ancestors: Monticello-ar.391
>>
>> Display class comment changes in Monticello patch browsers.
>>
>> =============== Diff against Monticello-ar.391 ===============
>>
>> Item was added:
>> + ----- Method: MCClassDefinition>>printCommentOn: (in category 'printing') -----
>> + printCommentOn: stream
>> + 	stream
>> + 		nextPut: $";
>> + 		nextPutAll: self comment asString;
>> + 		nextPut: $"
>> + !
>>
>> Item was changed:
>>    ----- Method: MCClassDefinition>>source (in category 'printing') -----
>>    source
>> + 	^ self definitionAndCommentString!
>> - 	^ self definitionString!
>>
>> Item was added:
>> + ----- Method: MCClassDefinition>>definitionAndCommentString (in category 'printing') -----
>> + definitionAndCommentString
>> + 	^ String streamContents: [:stream |
>> + 		self printDefinitionOn: stream.
>> + 		stream cr; cr.
>> + 		self printCommentOn: stream]!
>>
>
>




More information about the Squeak-dev mailing list