From 9180465f44628ba0da95644f578282008b684f37 Mon Sep 17 00:00:00 2001 From: Tim Garrels Date: Fri, 19 Jul 2019 09:46:01 +0200 Subject: [PATCH 1/3] Made ICFolder use 'folderName' instead of 'name' --- .../instance/createEmailsWith.andName.and..st | 2 +- .../instance/currentUIDsFor..st | 2 +- .../ICEndPoint.class/methodProperties.json | 6 +++--- .../ICFolder.class/class/named.in..st | 2 +- .../ICFolder.class/class/named.in.with..st | 2 +- .../instance/childFolderNamed.ifAbsent..st | 4 ++-- .../childFolderNamed.with.ifAbsent..st | 8 ++++---- .../ICFolder.class/instance/folderName..st | 4 ++++ .../ICFolder.class/instance/folderName.st | 4 ++++ .../ICFolder.class/instance/name..st | 4 ---- .../ICFolder.class/instance/name.st | 4 ---- .../ICFolder.class/instance/path.st | 4 ++-- .../instance/startUpdateProcess..st | 2 +- .../ICFolder.class/instance/update..st | 2 +- .../ICFolder.class/methodProperties.json | 18 +++++++++--------- .../ICFolder.class/properties.json | 2 +- .../instance/testRetrieveBody.st | 2 +- .../ICEmailTest.class/methodProperties.json | 2 +- .../class/defaultConfigurationDictionary.st | 4 ++-- ...efaultInvalidKeysConfigurationDictionary.st | 2 +- .../methodProperties.json | 4 ++-- .../instance/emailListMenu..st | 2 +- .../instance/folderNameOf..st | 2 +- .../instance/labelForFolder..st | 4 ++-- .../ICFolderDialog.class/methodProperties.json | 8 ++++---- 25 files changed, 50 insertions(+), 50 deletions(-) create mode 100644 packages/IMAPClient-Core.package/ICFolder.class/instance/folderName..st create mode 100644 packages/IMAPClient-Core.package/ICFolder.class/instance/folderName.st delete mode 100644 packages/IMAPClient-Core.package/ICFolder.class/instance/name..st delete mode 100644 packages/IMAPClient-Core.package/ICFolder.class/instance/name.st diff --git a/packages/IMAPClient-Core.package/ICEndPoint.class/instance/createEmailsWith.andName.and..st b/packages/IMAPClient-Core.package/ICEndPoint.class/instance/createEmailsWith.andName.and..st index 69342bea..dc83b02a 100644 --- a/packages/IMAPClient-Core.package/ICEndPoint.class/instance/createEmailsWith.andName.and..st +++ b/packages/IMAPClient-Core.package/ICEndPoint.class/instance/createEmailsWith.andName.and..st @@ -11,7 +11,7 @@ createEmailsWith: maildirDirectory andName: directoryName and: relativeRootFolde "for each directory create Folder" (serverDirectory directoryNames) do: [:foldername | folder := (ICFolder new) - name: foldername; + folderName: foldername; endpoint: self; yourself. diff --git a/packages/IMAPClient-Core.package/ICEndPoint.class/instance/currentUIDsFor..st b/packages/IMAPClient-Core.package/ICEndPoint.class/instance/currentUIDsFor..st index de8c65fc..f1ad12bd 100644 --- a/packages/IMAPClient-Core.package/ICEndPoint.class/instance/currentUIDsFor..st +++ b/packages/IMAPClient-Core.package/ICEndPoint.class/instance/currentUIDsFor..st @@ -21,5 +21,5 @@ currentUIDsFor: anICFolder removeFirst; yourself)] ifTrue: [ - Transcript show: (anICFolder name), ' is an empty folder!'. + Transcript show: (anICFolder folderName), ' is an empty folder!'. ^ OrderedCollection new] \ No newline at end of file diff --git a/packages/IMAPClient-Core.package/ICEndPoint.class/methodProperties.json b/packages/IMAPClient-Core.package/ICEndPoint.class/methodProperties.json index 4780a64a..7b87435a 100644 --- a/packages/IMAPClient-Core.package/ICEndPoint.class/methodProperties.json +++ b/packages/IMAPClient-Core.package/ICEndPoint.class/methodProperties.json @@ -17,7 +17,7 @@ "errorInvalidAuthenticationConfiguration" : "js 5/15/2016 16:16", "errorInvalidConnectionConfiguration" : "js 5/15/2016 16:15", "errorLoginFailed" : "js 5/15/2016 14:57", - "errorNoConnection" : "js 5/15/2016 13:50", + "errorNoConnection" : "tg 7/19/2019 09:39", "errorNoPasswordSet" : "js 5/15/2016 13:51", "errorNoUsernameSet" : "js 5/15/2016 13:51", "expungeEmail" : "C.G. 7/25/2018 14:10", @@ -56,11 +56,11 @@ "connect" : "tg 7/15/2019 13:27", "connectAndLoginWith:" : "tg 7/15/2019 12:28", "connectWith:" : "tg 7/18/2019 23:00", - "createEmailsWith:andName:and:" : "C.G. 6/26/2018 10:51", + "createEmailsWith:andName:and:" : "tg 7/19/2019 09:18", "currentFolderName" : "C.G. 7/25/2018 13:50", "currentFolderName:" : "C.G. 7/25/2018 13:50", "currentUIDs" : "pm 6/3/2019 18:35", - "currentUIDsFor:" : "pm 6/3/2019 18:35", + "currentUIDsFor:" : "tg 7/19/2019 09:30", "deleteEmail:" : "tg 7/15/2019 12:42", "expungeEmail" : "mw 6/22/2018 23:00", "fatalErrorOccured" : "pm 6/9/2019 13:10", diff --git a/packages/IMAPClient-Core.package/ICFolder.class/class/named.in..st b/packages/IMAPClient-Core.package/ICFolder.class/class/named.in..st index 54834acd..44f3364b 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/class/named.in..st +++ b/packages/IMAPClient-Core.package/ICFolder.class/class/named.in..st @@ -4,7 +4,7 @@ named: name in: parent | newFolder | newFolder := self new. - newFolder name: name. + newFolder folderName: name. parent addFolder: newFolder. diff --git a/packages/IMAPClient-Core.package/ICFolder.class/class/named.in.with..st b/packages/IMAPClient-Core.package/ICFolder.class/class/named.in.with..st index e4f25e28..7ae142da 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/class/named.in.with..st +++ b/packages/IMAPClient-Core.package/ICFolder.class/class/named.in.with..st @@ -4,7 +4,7 @@ named: name in: parent with: endpoint | newFolder | newFolder := (self new) - name: name; + folderName: name; endpoint: endpoint. parent addFolder: newFolder. diff --git a/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.ifAbsent..st b/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.ifAbsent..st index 2ce0dc46..e5a29568 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.ifAbsent..st +++ b/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.ifAbsent..st @@ -1,6 +1,6 @@ folder hierarchy -childFolderNamed: name ifAbsent: block +childFolderNamed: childFolderName ifAbsent: block ^ self childFolders - detect: [:child | child name = name] + detect: [:child | child folderName = childFolderName] ifNone: [block value] \ No newline at end of file diff --git a/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.with.ifAbsent..st b/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.with.ifAbsent..st index 883704c9..eff3e160 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.with.ifAbsent..st +++ b/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.with.ifAbsent..st @@ -1,16 +1,16 @@ folder hierarchy -childFolderNamed: name with: delimiter ifAbsent: block +childFolderNamed: childFOlderName with: delimiter ifAbsent: block ^ self childFolders - detect: [:child | child name = name] + detect: [:child | child folderName = childFOlderName] ifNone: [ | rootPart childPart child parts | "splice at delimiter and ask child" - parts := name subStrings: delimiter. + parts := childFOlderName subStrings: delimiter. (parts size > 1) ifTrue: [ rootPart := parts first. childPart := parts allButFirst joinSeparatedBy: delimiter. - child := self childFolders detect: [ :childFolder | childFolder name = rootPart]. + child := self childFolders detect: [ :childFolder | childFolder folderName = rootPart]. child ifNotNil: [^ child childFolderNamed: childPart with: delimiter ifAbsent: block]]. ^ block value] \ No newline at end of file diff --git a/packages/IMAPClient-Core.package/ICFolder.class/instance/folderName..st b/packages/IMAPClient-Core.package/ICFolder.class/instance/folderName..st new file mode 100644 index 00000000..00a5b191 --- /dev/null +++ b/packages/IMAPClient-Core.package/ICFolder.class/instance/folderName..st @@ -0,0 +1,4 @@ +accessing +folderName: aString + + folderName := aString \ No newline at end of file diff --git a/packages/IMAPClient-Core.package/ICFolder.class/instance/folderName.st b/packages/IMAPClient-Core.package/ICFolder.class/instance/folderName.st new file mode 100644 index 00000000..85a68045 --- /dev/null +++ b/packages/IMAPClient-Core.package/ICFolder.class/instance/folderName.st @@ -0,0 +1,4 @@ +accessing +folderName + + ^ folderName ifNil: [folderName := self class defaultName] \ No newline at end of file diff --git a/packages/IMAPClient-Core.package/ICFolder.class/instance/name..st b/packages/IMAPClient-Core.package/ICFolder.class/instance/name..st deleted file mode 100644 index 44185269..00000000 --- a/packages/IMAPClient-Core.package/ICFolder.class/instance/name..st +++ /dev/null @@ -1,4 +0,0 @@ -accessing -name: aString - - name := aString \ No newline at end of file diff --git a/packages/IMAPClient-Core.package/ICFolder.class/instance/name.st b/packages/IMAPClient-Core.package/ICFolder.class/instance/name.st deleted file mode 100644 index c4bda415..00000000 --- a/packages/IMAPClient-Core.package/ICFolder.class/instance/name.st +++ /dev/null @@ -1,4 +0,0 @@ -accessing -name - - ^ name ifNil: [name := self class defaultName] \ No newline at end of file diff --git a/packages/IMAPClient-Core.package/ICFolder.class/instance/path.st b/packages/IMAPClient-Core.package/ICFolder.class/instance/path.st index a2e0ef69..7635d599 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/instance/path.st +++ b/packages/IMAPClient-Core.package/ICFolder.class/instance/path.st @@ -2,5 +2,5 @@ folder hierarchy path ^ (self parent == self endpoint rootFolder) - ifTrue: [ self name ] - ifFalse: [ self parent path, self endpoint hierarchyDelimiter, self name] \ No newline at end of file + ifTrue: [ self folderName ] + ifFalse: [ self parent path, self endpoint hierarchyDelimiter, self folderName] \ No newline at end of file diff --git a/packages/IMAPClient-Core.package/ICFolder.class/instance/startUpdateProcess..st b/packages/IMAPClient-Core.package/ICFolder.class/instance/startUpdateProcess..st index 83877c3a..4e32ffac 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/instance/startUpdateProcess..st +++ b/packages/IMAPClient-Core.package/ICFolder.class/instance/startUpdateProcess..st @@ -1,7 +1,7 @@ updateEmails startUpdateProcess: anUID - (self name = 'root') ifTrue: [^self]. + (self folderName = 'root') ifTrue: [^self]. [anUID ifNil: [self latestEmails: self class numberOfHeadersToFetchAtTheBeginning] diff --git a/packages/IMAPClient-Core.package/ICFolder.class/instance/update..st b/packages/IMAPClient-Core.package/ICFolder.class/instance/update..st index e0c0ba49..8af63e8a 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/instance/update..st +++ b/packages/IMAPClient-Core.package/ICFolder.class/instance/update..st @@ -3,7 +3,7 @@ update: aBlock ProgressNotification signal: (aBlock value) - extra: (self endpoint accountInfo accountName, ' Mailbox. Folder: ', self name). + extra: (self endpoint accountInfo accountName, ' Mailbox. Folder: ', self folderName). self startUpdateProcess: self highestUniqueID. self childFolders do: [:anICFolder | anICFolder update: aBlock] \ No newline at end of file diff --git a/packages/IMAPClient-Core.package/ICFolder.class/methodProperties.json b/packages/IMAPClient-Core.package/ICFolder.class/methodProperties.json index 9763e25f..23c22123 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/methodProperties.json +++ b/packages/IMAPClient-Core.package/ICFolder.class/methodProperties.json @@ -2,8 +2,8 @@ "class" : { "defaultName" : "js 6/7/2016 11:49", "errorChildDoesNotExist" : "js 6/14/2016 09:27", - "named:in:" : "C.G. 7/25/2018 14:12", - "named:in:with:" : "C.G. 7/4/2018 13:07", + "named:in:" : "tg 7/19/2019 09:27", + "named:in:with:" : "tg 7/19/2019 09:19", "newRootFolderWith:" : "C.G. 7/25/2018 14:12", "numberOfHeadersToFetchAtLoadOlderMails" : "DH 7/22/2018 22:37", "numberOfHeadersToFetchAtTheBeginning" : "DH 7/22/2018 22:37" }, @@ -11,9 +11,9 @@ "addFolder:" : "js 6/7/2016 13:09", "checkTopicality" : "pm 6/3/2019 18:34", "childFolderNamed:" : "C.G. 7/25/2018 14:02", - "childFolderNamed:ifAbsent:" : "C.G. 6/26/2018 10:58", + "childFolderNamed:ifAbsent:" : "tg 7/19/2019 09:19", "childFolderNamed:with:" : "C.G. 6/26/2018 11:01", - "childFolderNamed:with:ifAbsent:" : "DH 7/9/2018 00:23", + "childFolderNamed:with:ifAbsent:" : "tg 7/19/2019 09:29", "childFolders" : "pm 6/9/2019 13:12", "childFolders:" : "js 6/7/2016 11:32", "countFolders" : "C.G. 7/25/2018 14:02", @@ -22,19 +22,19 @@ "endpoint" : "ms 7/10/2016 13:24", "endpoint:" : "pm 6/9/2019 16:56", "fetchHeadersFrom:" : "pm 6/3/2019 18:33", + "folderName" : "tg 7/19/2019 09:17", + "folderName:" : "tg 7/19/2019 09:17", "highestUniqueID" : "pm 6/3/2019 18:34", "latestEmails:" : "pm 6/3/2019 18:34", "loadOlderMails" : "pm 6/3/2019 18:34", "lowestUniqueID" : "pm 6/3/2019 18:34", - "name" : "pm 6/9/2019 13:13", - "name:" : "js 6/7/2016 11:48", "numOfUnseenMails" : "C.G. 7/25/2018 14:03", "parent" : "tg 6/25/2019 21:21", "parent:" : "js 6/7/2016 11:32", - "path" : "C.G. 7/25/2018 14:03", + "path" : "tg 7/19/2019 09:20", "removeFolder:" : "C.G. 7/25/2018 14:03", "removeFolder:ifAbsent:" : "C.G. 7/25/2018 14:04", "retrieveFlagsFrom:to:" : "C.G. 7/25/2018 14:04", - "startUpdateProcess:" : "pm 6/3/2019 18:34", + "startUpdateProcess:" : "tg 7/19/2019 09:19", "update" : "pm 6/3/2019 18:34", - "update:" : "tg 7/10/2019 17:37" } } + "update:" : "tg 7/19/2019 09:19" } } diff --git a/packages/IMAPClient-Core.package/ICFolder.class/properties.json b/packages/IMAPClient-Core.package/ICFolder.class/properties.json index c0a1657e..3ab0f024 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/properties.json +++ b/packages/IMAPClient-Core.package/ICFolder.class/properties.json @@ -8,7 +8,7 @@ "instvars" : [ "parent", "childFolders", - "name", + "folderName", "emails", "endpoint" ], "name" : "ICFolder", diff --git a/packages/IMAPClient-Tests.package/ICEmailTest.class/instance/testRetrieveBody.st b/packages/IMAPClient-Tests.package/ICEmailTest.class/instance/testRetrieveBody.st index f9841a77..b0f5e764 100644 --- a/packages/IMAPClient-Tests.package/ICEmailTest.class/instance/testRetrieveBody.st +++ b/packages/IMAPClient-Tests.package/ICEmailTest.class/instance/testRetrieveBody.st @@ -10,7 +10,7 @@ testRetrieveBody folder := ICFolder new. folder endpoint: endpoint; - name: 'dummy'; + folderName: 'dummy'; parent: nil. self email folder: folder. diff --git a/packages/IMAPClient-Tests.package/ICEmailTest.class/methodProperties.json b/packages/IMAPClient-Tests.package/ICEmailTest.class/methodProperties.json index aa4ba267..6b2608fc 100644 --- a/packages/IMAPClient-Tests.package/ICEmailTest.class/methodProperties.json +++ b/packages/IMAPClient-Tests.package/ICEmailTest.class/methodProperties.json @@ -11,4 +11,4 @@ "testAsString" : "mw 5/11/2018 12:06", "testDateFormatted" : "pm 6/3/2019 18:52", "testMinimalHeaderAsString" : "C.G. 7/25/2018 17:53", - "testRetrieveBody" : "DH 7/9/2018 15:39" } } + "testRetrieveBody" : "tg 7/19/2019 09:31" } } diff --git a/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/class/defaultConfigurationDictionary.st b/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/class/defaultConfigurationDictionary.st index 4a681596..5b2093ee 100644 --- a/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/class/defaultConfigurationDictionary.st +++ b/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/class/defaultConfigurationDictionary.st @@ -2,9 +2,9 @@ constants defaultConfigurationDictionary ^ Dictionary newFrom: { - 'name' -> 'accountname'. + 'accountName' -> 'accountname'. 'address' -> 'imap.test.de'. - 'port' -> '42'. + 'port' -> 42. 'username' -> 'test@test.test'. 'ssl' -> true. } \ No newline at end of file diff --git a/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/class/defaultInvalidKeysConfigurationDictionary.st b/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/class/defaultInvalidKeysConfigurationDictionary.st index 77c9aa35..be79aed4 100644 --- a/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/class/defaultInvalidKeysConfigurationDictionary.st +++ b/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/class/defaultInvalidKeysConfigurationDictionary.st @@ -3,7 +3,7 @@ defaultInvalidKeysConfigurationDictionary ^ Dictionary newFrom: { 'address' -> 'imap.test.de'. - 'bort' -> '42'. + 'bort' -> 42. 'username' -> 'test@test.test'. 'ssl' -> true. } \ No newline at end of file diff --git a/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/methodProperties.json b/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/methodProperties.json index f1912bff..46f7573b 100644 --- a/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/methodProperties.json +++ b/packages/IMAPClient-Tests.package/ICEndPointConnectionConfigurationsTest.class/methodProperties.json @@ -1,7 +1,7 @@ { "class" : { - "defaultConfigurationDictionary" : "tg 6/20/2019 15:02", - "defaultInvalidKeysConfigurationDictionary" : "tg 6/20/2019 15:02", + "defaultConfigurationDictionary" : "tg 7/19/2019 09:33", + "defaultInvalidKeysConfigurationDictionary" : "tg 7/19/2019 09:32", "invalidDataDictionaryErrorMessage" : "pm 6/19/2019 14:26" }, "instance" : { "previousConnectionConfigurations" : "pm 6/11/2019 19:44", diff --git a/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/emailListMenu..st b/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/emailListMenu..st index e160ff56..b048e043 100644 --- a/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/emailListMenu..st +++ b/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/emailListMenu..st @@ -15,7 +15,7 @@ emailListMenu: aMenu ifTrue: ['Unflag'] ifFalse: ['Mark as flagged']) action: [self modifyFlag: #flagged]; - add: (self labelForDeletionAction: self selectedEmail folder name) + add: (self labelForDeletionAction: self selectedEmail folder folderName) action: #deleteEmail; add: 'Move to ...' subMenu: self folderListMenu. diff --git a/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/folderNameOf..st b/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/folderNameOf..st index abcf6f3b..63b133b8 100644 --- a/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/folderNameOf..st +++ b/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/folderNameOf..st @@ -17,4 +17,4 @@ folderNameOf: folder 1 to: levelCounter do: [ :i | offset := offset , ' ']. - ^ offset, folder name \ No newline at end of file + ^ offset, folder folderName \ No newline at end of file diff --git a/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/labelForFolder..st b/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/labelForFolder..st index 69929e5c..167f3cdd 100644 --- a/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/labelForFolder..st +++ b/packages/IMAPClient-UI.package/ICFolderDialog.class/instance/labelForFolder..st @@ -5,5 +5,5 @@ labelForFolder: anICFolder countOfUnseenMails := anICFolder numOfUnseenMails. countOfUnseenMails > 0 - ifTrue: [^ anICFolder name, Character tab, '[', countOfUnseenMails asString, ']'] - ifFalse: [^ anICFolder name, Character tab, ''] \ No newline at end of file + ifTrue: [^ anICFolder folderName, Character tab, '[', countOfUnseenMails asString, ']'] + ifFalse: [^ anICFolder folderName, Character tab, ''] \ No newline at end of file diff --git a/packages/IMAPClient-UI.package/ICFolderDialog.class/methodProperties.json b/packages/IMAPClient-UI.package/ICFolderDialog.class/methodProperties.json index febf5ed0..ad4980f2 100644 --- a/packages/IMAPClient-UI.package/ICFolderDialog.class/methodProperties.json +++ b/packages/IMAPClient-UI.package/ICFolderDialog.class/methodProperties.json @@ -6,7 +6,7 @@ "instance" : { "accountsComplete" : "pm 6/3/2019 18:47", "addAccount:" : "tg 7/18/2019 23:04", - "addPasswordToCollection:" : "tg 7/18/2019 23:09", + "addPasswordToCollection:" : "tg 7/19/2019 09:24", "buildAddAccountButton:" : "fr 7/7/2019 10:15", "buildEmailButton:" : "ok 6/20/2019 12:18", "buildEmailList:" : "pm 6/26/2019 14:31", @@ -33,7 +33,7 @@ "emailAccounts:" : "C.G. 7/25/2018 14:16", "emailListKeyPress:" : "pm 5/27/2019 14:00", "emailListKeyPressMapping" : "pm 5/27/2019 14:00", - "emailListMenu:" : "pm 6/26/2019 14:34", + "emailListMenu:" : "tg 7/19/2019 09:30", "emailSearchHelp" : "lvm 7/3/2018 16:09", "emailsOfSelectedFolder" : "pm 6/26/2019 14:32", "emphasizeUnseenAccounts:" : "lvm 7/4/2018 11:18", @@ -42,14 +42,14 @@ "filterString" : "lvm 6/26/2018 14:05", "filterString:" : "fr 6/3/2019 15:50", "folderListMenu" : "C.G. 7/12/2018 08:14", - "folderNameOf:" : "C.G. 7/25/2018 14:18", + "folderNameOf:" : "tg 7/19/2019 09:30", "folderWith:" : "pm 6/3/2019 18:47", "initialize" : "tg 7/8/2019 14:56", "initializedAccounts" : "C.G. 7/25/2018 14:18", "initializedAccounts:" : "pm 6/9/2019 17:02", "labelForAccount:" : "tg 7/10/2019 18:39", "labelForDeletionAction:" : "C.G. 7/25/2018 14:19", - "labelForFolder:" : "C.G. 7/25/2018 14:19", + "labelForFolder:" : "tg 7/19/2019 09:19", "labelForMail:" : "pm 6/26/2019 14:34", "loadOlderEmails" : "C.G. 7/25/2018 14:19", "loadOlderEmailsProcess" : "DH 7/22/2018 22:02", From 6c9e16f8d940154b23093dc08f43bb1d2b0bac5b Mon Sep 17 00:00:00 2001 From: Tim Garrels Date: Fri, 19 Jul 2019 09:50:32 +0200 Subject: [PATCH 2/3] Changed ToolBuilder textfield from 'name' to 'accountName' --- .../ICLoginDialog.class/instance/symbolArray.st | 4 ++-- .../ICLoginDialog.class/methodProperties.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/IMAPClient-UI.package/ICLoginDialog.class/instance/symbolArray.st b/packages/IMAPClient-UI.package/ICLoginDialog.class/instance/symbolArray.st index 07eac5b3..83eb742c 100644 --- a/packages/IMAPClient-UI.package/ICLoginDialog.class/instance/symbolArray.st +++ b/packages/IMAPClient-UI.package/ICLoginDialog.class/instance/symbolArray.st @@ -1,4 +1,4 @@ accessing symbolArray - - ^ symbolArray ifNil: [symbolArray := {#name. #serverAddress. #serverPort. #username. #password} as: OrderedCollection] \ No newline at end of file + + ^ symbolArray ifNil: [symbolArray := {#accountName. #serverAddress. #serverPort. #username. #password} as: OrderedCollection] \ No newline at end of file diff --git a/packages/IMAPClient-UI.package/ICLoginDialog.class/methodProperties.json b/packages/IMAPClient-UI.package/ICLoginDialog.class/methodProperties.json index 47063a31..4cda9221 100644 --- a/packages/IMAPClient-UI.package/ICLoginDialog.class/methodProperties.json +++ b/packages/IMAPClient-UI.package/ICLoginDialog.class/methodProperties.json @@ -62,7 +62,7 @@ "ssl" : "ok 7/9/2019 18:58", "ssl:" : "ms 7/13/2016 17:25", "sslCheckBoxLabel" : "ms 7/12/2016 11:00", - "symbolArray" : "pm 6/9/2019 13:21", + "symbolArray" : "tg 7/19/2019 09:48", "symbolArray:" : "C.G. 7/25/2018 14:24", "toggleSSL" : "ms 7/13/2016 17:37", "updateMode" : "pm 6/9/2019 13:21", From 3c47ce8d3fd33988b547b510c69815199b358809 Mon Sep 17 00:00:00 2001 From: Tim Garrels Date: Fri, 19 Jul 2019 12:59:25 +0000 Subject: [PATCH 3/3] Typo fix --- .../instance/childFolderNamed.with.ifAbsent..st | 6 +++--- .../ICFolder.class/methodProperties.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.with.ifAbsent..st b/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.with.ifAbsent..st index eff3e160..883f7820 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.with.ifAbsent..st +++ b/packages/IMAPClient-Core.package/ICFolder.class/instance/childFolderNamed.with.ifAbsent..st @@ -1,12 +1,12 @@ folder hierarchy -childFolderNamed: childFOlderName with: delimiter ifAbsent: block +childFolderNamed: childFolderName with: delimiter ifAbsent: block ^ self childFolders - detect: [:child | child folderName = childFOlderName] + detect: [:child | child folderName = childFolderName] ifNone: [ | rootPart childPart child parts | "splice at delimiter and ask child" - parts := childFOlderName subStrings: delimiter. + parts := childFolderName subStrings: delimiter. (parts size > 1) ifTrue: [ rootPart := parts first. diff --git a/packages/IMAPClient-Core.package/ICFolder.class/methodProperties.json b/packages/IMAPClient-Core.package/ICFolder.class/methodProperties.json index 23c22123..7507cdd8 100644 --- a/packages/IMAPClient-Core.package/ICFolder.class/methodProperties.json +++ b/packages/IMAPClient-Core.package/ICFolder.class/methodProperties.json @@ -13,7 +13,7 @@ "childFolderNamed:" : "C.G. 7/25/2018 14:02", "childFolderNamed:ifAbsent:" : "tg 7/19/2019 09:19", "childFolderNamed:with:" : "C.G. 6/26/2018 11:01", - "childFolderNamed:with:ifAbsent:" : "tg 7/19/2019 09:29", + "childFolderNamed:with:ifAbsent:" : "tg 7/19/2019 12:58", "childFolders" : "pm 6/9/2019 13:12", "childFolders:" : "js 6/7/2016 11:32", "countFolders" : "C.G. 7/25/2018 14:02",