The Trunk: HelpSystem-Core-pre.108.mcz

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

The Trunk: HelpSystem-Core-pre.108.mcz

commits-2
Patrick Rein uploaded a new version of HelpSystem-Core to project The Trunk:
http://source.squeak.org/trunk/HelpSystem-Core-pre.108.mcz

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

Name: HelpSystem-Core-pre.108
Author: pre
Time: 25 January 2019, 5:50:27.233527 pm
UUID: 52dfac29-5c8f-e646-957d-644c2ea478e9
Ancestors: HelpSystem-Core-pre.107

A minor commit which re-categorizes three methods to be consistent with the protocol they should belong to. This is required for the test of the new help topic.

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

Item was changed:
+ ----- Method: HelpBrowser>>detect:ifFound: (in category 'enumerating') -----
- ----- Method: HelpBrowser>>detect:ifFound: (in category 'enumeration') -----
  detect: block ifFound: foundBlock
 
  self do: [:topic :path | (block value: topic)
  ifTrue: [foundBlock cull: topic cull: path. ^ topic]].!

Item was changed:
+ ----- Method: HelpBrowser>>do: (in category 'enumerating') -----
- ----- Method: HelpBrowser>>do: (in category 'enumeration') -----
  do: block
 
  self do: block in: self toplevelTopics path: #().!

Item was changed:
+ ----- Method: HelpBrowser>>do:in:path: (in category 'enumerating') -----
- ----- Method: HelpBrowser>>do:in:path: (in category 'enumeration') -----
  do: block in: topics path: path
 
  topics do: [:topic |
  block cull: topic cull: path.
 
  topic hasSubtopics ifTrue: [
  self do: block in: topic subtopics path: path, {topic}]].!