Karl Ramberg uploaded a new version of HelpSystem-Core to project The Trunk:
http://source.squeak.org/trunk/HelpSystem-Core-kfr.71.mcz==================== Summary ====================
Name: HelpSystem-Core-kfr.71
Author: kfr
Time: 22 April 2015, 10:26:02.845 pm
UUID: 6b432f5b-df7e-6f45-a5a8-1035da68e153
Ancestors: HelpSystem-Core-kfr.70
Get methods and hierarcy for the class opened in help browser
=============== Diff against HelpSystem-Core-kfr.70 ===============
Item was changed:
----- Method: SystemReference class>>forClass: (in category 'help topic creation') -----
forClass: aClass
|root topic |
root := HelpTopic named: 'System reference for ', aClass name.
+ topic := ClassAPIHelpTopic new theClass: aClass; withSubclasses: true; withMethods: true;
+ subclassesAsSeparateTopic: false.
- topic := ClassAPIHelpTopic new theClass: aClass.
root addSubtopic: topic.
^root!