The Inbox: Tools-kks.943.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Tools-kks.943.mcz

commits-2
A new version of Tools was added to project The Inbox:
http://source.squeak.org/inbox/Tools-kks.943.mcz

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

Name: Tools-kks.943
Author: kks
Time: 1 March 2020, 5:31:21.925863 pm
UUID: 669645d6-dd0d-4904-91c6-a9d539751f95
Ancestors: Tools-mt.942

Browser printOut was writing chunk format into an html file making it unreadable. It now opens a help topic instead which is more useful. Perhaps, the menu item needs to be renamed to 'Help'.

=============== Diff against Tools-mt.942 ===============

Item was changed:
  ----- Method: Browser>>printOutClass (in category 'class functions') -----
  printOutClass
+ "Print class comments and methods into a hyperlinked text topic and open it in Help Browser"
- "Print a description of the selected class onto a file whose name is the
- category name followed by .html."
 
  Cursor write showWhile:
+ [self hasClassSelected ifTrue: [HelpBrowser openOn: self selectedClass asHelpTopic ]]!
- [self hasClassSelected ifTrue: [self selectedClass fileOutAsHtml: true]]!