#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Wed, 23 May 2018 05:53:50 +0200
changeset 18143 016a788c0ec3
parent 18142 d367ddfbb627
child 18144 e89e3cf7acb3
#UI_ENHANCEMENT by cg class: AbstractSettingsApplication::CommunicationLoggingSettingsAppl class added: #helpSpec changed: #windowSpec
AbstractSettingsApplication.st
--- a/AbstractSettingsApplication.st	Tue May 22 18:52:01 2018 +0200
+++ b/AbstractSettingsApplication.st	Wed May 23 05:53:50 2018 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2002 by eXept Software AG
               All Rights Reserved
@@ -2428,7 +2430,7 @@
                                extent: (Point 665 22)
                              )
                             (CheckBoxSpec
-                               label: 'Allow Paragraph in Identifiers (§)'
+                               label: 'Allow Paragraph in Identifiers (§)'
                                name: 'CheckBox10'
                                activeHelpKey: allowParagraphInIdentifier
                                uuid: '9c9316ac-1f3f-11b2-903e-3065ec8abe8a'
@@ -3756,6 +3758,37 @@
     ^ 'Launcher/codeGeneratorSettings.html'
 ! !
 
+!AbstractSettingsApplication::CommunicationLoggingSettingsAppl class methodsFor:'help spec'!
+
+helpSpec
+    "This resource specification was automatically generated
+     by the UIHelpTool of ST/X."
+
+    "Do not manually edit this!! If it is corrupted,
+     the UIHelpTool may not be able to read the specification."
+
+    "
+     UIHelpTool openOnClass:AbstractSettingsApplication::DebuggerSettingsAppl
+    "
+
+    <resource: #help>
+
+    ^ super helpSpec addPairsFrom:#(
+
+#logExecutedOSCommands
+'Display executed OS commands on the Transcript'
+
+#logHTTPRequests
+'Display outgoing HTTP request on the Transcript'
+
+#logSOAPRequests
+'Display outgoing SOAP request on the Transcript'
+
+)
+
+    "Created: / 23-05-2018 / 05:47:50 / Claus Gittinger"
+! !
+
 !AbstractSettingsApplication::CommunicationLoggingSettingsAppl class methodsFor:'image specs'!
 
 defaultIcon
@@ -3865,7 +3898,7 @@
                 (CheckBoxSpec
                    label: 'Log Outgoing HTTP Requests on Transcript'
                    name: 'LogHTTPRequests'
-                   activeHelpKey: LogHTTPRequests
+                   activeHelpKey: logHTTPRequests
                    model: logHTTPRequests
                    translateLabel: true
                    extent: (Point 435 30)
@@ -3873,7 +3906,7 @@
                 (CheckBoxSpec
                    label: 'Log Outgoing SOAP Requests on Transcript'
                    name: 'LogSOAPRequests'
-                   activeHelpKey: LogSOAPRequests
+                   activeHelpKey: logSOAPRequests
                    model: logSOAPRequests
                    translateLabel: true
                    extent: (Point 435 30)
@@ -3888,6 +3921,7 @@
      )
 
     "Modified: / 17-05-2018 / 12:50:11 / Stefan Vogel"
+    "Modified: / 23-05-2018 / 05:48:53 / Claus Gittinger"
 ! !
 
 !AbstractSettingsApplication::CommunicationLoggingSettingsAppl methodsFor:'aspects'!