The Trunk: HelpSystem-Core-ct.127.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-ct.127.mcz

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

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

Name: HelpSystem-Core-ct.127
Author: ct
Time: 14 December 2019, 12:40:38.430841 am
UUID: b862e17a-aac7-434c-a028-0e4c364feeb5
Ancestors: HelpSystem-Core-mt.118

Fix a small syntax error in the Help on Help cpde examples

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

Item was changed:
  ----- Method: HelpHowToHelpTopicsFromCode class>>step7 (in category 'pages') -----
  step7
+ <generated>
  "This method was automatically generated. Edit it using:"
  "HelpHowToHelpTopicsFromCode edit: #step7"
+ ^(HelpTopic
- ^HelpTopic
  title: 'Step 7 - Tips and Tricks'
+ contents:
+ 'STEP 7 - TIPS AND TRICKS
- contents:
- 'STEP 7 - TIPS AND TRICKS
 
  Tip1:
            If you implement the #pages method you can also
            use the name of a custom help class that should be
            integrated between the specific pages:
   
+ pages
+    ^#(firstPage MyAppTutorial secondPage)
-               #pages
-                    ^(firstPage MyAppTutorial secondPage)
 
  Tip2:
            You can easily edit the help contents of a page by
            using the #edit: message. For our example just evaluate:
 
  MyAppHelp edit: #firstPage
 
      This will open a workspace with the help contents and
      when you accept it it will be saved back to the help
      method defining the topic.  
 
 
+ !!' readStream nextChunkText)
+ key: #step7;
+ shouldStyle: false;
+ yourself!
- '
- !