Skip to content

Commit 9b6155d

Browse files
committed
TD Präfix
1 parent 5675868 commit 9b6155d

File tree

420 files changed

+139
-139
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

420 files changed

+139
-139
lines changed

TelegramClient-UI.package/TD_TelegramContactWindow.class/properties.json renamed to TelegramClient-UI.package/TDTelegramContactWindow.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"backend",
1010
"users",
1111
"contactIndex" ],
12-
"name" : "TD_TelegramContactWindow",
12+
"name" : "TDTelegramContactWindow",
1313
"pools" : [
1414
],
1515
"super" : "Model",

TelegramClient-UI.package/TD_TelegramGroupChatCreationWindow.class/properties.json renamed to TelegramClient-UI.package/TDTelegramGroupChatCreationWindow.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"users",
1111
"nameDraft",
1212
"selectedContactList" ],
13-
"name" : "TD_TelegramGroupChatCreationWindow",
13+
"name" : "TDTelegramGroupChatCreationWindow",
1414
"pools" : [
1515
],
1616
"super" : "Model",
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
initialize
22
initialize
33
super initialize.
4-
debouncer := TD_Debouncer new.
4+
debouncer := TDDebouncer new.
55
userCache := Dictionary new.
66
self initializeVariables.
77
self initializeListeners
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
building
2+
openContacts
3+
ToolBuilder open: (TDTelegramContactWindow newWithBackend: backend)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
building
2+
openGroupChatCreation
3+
ToolBuilder open: (TDTelegramGroupChatCreationWindow newWithBackend: backend)

TelegramClient-UI.package/TD_TelegramUI.class/methodProperties.json renamed to TelegramClient-UI.package/TDTelegramUI.class/methodProperties.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
"getChatIndex" : "HB 7/7/2019 22:27",
2121
"getColorArrayFrom:" : "ts 7/26/2019 15:56",
2222
"getSelectedChatId" : "ts 7/25/2019 16:19",
23-
"initialize" : "aa 7/26/2019 22:15",
23+
"initialize" : "aa 7/26/2019 22:30",
2424
"initializeListeners" : "HB 7/26/2019 13:30",
2525
"initializeVariables" : "ts 7/26/2019 14:02",
2626
"messageDraft" : "ts 7/25/2019 16:20",
2727
"messageDraft:" : "ts 7/25/2019 16:20",
2828
"messageList" : "ts 7/26/2019 16:04",
2929
"onAuthStateReady:" : "HB 7/26/2019 13:30",
30-
"openContacts" : "aa 7/26/2019 22:20",
31-
"openGroupChatCreation" : "aa 7/26/2019 22:20",
30+
"openContacts" : "aa 7/26/2019 22:34",
31+
"openGroupChatCreation" : "aa 7/26/2019 22:34",
3232
"receivedChats:" : "ts 7/25/2019 16:21",
3333
"receivedNewMessage:" : "ts 7/25/2019 16:21",
3434
"receivedUser:" : "ts 7/25/2019 16:21",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"debouncer",
1515
"chatIndex",
1616
"userCache" ],
17-
"name" : "TD_TelegramUI",
17+
"name" : "TDTelegramUI",
1818
"pools" : [
1919
],
2020
"super" : "Model",

TelegramClient-UI.package/TD_TelegramUI.class/instance/openContacts.st

Lines changed: 0 additions & 3 deletions
This file was deleted.

TelegramClient-UI.package/TD_TelegramUI.class/instance/openGroupChatCreation.st

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/TelegramClient-Core.package/TD_Debouncer.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDDebouncer.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"instvars" : [
99
"timeOfLastCall",
1010
"timeout" ],
11-
"name" : "TD_Debouncer",
11+
"name" : "TDDebouncer",
1212
"pools" : [
1313
],
1414
"super" : "Object",
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
as yet unclassified
2+
ensureStreamIsOpen
3+
self writerStream isNil ifTrue: [self writerStream: (TDDebugStream on: (Text new: 1000))].

TelegramClient/packages/TelegramClient.package/TD_Debug.class/methodProperties.json renamed to TelegramClient/packages/TelegramClient.package/TDDebug.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"class" : {
33
"clear" : "HB 6/14/2019 14:01",
44
"countOpenDebugs" : "HUB 5/15/2019 11:39",
5-
"ensureStreamIsOpen" : "aa 7/26/2019 22:19",
5+
"ensureStreamIsOpen" : "aa 7/26/2019 22:33",
66
"error:" : "HUB 5/15/2019 11:42",
77
"error:from:" : "HUB 5/15/2019 11:43",
88
"log:" : "HUB 5/15/2019 11:43",

packages/TelegramClient-Tests.package/TD_Debug.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDDebug.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"commentStamp" : "",
1010
"instvars" : [
1111
],
12-
"name" : "TD_Debug",
12+
"name" : "TDDebug",
1313
"pools" : [
1414
],
1515
"super" : "Object",

TelegramClient/packages/TelegramClient.package/TD_DebugStream.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDDebugStream.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"commentStamp" : "",
88
"instvars" : [
99
],
10-
"name" : "TD_DebugStream",
10+
"name" : "TDDebugStream",
1111
"pools" : [
1212
],
1313
"super" : "TextStream",

packages/TelegramClient-Core.package/TD_JSONClient.class/instance/send..st renamed to TelegramClient/packages/TelegramClient.package/TDJSONClient.class/instance/send..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ send: request
33
| stream |
44
stream := ReadWriteStream on: ''.
55
request jsonWriteOn: stream.
6-
TD_Debug log: ' [SEND]',stream contents.
6+
TDDebug log: ' [SEND]',stream contents.
77
^self class sendTo: client request: stream contents.

packages/TelegramClient-Core.package/TD_JSONClient.class/methodProperties.json renamed to TelegramClient/packages/TelegramClient.package/TDJSONClient.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
"initialize" : "HUB 5/11/2019 15:10",
1212
"isDestroyed" : "HUB 5/11/2019 14:25",
1313
"receive:" : "HB 6/14/2019 12:16",
14-
"send:" : "aa 7/26/2019 22:17" } }
14+
"send:" : "aa 7/26/2019 22:32" } }

TelegramClient/packages/TelegramClient.package/TD_JSONClient.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDJSONClient.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"client",
1010
"jsonParser",
1111
"destroyed" ],
12-
"name" : "TD_JSONClient",
12+
"name" : "TDJSONClient",
1313
"pools" : [
1414
],
1515
"super" : "Object",
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
as yet unclassified
22
initialize
3-
jsonParser := TD_JSONParser new.
3+
jsonParser := TDJSONParser new.
44
destroyed := false.
55
receivingMsgQueue := OrderedCollection new.

packages/TelegramClient-Tests.package/TD_JSONClientMock.class/methodProperties.json renamed to TelegramClient/packages/TelegramClient.package/TDJSONClientMock.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"answerSend:" : "HB 7/26/2019 14:57",
77
"destroy" : "HB 7/26/2019 12:43",
88
"execute:" : "HB 7/26/2019 12:43",
9-
"initialize" : "aa 7/26/2019 22:16",
9+
"initialize" : "aa 7/26/2019 22:31",
1010
"receive:" : "HB 7/26/2019 12:46",
1111
"send:" : "HB 7/26/2019 13:50" } }

TelegramClient/packages/TelegramClient.package/TD_JSONClientMock.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDJSONClientMock.class/properties.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"commentStamp" : "",
88
"instvars" : [
99
"receivingMsgQueue" ],
10-
"name" : "TD_JSONClientMock",
10+
"name" : "TDJSONClientMock",
1111
"pools" : [
1212
],
13-
"super" : "TD_JSONClient",
13+
"super" : "TDJSONClient",
1414
"type" : "normal" }

TelegramClient/packages/TelegramClient.package/TD_JSONClientPython.class/instance/receive..st renamed to TelegramClient/packages/TelegramClient.package/TDJSONClientPython.class/instance/receive..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ receive: timeout
33
| readBytes |
44
(bufferPos - 1 == buffer size) ifTrue: [
55
(bufferStart == 1) ifTrue: [
6-
TD_Debug error: 'Buffer overflow! Loosing data'.
6+
TDDebug error: 'Buffer overflow! Loosing data'.
77
bufferStart := 1.
88
bufferPos := 1.
99
] ifFalse: [

packages/TelegramClient-Core.package/TD_JSONClientPython.class/instance/send..st renamed to TelegramClient/packages/TelegramClient.package/TDJSONClientPython.class/instance/send..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ send: request
33
| stream |
44
stream := ReadWriteStream on: ''.
55
request jsonWriteOn: stream.
6-
TD_Debug log: ' [SEND]',stream contents.
6+
TDDebug log: ' [SEND]',stream contents.
77
socket sendData: (stream contents size asByteArrayOfSize: 8).
88
socket sendData: stream contents.

packages/TelegramClient-Core.package/TD_JSONClientPython.class/methodProperties.json renamed to TelegramClient/packages/TelegramClient.package/TDJSONClientPython.class/methodProperties.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"instance" : {
55
"destroy" : "HB 6/4/2019 11:39",
66
"initialize" : "aa 6/12/2019 18:09",
7-
"receive:" : "aa 7/26/2019 22:17",
8-
"send:" : "aa 7/26/2019 22:18" } }
7+
"receive:" : "aa 7/26/2019 22:32",
8+
"send:" : "aa 7/26/2019 22:33" } }

TelegramClient/packages/TelegramClient.package/TD_JSONClientPython.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDJSONClientPython.class/properties.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"buffer",
1111
"bufferPos",
1212
"bufferStart" ],
13-
"name" : "TD_JSONClientPython",
13+
"name" : "TDJSONClientPython",
1414
"pools" : [
1515
],
16-
"super" : "TD_JSONClient",
16+
"super" : "TDJSONClient",
1717
"type" : "normal" }

TelegramClient/packages/TelegramClient.package/TD_JSONParser.class/instance/deserializeObject..st renamed to TelegramClient/packages/TelegramClient.package/TDJSONParser.class/instance/deserializeObject..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ deserializeObject: jobj
2222
].
2323
].
2424
string := jobj at: '@type' asString.
25-
TD_Debug warn: '[NOT IMPLEMENTED]', string.
25+
TDDebug warn: '[NOT IMPLEMENTED]', string.
2626
^nil.

packages/TelegramClient-Core.package/TD_JSONParser.class/methodProperties.json renamed to TelegramClient/packages/TelegramClient.package/TDJSONParser.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"class" : {
33
},
44
"instance" : {
5-
"deserializeObject:" : "aa 7/26/2019 22:18",
5+
"deserializeObject:" : "aa 7/26/2019 22:33",
66
"deserializeString:" : "HUB 5/4/2019 02:17",
77
"initialize" : "HUB 5/4/2019 02:17",
88
"isSerializedObject:" : "HUB 5/4/2019 15:45" } }

packages/TelegramClient-Core.package/TD_JSONParser.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDJSONParser.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"commentStamp" : "",
88
"instvars" : [
99
"jsonparser" ],
10-
"name" : "TD_JSONParser",
10+
"name" : "TDJSONParser",
1111
"pools" : [
1212
],
1313
"super" : "Object",
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
instance creation
22
create
33
| telegram |
4-
telegram := self createTelegram: (TD_JSONClient new).
4+
telegram := self createTelegram: (TDJSONClient new).
55
self openUI: telegram.
66
^ telegram.
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
instance creation
22
createPythonVersion
33
| telegram |
4-
telegram := self createTelegram: (TD_JSONClientPython new).
4+
telegram := self createTelegram: (TDJSONClientPython new).
55
self openUI: telegram.
66
^ telegram
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
instance creation
22
debugCreate
33
Transcript clear.
4-
TD_Debug clear.
4+
TDDebug clear.
55
^ self create.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
instance creation
2+
openUI: telegram
3+
ToolBuilder open: (TDTelegramUI newWithBackend: telegram).

TelegramClient/packages/TelegramClient.package/TD_Telegram.class/instance/update.st renamed to TelegramClient/packages/TelegramClient.package/TDTelegram.class/instance/update.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ update
33
| command |
44
command := client receive: 0.05.
55
command isNil ifTrue: [^nil].
6-
TD_Debug log: '[RECIEVED](', command class asString,')', command asString.
6+
TDDebug log: '[RECIEVED](', command class asString,')', command asString.
77
(messageHandlerDict at: command class ifAbsent: [ [:msg |]] ) value: command.
88
self fireListenerMessage: command

packages/TelegramClient-Core.package/TD_Telegram.class/methodProperties.json renamed to TelegramClient/packages/TelegramClient.package/TDTelegram.class/methodProperties.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"class" : {
3-
"create" : "aa 7/26/2019 22:16",
4-
"createPythonVersion" : "aa 7/26/2019 22:17",
3+
"create" : "aa 7/26/2019 22:31",
4+
"createPythonVersion" : "aa 7/26/2019 22:31",
55
"createTelegram:" : "HB 7/26/2019 13:11",
6-
"debugCreate" : "aa 7/26/2019 22:18",
7-
"openUI:" : "aa 7/26/2019 22:20" },
6+
"debugCreate" : "aa 7/26/2019 22:33",
7+
"openUI:" : "aa 7/26/2019 22:35" },
88
"instance" : {
99
"client:" : "HB 7/26/2019 12:50",
1010
"createNewBasicGroupChat:withTitle:" : "HB 7/7/2019 23:11",
@@ -26,4 +26,4 @@
2626
"uiObject" : "ts 7/24/2019 12:29",
2727
"uiObject:" : "ts 7/24/2019 12:29",
2828
"unregisterListener:for:withSelector:" : "HB 7/5/2019 16:04",
29-
"update" : "aa 7/26/2019 22:18" } }
29+
"update" : "aa 7/26/2019 22:33" } }

TelegramClient/packages/TelegramClient.package/TD_Telegram.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDTelegram.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"messageHandlerDict",
1111
"authStateHandlerDict",
1212
"listener" ],
13-
"name" : "TD_Telegram",
13+
"name" : "TDTelegram",
1414
"pools" : [
1515
],
1616
"super" : "Object",

TelegramClient/packages/TelegramClient.package/TD_TelegramContactWindow.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDTelegramContactWindow.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"backend",
1010
"users",
1111
"contactIndex" ],
12-
"name" : "TD_TelegramContactWindow",
12+
"name" : "TDTelegramContactWindow",
1313
"pools" : [
1414
],
1515
"super" : "Model",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"users",
1111
"nameDraft",
1212
"selectedContactList" ],
13-
"name" : "TD_TelegramGroupChatCreationWindow",
13+
"name" : "TDTelegramGroupChatCreationWindow",
1414
"pools" : [
1515
],
1616
"super" : "Model",
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
running
2+
setUp
3+
4+
telegram := TDTelegram debugNew.
5+

TelegramClient/packages/TelegramClient.package/TD_TelegramTests.class/methodProperties.json renamed to TelegramClient/packages/TelegramClient.package/TDTelegramTests.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"instance" : {
55
"getTestVariable:" : "ts 7/24/2019 13:37",
66
"runAllTests" : "ts 7/26/2019 16:37",
7-
"setUp" : "aa 7/26/2019 22:16",
7+
"setUp" : "aa 7/26/2019 22:32",
88
"tearDown" : "HB 7/26/2019 12:53" } }

packages/TelegramClient-Tests.package/TD_TelegramTests.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDTelegramTests.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"instvars" : [
99
"telegram",
1010
"telegramUI" ],
11-
"name" : "TD_TelegramTests",
11+
"name" : "TDTelegramTests",
1212
"pools" : [
1313
],
1414
"super" : "TestCase",
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
initialize
22
initialize
33
super initialize.
4-
debouncer := TD_Debouncer new.
4+
debouncer := TDDebouncer new.
55
userCache := Dictionary new.
66
self initializeVariables.
77
self initializeListeners
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
building
2+
openContacts
3+
ToolBuilder open: (TDTelegramContactWindow newWithBackend: backend)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
building
2+
openGroupChatCreation
3+
ToolBuilder open: (TDTelegramGroupChatCreationWindow newWithBackend: backend)

TelegramClient/packages/TelegramClient.package/TD_TelegramUI.class/methodProperties.json renamed to TelegramClient/packages/TelegramClient.package/TDTelegramUI.class/methodProperties.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
"getChatIndex" : "HB 7/7/2019 22:27",
2121
"getColorArrayFrom:" : "ts 7/26/2019 15:56",
2222
"getSelectedChatId" : "ts 7/25/2019 16:19",
23-
"initialize" : "aa 7/26/2019 22:15",
23+
"initialize" : "aa 7/26/2019 22:30",
2424
"initializeListeners" : "HB 7/26/2019 13:30",
2525
"initializeVariables" : "ts 7/26/2019 14:02",
2626
"messageDraft" : "ts 7/25/2019 16:20",
2727
"messageDraft:" : "ts 7/25/2019 16:20",
2828
"messageList" : "ts 7/26/2019 16:04",
2929
"onAuthStateReady:" : "HB 7/26/2019 13:30",
30-
"openContacts" : "aa 7/26/2019 22:20",
31-
"openGroupChatCreation" : "aa 7/26/2019 22:20",
30+
"openContacts" : "aa 7/26/2019 22:34",
31+
"openGroupChatCreation" : "aa 7/26/2019 22:34",
3232
"receivedChats:" : "ts 7/25/2019 16:21",
3333
"receivedNewMessage:" : "ts 7/25/2019 16:21",
3434
"receivedUser:" : "ts 7/25/2019 16:21",

TelegramClient-UI.package/TD_TelegramUI.class/properties.json renamed to TelegramClient/packages/TelegramClient.package/TDTelegramUI.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"debouncer",
1515
"chatIndex",
1616
"userCache" ],
17-
"name" : "TD_TelegramUI",
17+
"name" : "TDTelegramUI",
1818
"pools" : [
1919
],
2020
"super" : "Model",
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
as yet unclassified
2+
setUp
3+
TDDebug clear.
4+
telegram := TDTelegram createTelegram: (TDJSONClientMock new).
5+
uiModel := TDTelegramUI newWithBackend: telegram.
6+
ToolBuilder open: uiModel
7+

0 commit comments

Comments
 (0)