The Trunk: HelpSystem-Core-mt.95.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-mt.95.mcz

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

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

Name: HelpSystem-Core-mt.95
Author: mt
Time: 15 August 2016, 10:43:56.795884 am
UUID: 1e078c39-dd80-d94a-ba07-073f7a34d333
Ancestors: HelpSystem-Core-mt.94

Fix small glitch when updating file-based help topics. Always create a new file instead of overwriting it.

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

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