Marcel Taeumel uploaded a new version of Environments to project The Trunk:
http://source.squeak.org/trunk/Environments-mt.62.mcz==================== Summary ====================
Name: Environments-mt.62
Author: mt
Time: 14 August 2016, 12:33:15.105355 pm
UUID: 379d8222-e6fe-3f4c-8e71-eb718645ccb1
Ancestors: Environments-kfr.61
Embed help on Environments into Squeak Help. Make book naming consistent with help on WebClient etc.
=============== Diff against Environments-kfr.61 ===============
Item was changed:
+ EnvironmentsHelp subclass: #EnvironmentsAPIDocumentation
- Object subclass: #EnvironmentsAPIDocumentation
instanceVariableNames: ''
classVariableNames: ''
poolDictionaries: ''
category: 'Environments-Help'!
Item was changed:
----- Method: EnvironmentsAPIDocumentation class>>bookName (in category 'as yet unclassified') -----
bookName
+ ^'Reference'!
- ^'API Documentation'!
Item was added:
+ CustomHelp subclass: #EnvironmentsHelp
+ instanceVariableNames: ''
+ classVariableNames: ''
+ poolDictionaries: ''
+ category: 'Environments-Help'!
Item was added:
+ ----- Method: EnvironmentsHelp class>>bookName (in category 'accessing') -----
+ bookName
+
+ ^ 'Environments'!
Item was added:
+ ----- Method: EnvironmentsHelp class>>introduction (in category 'pages') -----
+ introduction
+ "This method was automatically generated. Edit it using:"
+ "EnvironmentsHelp edit: #introduction"
+ ^(HelpTopic
+ title: 'Introduction'
+ contents:
+ 'An Environment is an object that implements a policy for binding names to objects during compilation.
+
+ The simplest and most common use for environments is to allow two classes with the same name to peacefully co-exist.
+
+ See:
+
http://wiki.squeak.org/squeak/6218+
http://wiki.squeak.org/squeak/6219+
http://wiki.squeak.org/squeak/6220!!' readStream nextChunkText)
+ key: #introduction!
Item was added:
+ ----- Method: EnvironmentsHelp class>>pages (in category 'accessing') -----
+ pages
+
+ ^ #(introduction)!