[squeak-dev] The Inbox: HelpSystem-Core-kks.109.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Mar 8 09:22:35 UTC 2019


A new version of HelpSystem-Core was added to project The Inbox:
http://source.squeak.org/inbox/HelpSystem-Core-kks.109.mcz

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

Name: HelpSystem-Core-kks.109
Author: kks
Time: 8 March 2019, 2:52:33.288436 pm
UUID: a50742bc-0442-4e86-8c1f-7b54fb50754e
Ancestors: HelpSystem-Core-pre.108

Added # prefix to method names in help topics so that we can browse them directly with a single keystroke

=============== Diff against HelpSystem-Core-pre.108 ===============

Item was changed:
  ----- Method: ClassAPIHelpBuilder>>buildMethodTopicsOn:for: (in category 'private building') -----
  buildMethodTopicsOn: topic for: aClass
  	
  	topic contents: (String streamContents: [ :stream |
  		aClass selectors sort do: [ :selector |
  			stream 
  				nextPutAll: aClass name;
+ 				nextPutAll: '>>#';
- 				nextPutAll: '>>';
  				nextPutAll: selector asString;
  				cr;
  				nextPutAll: (
  					(aClass commentsAt: selector)
  						at: 1
  						ifAbsent: [ 'Method has no comment.' ]);
  				cr; cr ] ])!

Item was changed:
  ----- Method: MethodListHelpTopic>>contents (in category 'accessing') -----
  contents
  
  	^ (String streamContents: [ :stream |
  		self theClass selectors sort do: [ :selector |
  			stream 
  				nextPutAll: self theClass name;
+ 				nextPutAll: '>>#';
- 				nextPutAll: '>>';
  				nextPutAll: selector asString;
  				cr;
  				nextPutAll: (
  					(self theClass commentsAt: selector)
  						at: 1
  						ifAbsent: [ '-' ]);
  				cr; cr ] ])!



More information about the Squeak-dev mailing list