-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move addContentLanguage: and contentLanguageTags to ZnMessage, becaus…
…e both are needed for requests and responses
- Loading branch information
Showing
2 changed files
with
18 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Extension { #name : 'ZnMessage' } | ||
|
||
{ #category : '*Hyperspace-Extensions' } | ||
ZnMessage >> addContentLanguage: aLanguageTag [ | ||
|
||
self headers at: 'Content-Language' add: aLanguageTag | ||
] | ||
|
||
{ #category : '*Hyperspace-Extensions' } | ||
ZnMessage >> contentLanguageTags [ | ||
|
||
| headerValue | | ||
|
||
headerValue := self headers at: 'Content-Language' ifAbsent: [ ^ #() ]. | ||
^ headerValue isArray | ||
ifTrue: [ headerValue collect: #asLanguageTag ] | ||
ifFalse: [ Array with: headerValue asLanguageTag ] | ||
] |
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