-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/hpi-swa-lab/squeak-inbox-talk…
… into main
- Loading branch information
Showing
19 changed files
with
44 additions
and
42 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
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
6 changes: 4 additions & 2 deletions
6
packages/SqueakInboxTalk.package/TalkConversation.class/instance/involvementFor..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
2 changes: 1 addition & 1 deletion
2
packages/SqueakInboxTalk.package/TalkFilterSet.class/instance/inbox..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 @@ | ||
initialize-release | ||
accessing | ||
inbox: anInbox | ||
|
||
self filters do: [:filter | filter inbox: anInbox] |
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
13 changes: 1 addition & 12 deletions
13
packages/SqueakInboxTalk.package/TalkMessage.class/instance/newDecoratedReply.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,15 +1,4 @@ | ||
sending messages | ||
newDecoratedReply | ||
|
||
| receivers ccReceivers bodyString | | ||
receivers := ({self inbox mailAddress. self mail replyReceiver}, self mail receivers) withoutDuplicates. | ||
ccReceivers := self mail ccReceivers. | ||
bodyString := '{1}\\{2}' withCRs asText format: {self inbox decorateMessage: ''. self textQuoted}. | ||
|
||
^ self mail newReply | ||
from: MailSender userEmail; | ||
to: (receivers joinSeparatedBy: ', '); | ||
cc: (ccReceivers joinSeparatedBy: ', '); | ||
subject: self replySubject; | ||
body: (self inbox newMessageBodyFor: bodyString); | ||
yourself | ||
^ self newReply: true |
16 changes: 16 additions & 0 deletions
16
packages/SqueakInboxTalk.package/TalkMessage.class/instance/newReply..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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
sending messages | ||
newReply: decorated | ||
|
||
| receivers ccReceivers bodyString | | ||
receivers := {self inbox mailAddress. self mail replyReceiver} withoutDuplicates. | ||
ccReceivers := self mail ccReceivers. | ||
bodyString := '\\{1}' withCRs format: {self textQuoted}. | ||
decorated ifTrue: [bodyString := (self inbox decorateMessage: '') asText, bodyString]. | ||
|
||
^ self mail newReply | ||
from: MailSender userEmail; | ||
to: (receivers joinSeparatedBy: ', '); | ||
cc: (ccReceivers joinSeparatedBy: ', '); | ||
subject: self replySubject; | ||
body: (self inbox newMessageBodyFor: bodyString); | ||
yourself |
13 changes: 1 addition & 12 deletions
13
packages/SqueakInboxTalk.package/TalkMessage.class/instance/newReply.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,15 +1,4 @@ | ||
sending messages | ||
newReply | ||
|
||
| receivers ccReceivers bodyString | | ||
receivers := {self inbox mailAddress. self mail replyReceiver} withoutDuplicates. | ||
ccReceivers := self mail ccReceivers. | ||
bodyString := '\\{1}' withCRs format: {self textQuoted}. | ||
|
||
^ self mail newReply | ||
from: MailSender userEmail; | ||
to: (receivers joinSeparatedBy: ', '); | ||
cc: (ccReceivers joinSeparatedBy: ', '); | ||
subject: self replySubject; | ||
body: (self inbox newMessageBodyFor: bodyString); | ||
yourself | ||
^ self newReply: false |
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
4 changes: 4 additions & 0 deletions
4
packages/SqueakInboxTalk.package/TalkPluggableFilter.class/instance/compilerClass.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
compiling | ||
compilerClass | ||
|
||
^ Compiler |
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
packages/SqueakInboxTalk.package/TalkRepositoryContribution.class/instance/date.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 | ||
accessing - messages | ||
date | ||
|
||
^ self initialMessage date |
2 changes: 1 addition & 1 deletion
2
packages/SqueakInboxTalk.package/TalkRepositoryContribution.class/instance/diffText.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 | ||
accessing - messages | ||
diffText | ||
|
||
self conversations ifNotEmpty: [ | text diffEnd summaryStart | | ||
|
2 changes: 1 addition & 1 deletion
2
packages/SqueakInboxTalk.package/TalkRepositoryContribution.class/instance/messageText.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 | ||
accessing - messages | ||
messageText | ||
|
||
self conversations ifNotEmpty: [ | text diffStart summaryEnd | | ||
|
2 changes: 1 addition & 1 deletion
2
packages/SqueakInboxTalk.package/TalkRepositoryContribution.class/instance/state.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 | ||
accessing - contribution | ||
state | ||
|
||
self repositoryName = #inbox ifTrue: [^ #pending]. | ||
|