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]!