The Trunk: HelpSystem-Core-mt.121.mcz

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

The Trunk: HelpSystem-Core-mt.121.mcz

commits-2
Marcel Taeumel uploaded a new version of HelpSystem-Core to project The Trunk:
http://source.squeak.org/trunk/HelpSystem-Core-mt.121.mcz

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

Name: HelpSystem-Core-mt.121
Author: mt
Time: 4 November 2020, 3:53:08.89062 pm
UUID: 7d6ada3e-f323-2142-aae9-dba673c642de
Ancestors: HelpSystem-Core-mt.120

Adds a blurb to custom help books. Thanks to Karl (kfr) for the idea!

(HelpSystem-Core-kfr.74 will be moved to treated)

=============== Diff against HelpSystem-Core-mt.120 ===============

Item was changed:
  ----- Method: ClassBasedHelpTopic>>contents (in category 'accessing') -----
  contents
- "A book has no contents. Only its pages do."
 
+ ^ helpClass bookBlurb!
- ^ ''!

Item was added:
+ ----- Method: CustomHelp class>>bookBlurb (in category 'accessing') -----
+ bookBlurb
+ "Returns a short summary of the custom help book"
+
+ ^ self organization classComment!

Item was changed:
  ----- Method: CustomHelp class>>bookName (in category 'accessing') -----
  bookName
  "Returns the name of the custom help book"
 
+ ^ self name!
- ^'Help'!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: HelpSystem-Core-mt.121.mcz

Christoph Thiede

Hm, this is conflicting with my proposal of displaying to contents of the defaultSubtopic, see HelpSystem-Core-ct.125:




If I open the default help browser, bookBlurbs for "Squeak", "Tools", "The Project" etc. are empty anyway. What would the best strategy to merge both approaches? Are there any real users of bookBlurb at all? :-)

Best,
Christoph

Von: Squeak-dev <[hidden email]> im Auftrag von [hidden email] <[hidden email]>
Gesendet: Mittwoch, 4. November 2020 15:53:09
An: [hidden email]; [hidden email]
Betreff: [squeak-dev] The Trunk: HelpSystem-Core-mt.121.mcz
 
Marcel Taeumel uploaded a new version of HelpSystem-Core to project The Trunk:
http://source.squeak.org/trunk/HelpSystem-Core-mt.121.mcz

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

Name: HelpSystem-Core-mt.121
Author: mt
Time: 4 November 2020, 3:53:08.89062 pm
UUID: 7d6ada3e-f323-2142-aae9-dba673c642de
Ancestors: HelpSystem-Core-mt.120

Adds a blurb to custom help books. Thanks to Karl (kfr) for the idea!

(HelpSystem-Core-kfr.74 will be moved to treated)

=============== Diff against HelpSystem-Core-mt.120 ===============

Item was changed:
  ----- Method: ClassBasedHelpTopic>>contents (in category 'accessing') -----
  contents
-        "A book has no contents. Only its pages do."
        
+        ^ helpClass bookBlurb!
-        ^ ''!

Item was added:
+ ----- Method: CustomHelp class>>bookBlurb (in category 'accessing') -----
+ bookBlurb
+        "Returns a short summary of the custom help book"
+       
+        ^ self organization classComment!

Item was changed:
  ----- Method: CustomHelp class>>bookName (in category 'accessing') -----
  bookName
         "Returns the name of the custom help book"
        
+        ^ self name!
-        ^'Help'!




Carpe Squeak!