The Trunk: Environments-kfr.61.mcz

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

The Trunk: Environments-kfr.61.mcz

commits-2
Karl Ramberg uploaded a new version of Environments to project The Trunk:
http://source.squeak.org/trunk/Environments-kfr.61.mcz

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

Name: Environments-kfr.61
Author: kfr
Time: 3 December 2015, 1:58:55.138 pm
UUID: 2fd02cbd-d78c-4672-be7a-627a58cf0adf
Ancestors: Environments-cwp.60

Adds help interface so one can read all class and method comments in a HelpBrowser

=============== Diff against Environments-cwp.60 ===============

Item was changed:
  SystemOrganization addCategory: #'Environments-Core'!
- SystemOrganization addCategory: #'Environments-Policies'!
  SystemOrganization addCategory: #'Environments-Loading'!
+ SystemOrganization addCategory: #'Environments-Policies'!
+ SystemOrganization addCategory: #'Environments-Help'!

Item was added:
+ Object subclass: #EnvironmentsAPIDocumentation
+ instanceVariableNames: ''
+ classVariableNames: ''
+ poolDictionaries: ''
+ category: 'Environments-Help'!

Item was added:
+ ----- Method: EnvironmentsAPIDocumentation class>>asHelpTopic (in category 'as yet unclassified') -----
+ asHelpTopic
+
+ ^ (HelpTopic named: self bookName)
+ subtopics: (self packages collect: [:pkgName | PackageAPIHelpTopic new packageName: pkgName]);
+ yourself!

Item was added:
+ ----- Method: EnvironmentsAPIDocumentation class>>bookName (in category 'as yet unclassified') -----
+ bookName
+ ^'API Documentation'!

Item was added:
+ ----- Method: EnvironmentsAPIDocumentation class>>packages (in category 'as yet unclassified') -----
+ packages
+ ^#('Environments-Core' 'Environments-Loading' 'Environments-Policies')!