[squeak-dev] The Inbox: Help-Squeak-Project-ct.72.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Nov 15 18:19:51 UTC 2019


A new version of Help-Squeak-Project was added to project The Inbox:
http://source.squeak.org/inbox/Help-Squeak-Project-ct.72.mcz

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

Name: Help-Squeak-Project-ct.72
Author: ct
Time: 15 November 2019, 7:19:49.347005 pm
UUID: 4fd12cfe-84a9-ef46-bb9b-127004798eea
Ancestors: Help-Squeak-Project-mt.69

Migrates VersionsBrowser>>versionsHelpString into a HelpTopic class

Depends on Collections-ct.861.

=============== Diff against Help-Squeak-Project-mt.69 ===============

Item was added:
+ SqueakToolsHelp subclass: #SqueakToolsVersionsBrowserHelp
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'Help-Squeak-Project'!

Item was added:
+ ----- Method: SqueakToolsVersionsBrowserHelp class>>bookName (in category 'accessing') -----
+ bookName
+ 	<generated>
+ 	^'Versions Browser'!

Item was added:
+ ----- Method: SqueakToolsVersionsBrowserHelp class>>comparingVersions (in category 'pages') -----
+ comparingVersions
+ 	<generated>
+ 	"This method was automatically generated. Edit it using:"
+ 	"SqueakToolsVersionsBrowserHelp edit: #comparingVersions"
+ 	^(HelpTopic
+ 		title: 'Comparing versions'
+ 		contents: 
+ 'The code pane shows the source for the selected version. If "diffing" is in effect, then differences betwen the selected version and the version before it are pointed out in the pane. Turn diffing on and off by choosing "toggle diffing" from the list pane menu, or hitting the "diffs" button, or hitting cmd-D when the cursor is over the list pane.
+ 
+ To get a comparison between the selected version and the current version, choose "compare to current" from the list pane menu or hit the "compare to current" button. (This is meaningless if the current version is selected, and is unnecessary if you''''re interested in diffs from between the current version and the next-most-recent version, since the standard in-pane "diff" feature will give you that.)
+ 
+ You can also compare the selected version with any other version using the "compare to version..." menu choice.!!
+ ]style[(13 337 19 496)b,,b,!!' readStream nextChunkText)
+ 			key: #comparingVersions;
+ 			shouldStyle: false;
+ 			yourself!

Item was added:
+ ----- Method: SqueakToolsVersionsBrowserHelp class>>defaultPage (in category 'accessing') -----
+ defaultPage
+ 
+ 	^ #versionsBrowser!

Item was added:
+ ----- Method: SqueakToolsVersionsBrowserHelp class>>notes (in category 'pages') -----
+ notes
+ 	<generated>
+ 	"This method was automatically generated. Edit it using:"
+ 	"SqueakToolsVersionsBrowserHelp edit: #notes"
+ 	^(HelpTopic
+ 		title: 'Notes'
+ 		contents: 
+ 'If further versions of the method in question have been submitted elsewhere since you launched a particular Versions Browser, it will still stay nicely up-to-date if you''re in Morphic and have asked that smart updating be maintained; if you''re in mvc or in morphic but with smart-updating turned off, a versions browser is only brought up to date when you activate its window (and when you issue "revert" from within it, of course,) and you can also use the "update list" command to make certain the versions list is up to date.
+ 
+ The annotation pane in versions browsers shows information about the current version of the method in the image, not about the selected version.!!
+ ]style[(530 19 50 7 68),b,,i,!!' readStream nextChunkText)
+ 			key: #notes;
+ 			shouldStyle: false;
+ 			yourself!

Item was added:
+ ----- Method: SqueakToolsVersionsBrowserHelp class>>pages (in category 'accessing') -----
+ pages
+ 	<generated>
+ 	^ #(versionsBrowser comparingVersions revertVersion privacyFeatures notes)!

Item was added:
+ ----- Method: SqueakToolsVersionsBrowserHelp class>>privacyFeatures (in category 'pages') -----
+ privacyFeatures
+ 	<generated>
+ 	"This method was automatically generated. Edit it using:"
+ 	"SqueakToolsVersionsBrowserHelp edit: #privacyFeatures"
+ 	^(HelpTopic
+ 		title: 'Privacy features'
+ 		contents: 
+ 'To have the selected method deleted from the current change set permanently, hit the "remove from changes" button, or choose the corresponding command in the list pane menu. This is useful if you''ve put debugging code into a method, and now want to strip it out and cleanse your current change set of all memory of the excursion.!!
+ ]style[(35 294)b,!!' readStream nextChunkText)
+ 			key: #privacyFeatures;
+ 			shouldStyle: false;
+ 			yourself!

Item was added:
+ ----- Method: SqueakToolsVersionsBrowserHelp class>>revertVersion (in category 'pages') -----
+ revertVersion
+ 	<generated>
+ 	"This method was automatically generated. Edit it using:"
+ 	"SqueakToolsVersionsBrowserHelp edit: #revertVersion"
+ 	^(HelpTopic
+ 		title: 'Reverting versions'
+ 		contents: 
+ 'To revert to an earlier version, select it (in the list pane) and then do any of the following:
+ * Choose "revert to this version" from the list pane menu;
+ * Hit the "revert" button;
+ * Type ENTER in the code pane;
+ * Type cmd-s (alt-s) in the code pane.!!
+ ]style[(32 64 155)b,,I1!!' readStream nextChunkText)
+ 			key: #revertVersion;
+ 			shouldStyle: false;
+ 			yourself!

Item was added:
+ ----- Method: SqueakToolsVersionsBrowserHelp class>>versionsBrowser (in category 'pages') -----
+ versionsBrowser
+ 	<generated>
+ 	"This method was automatically generated. Edit it using:"
+ 	"SqueakToolsVersionsBrowserHelp edit: #versionsBrowser"
+ 	^(HelpTopic
+ 		title: 'What is a Versions Browser'
+ 		contents: 
+ 'The VersionsBrowser is a window that shows all implementations of a method or a class comment that have been ever installed in past or present. Inter alia, it allows you to compare certain versions or revert earlier versions.
+ 
+ Each entry in the list pane represents a version of the source code for the same method; the topmost entry is the current version, the next entry is the next most recent, etc.!!
+ ]style[(4 15 208 175)f1b,Rcode://VersionsBrowser browseMethod: VersionsBrowser >> #compareToOtherVersion;b,f1,!!' readStream nextChunkText)
+ 			key: #versionsBrowser;
+ 			shouldStyle: false;
+ 			yourself!

Item was added:
+ ----- Method: VersionsBrowser>>offerVersionsHelp (in category '*Help-Squeak-Project') -----
+ offerVersionsHelp
+ 
+ 	^ HelpBrowser openOn: SqueakToolsVersionsBrowserHelp!



More information about the Squeak-dev mailing list