AbstractSettingsApplication.st
changeset 9835 b43a25708762
parent 9833 0ef5a7088355
child 9836 ae825d999ef9
--- a/AbstractSettingsApplication.st	Mon Apr 18 21:30:00 2011 +0200
+++ b/AbstractSettingsApplication.st	Mon Apr 18 21:40:41 2011 +0200
@@ -12415,9 +12415,24 @@
 
 #moveManagerDown
 'Move the selected entry down in the list.\(The first matching definition is used to determine which repository type is used.)'
+
+#sourceCache
+'After checkout, keep the sourcefile in a local file (to avoid repreated checkout of the same file)'
+
+#clearSourceCache
+'Remove all files from the source cache. Will lead to some temporary slowdown, when sources are refetched from the repository.file)'
+
+#condenseSourceCache
+'Cleanup old cached versions from the source cache.\Will keep only the current (newest) version in the cache.'
+
+#useLocalSources
+'If present, use the local source files (from the development system''s tree). If checkout fails, these will always be tried as second chance.'
+
+#keepMethodSourceInImage
+'After first file access, keep the method sources in the image itself.\Will grow the image over time (but who cares, these days)'
 )
 
-    "Modified: / 18-04-2011 / 21:12:01 / cg"
+    "Modified: / 18-04-2011 / 21:38:54 / cg"
 ! !
 
 !AbstractSettingsApplication::SourceCodeManagementSettingsAppl class methodsFor:'image specs'!
@@ -12673,6 +12688,7 @@
                        (FramedBoxSpec
                           label: 'Source Cache'
                           name: 'SourceCacheBox'
+                          activeHelpKey: sourceCache
                           labelPosition: topLeft
                           translateLabel: true
                           component: 
@@ -12719,6 +12735,7 @@
                                    (ActionButtonSpec
                                       label: 'Flush Cache now'
                                       name: 'FlushCacheNowButton'
+                                      activeHelpKey: clearSourceCache
                                       translateLabel: true
                                       tabable: true
                                       model: flushSourceCache
@@ -12728,6 +12745,7 @@
                                    (ActionButtonSpec
                                       label: 'Condense Cache now'
                                       name: 'CondenseCacheNowButton'
+                                      activeHelpKey: condenseSourceCache
                                       translateLabel: true
                                       tabable: true
                                       model: condenseSourceCache
@@ -12752,6 +12770,7 @@
                                 label: 'If Present, Use Local Source (Suppress Checkout)'
                                 name: 'CheckBox4'
                                 layout: (LayoutFrame 30 0 0 0 -5 1 23 0)
+                                activeHelpKey: useLocalSources
                                 enableChannel: useManager
                                 model: localSourceFirst
                                 translateLabel: true
@@ -12770,6 +12789,7 @@
                                 label: 'Keep Method Source (In Image)'
                                 name: 'CheckBox7'
                                 layout: (LayoutFrame 30 0 0 0 -5 1 23 0)
+                                activeHelpKey: keepMethodSourceInImage
                                 enableChannel: useManager
                                 model: keepMethodSource
                                 translateLabel: true
@@ -15709,9 +15729,9 @@
 !AbstractSettingsApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.387 2011-04-18 19:27:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.388 2011-04-18 19:40:41 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.387 2011-04-18 19:27:31 cg Exp $'
-! !
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.388 2011-04-18 19:40:41 cg Exp $'
+! !