ProtoObjectObjectSeasidePlatformSupport
| instance | class |
|---|---|
| no messages
|
*SeasideTesting as yet unclassified |
| *SeasideTesting |
|---|
| issueRequest: anHttpRequest responseSemaphore: semaphore |
| response | [response := WAKom default processHttpRequest: anHttpRequest. semaphore signal] fork. semaphore wait. ^ response |
| as yet unclassified |
|---|
| base64Decode: aString |
^ (Base64MimeConverter mimeDecodeToChars: aString readStream) contents |
| deliverMailFrom: fromAddress to: recipientList text: messageText |
SMTPClient deliverMailFrom: fromAddress to: recipientList text: messageText usingServer: self smtpServer |
| ensureAuthorInitials: aBlock |
Utilities authorInitialsPerSe isEmpty ifTrue: [Utilities setAuthorInitials: aBlock value]. |
| isProxy: anObject |
^ (anObject class allSuperclasses includes: Object) not |
| mimeDocumentClass |
^ MIMEDocument |
| profileSendsDuring: aBlock |
Processor activeProcess priority: 20. Smalltalk garbageCollectMost. ^ String streamContents: [:stream | (MessageTally new) spyEvery: 1 on: [aBlock value. Smalltalk garbageCollectMost]; report: stream] |
| readWriteStream |
^ RWBinaryOrTextStream on: String new |
| smtpServer |
^ MailSender smtpServer |
| vmStatisticsReportString |
^ Utilities vmStatisticsReportString |
| weakDictionaryOfSize: aNumber |
| dict | dict _ WeakIdentityKeyDictionary new: aNumber. WeakArray addWeakDependent: dict. ^ dict |