[squeak-dev] The Trunk: HelpSystem-Core-mt.116.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Sep 19 08:26:06 UTC 2019


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

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

Name: HelpSystem-Core-mt.116
Author: mt
Time: 19 September 2019, 10:26:04.949528 am
UUID: 939aa976-1aea-3b44-a33f-f3373629832d
Ancestors: HelpSystem-Core-mt.115

Fixes a regression: make release notes editable in help browser again.

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

Item was removed:
- ----- Method: DirectoryBasedHelpTopic>>editable (in category 'testing') -----
- editable
- 	^ true!

Item was added:
+ ----- Method: FileBasedHelpTopic>>accept:for: (in category 'editing') -----
+ accept: newContents for: subtopic
+ 
+ 	FileStream forceNewFileNamed: self fileEntry fullName do: [:strm |
+ 		strm nextChunkPutWithStyle: newContents].
+ 	
+ 	!

Item was added:
+ ----- Method: FileBasedHelpTopic>>isEditable (in category 'testing') -----
+ isEditable
+ 
+ 	^ true!

Item was added:
+ ----- Method: FileBasedHelpTopic>>refresh (in category 'updating') -----
+ refresh
+ 
+ 	contents := nil.
+ 	self changed: #contents.!



More information about the Squeak-dev mailing list