-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide fixes similar to pharo-project/pharo#15253 for Zinc
- Loading branch information
Showing
63 changed files
with
81 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Character-Encoding-Core.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SystemOrganization addCategory: #'Zinc-Character-Encoding-Core'! | ||
self packageOrganizer ensurePackage: #'Zinc-Character-Encoding-Core' withTags: #()! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP-Examples.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SystemOrganization addCategory: #'Zinc-HTTP-Examples'! | ||
self packageOrganizer ensurePackage: #'Zinc-HTTP-Examples' withTags: #()! |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnBasicCredential.class/instance/isComplete.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
isComplete | ||
^ username notNil & password notNil | ||
^ username isNotNil & password isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnByteArrayEntity.class/instance/printContentsOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
printing | ||
printContentsOn: stream | ||
super printContentsOn: stream. | ||
self bytes notNil ifTrue: [ | ||
self bytes isNotNil ifTrue: [ | ||
stream space; print: self bytes ] |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnChunkedReadStream.class/instance/ensureChunkBufferOfSize..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
private | ||
ensureChunkBufferOfSize: size | ||
(chunk notNil and: [ size <= chunk size ]) ifTrue: [ ^ self ]. | ||
(chunk isNotNil and: [ size <= chunk size ]) ifTrue: [ ^ self ]. | ||
chunk := self collectionSpecies new: size |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnDigestCredential.class/instance/isComplete.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
isComplete | ||
^ super isComplete & nonce notNil | ||
^ super isComplete & nonce isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnEntity.class/instance/hasContentLength.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasContentLength | ||
^ contentLength notNil | ||
^ contentLength isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnEntity.class/instance/hasContentType.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasContentType | ||
^ contentType notNil | ||
^ contentType isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnEntityReader.class/instance/allowsReadingUpToEnd.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
allowsReadingUpToEnd | ||
^ allowReadingUpToEnd notNil and: [ allowReadingUpToEnd ] | ||
^ allowReadingUpToEnd isNotNil and: [ allowReadingUpToEnd ] |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnEntityReader.class/instance/isBinary.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
isBinary | ||
^ binary notNil and: [ binary ] | ||
^ binary isNotNil and: [ binary ] |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnEntityReader.class/instance/isStreaming.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
isStreaming | ||
^ streaming notNil and: [ streaming ] | ||
^ streaming isNotNil and: [ streaming ] |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnMessage.class/instance/hasEntity.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasEntity | ||
^ self entity notNil | ||
^ self entity isNotNil |
3 changes: 2 additions & 1 deletion
3
repository/Zinc-HTTP.package/ZnMessage.class/instance/hasHeaders.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
testing | ||
hasHeaders | ||
^ headers notNil and: [ self headers isEmpty not ] | ||
|
||
^ headers isNotNil and: [ self headers isNotEmpty ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnMimePart.class/instance/hasEntity.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasEntity | ||
^ self entity notNil | ||
^ self entity isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnMimePart.class/instance/hasHeaders.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasHeaders | ||
^ headers notNil and: [ self headers isEmpty not ] | ||
^ headers isNotNil and: [ self headers isNotEmpty ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
repository/Zinc-HTTP.package/ZnOptions.class/instance/includesKey..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
testing | ||
includesKey: key | ||
^ (options notNil and: [ options includesKey: key ]) | ||
or: [ parent notNil and: [ parent includesKey: key ] ] | ||
^ (options isNotNil and: [ options includesKey: key ]) | ||
or: [ parent isNotNil and: [ parent includesKey: key ] ] |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnRequestLine.class/instance/printMethodAndUriOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnRequestLine.class/instance/printOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnStringEntity.class/instance/encoder..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
encoder: anEncoding | ||
(encoder notNil and: [ anEncoding ~= encoder ]) ifTrue: [ self invalidateContentLength ]. | ||
(encoder isNotNil and: [ anEncoding ~= encoder ]) ifTrue: [ self invalidateContentLength ]. | ||
encoder := anEncoding |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnStringEntity.class/instance/hasEncoder.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
private | ||
hasEncoder | ||
^ encoder notNil | ||
^ encoder isNotNil |
7 changes: 5 additions & 2 deletions
7
repository/Zinc-HTTP.package/ZnStringEntity.class/instance/printContentsOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
printing | ||
printContentsOn: stream | ||
|
||
super printContentsOn: stream. | ||
self string notNil ifTrue: [ | ||
stream space; nextPutAll: self string ] | ||
self string ifNotNil: [ | ||
stream | ||
space; | ||
nextPutAll: self string ] |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-HTTP.package/ZnStringEntity.class/instance/string..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
string: aString | ||
(string notNil and: [ aString ~= string ]) ifTrue: [ self invalidateContentLength ]. | ||
(string isNotNil and: [ aString ~= string ]) ifTrue: [ self invalidateContentLength ]. | ||
string := aString |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1 @@ | ||
SystemOrganization addCategory: #'Zinc-HTTP'! | ||
SystemOrganization addCategory: #'Zinc-HTTP-Client-Server'! | ||
SystemOrganization addCategory: #'Zinc-HTTP-Core'! | ||
SystemOrganization addCategory: #'Zinc-HTTP-Exceptions'! | ||
SystemOrganization addCategory: #'Zinc-HTTP-Logging'! | ||
SystemOrganization addCategory: #'Zinc-HTTP-Streaming'! | ||
SystemOrganization addCategory: #'Zinc-HTTP-Support'! | ||
SystemOrganization addCategory: #'Zinc-HTTP-Variables'! | ||
self packageOrganizer ensurePackage: #'Zinc-HTTP' withTags: #(#'Client-Server' #Core #Exceptions #Logging #Streaming #Support #Variables)! |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/ZnMimeType.class/instance/hasParameters.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasParameters | ||
^ parameters notNil and: [ parameters isEmpty not ] | ||
^ parameters isNotNil and: [ parameters isNotEmpty ] |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/ZnMimeType.class/instance/isCharSetUTF8.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
isCharSetUTF8 | ||
^ self charSet notNil and: [ self charSet sameAs: 'utf-8' ] | ||
^ self charSet isNotNil and: [ self charSet sameAs: 'utf-8' ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/ZnUrl.class/instance/hasFragment.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasFragment | ||
^ fragment notNil | ||
^ fragment isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/ZnUrl.class/instance/hasHost.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasHost | ||
^ host notNil | ||
^ host isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/ZnUrl.class/instance/hasPassword.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasPassword | ||
^ password notNil | ||
^ password isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/ZnUrl.class/instance/hasPath.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasPath | ||
^ segments notNil and: [ segments isEmpty not ] | ||
^ segments isNotNil and: [ segments isNotEmpty ] |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/ZnUrl.class/instance/hasPort.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasPort | ||
^ port notNil | ||
^ port isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/ZnUrl.class/instance/hasQuery.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasQuery | ||
^ query notNil and: [ query isEmpty not ] | ||
^ query isNotNil and: [ query isEmpty not ] |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/ZnUrl.class/instance/hasScheme.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasScheme | ||
^ scheme notNil | ||
^ scheme isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/ZnUrl.class/instance/hasUsername.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
testing | ||
hasUsername | ||
^ username notNil | ||
^ username isNotNil |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Resource-Meta-Core.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SystemOrganization addCategory: #'Zinc-Resource-Meta-Core'! | ||
self packageOrganizer ensurePackage: #'Zinc-Resource-Meta-Core' withTags: #()! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.