root/tags/2C10/Resources/ChatCore.scriptTerminology

Revision 1806, 12.3 kB (checked in by timothy, 4 years ago)

Removed the double connected words. To test if a connection is connected, do: if status of connection is connected

Line 
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3 <plist version="1.0">
4 <dict>
5         <key>Classes</key>
6         <dict>
7                 <key>MVChatConnection</key>
8                 <dict>
9                         <key>Attributes</key>
10                         <dict>
11                                 <key>nickname</key>
12                                 <dict>
13                                         <key>Description</key>
14                                         <string>Current nickname on the server.</string>
15                                         <key>Name</key>
16                                         <string>nickname</string>
17                                 </dict>
18                                 <key>nicknamePassword</key>
19                                 <dict>
20                                         <key>Description</key>
21                                         <string>The nickname's password (if any). Used for nickname registration.</string>
22                                         <key>Name</key>
23                                         <string>nickname password</string>
24                                 </dict>
25                                 <key>password</key>
26                                 <dict>
27                                         <key>Description</key>
28                                         <string>Password to conenct to the server.</string>
29                                         <key>Name</key>
30                                         <string>password</string>
31                                 </dict>
32                                 <key>proxyType</key>
33                                 <dict>
34                                         <key>Description</key>
35                                         <string>What system proxy server to use.</string>
36                                         <key>Name</key>
37                                         <string>proxy</string>
38                                 </dict>
39                                 <key>server</key>
40                                 <dict>
41                                         <key>Description</key>
42                                         <string>Server IP address or domain name.</string>
43                                         <key>Name</key>
44                                         <string>server address</string>
45                                 </dict>
46                                 <key>serverPort</key>
47                                 <dict>
48                                         <key>Description</key>
49                                         <string>Port to connect on.</string>
50                                         <key>Name</key>
51                                         <string>port number</string>
52                                 </dict>
53                                 <key>urlString</key>
54                                 <dict>
55                                         <key>Description</key>
56                                         <string>Chat URL containing nickname, server and port.</string>
57                                         <key>Name</key>
58                                         <string>URL</string>
59                                 </dict>
60                                 <key>status</key>
61                                 <dict>
62                                         <key>Description</key>
63                                         <string>Current connection status.</string>
64                                         <key>Name</key>
65                                         <string>status</string>
66                                 </dict>
67                                 <key>scriptTypedAwayMessage</key>
68                                 <dict>
69                                         <key>Description</key>
70                                         <string>Away message for other users to see that your not there.</string>
71                                         <key>Name</key>
72                                         <string>away message</string>
73                                 </dict>
74                                 <key>uniqueIdentifier</key>
75                                 <dict>
76                                         <key>Description</key>
77                                         <string>The unique identifier of the connection.</string>
78                                         <key>Name</key>
79                                         <string>id</string>
80                                 </dict>
81                         </dict>
82                         <key>Description</key>
83                         <string>Manages all chat communication with a chat server.</string>
84                         <key>Name</key>
85                         <string>connection</string>
86                         <key>PluralName</key>
87                         <string>connections</string>
88                 </dict>
89         </dict>
90         <key>Commands</key>
91         <dict>
92                 <key>connect</key>
93                 <dict>
94                         <key>Description</key>
95                         <string>Connect to the server.</string>
96                         <key>Name</key>
97                         <string>connect</string>
98                 </dict>
99                 <key>disconnect</key>
100                 <dict>
101                         <key>Description</key>
102                         <string>Disconnect from the server.</string>
103                         <key>Name</key>
104                         <string>disconnect</string>
105                 </dict>
106                 <key>sendMsgToUser</key>
107                 <dict>
108                         <key>Description</key>
109                         <string>Send a message to another user. This message will not echo locally.</string>
110                         <key>Name</key>
111                         <string>send private</string>
112                         <key>UnnamedArgument</key>
113                         <dict>
114                                 <key>Description</key>
115                                 <string>Connection to send from.</string>
116                         </dict>
117                         <key>Arguments</key>
118                         <dict>
119                                 <key>message</key>
120                                 <dict>
121                                         <key>Description</key>
122                                         <string>Message to send to user. Can include HTML formatting.</string>
123                                         <key>Name</key>
124                                         <string>message</string>
125                                 </dict>
126                                 <key>user</key>
127                                 <dict>
128                                         <key>Description</key>
129                                         <string>Name of user.</string>
130                                         <key>Name</key>
131                                         <string>to user</string>
132                                 </dict>
133                                 <key>encoding</key>
134                                 <dict>
135                                         <key>Description</key>
136                                         <string>Encoding to use. (Default is UTF-8.)</string>
137                                         <key>Name</key>
138                                         <string>encoded as</string>
139                                 </dict>
140                                 <key>action</key>
141                                 <dict>
142                                         <key>Description</key>
143                                         <string>Send as an action?</string>
144                                         <key>Name</key>
145                                         <string>action tense</string>
146                                 </dict>
147                         </dict>
148                 </dict>
149                 <key>sendMsgToRoom</key>
150                 <dict>
151                         <key>Description</key>
152                         <string>Send a message to a room you're a member of. This message will not echo locally.</string>
153                         <key>Name</key>
154                         <string>send public</string>
155                         <key>UnnamedArgument</key>
156                         <dict>
157                                 <key>Description</key>
158                                 <string>Connection to send from.</string>
159                         </dict>
160                         <key>Arguments</key>
161                         <dict>
162                                 <key>message</key>
163                                 <dict>
164                                         <key>Description</key>
165                                         <string>Message to send to room. Can include HTML formatting.</string>
166                                         <key>Name</key>
167                                         <string>message</string>
168                                 </dict>
169                                 <key>room</key>
170                                 <dict>
171                                         <key>Description</key>
172                                         <string>Name of room. (Doesn't need to have prefix '#' symbol.)</string>
173                                         <key>Name</key>
174                                         <string>to room</string>
175                                 </dict>
176                                 <key>encoding</key>
177                                 <dict>
178                                         <key>Description</key>
179                                         <string>Encoding to use. (Default is UTF-8.)</string>
180                                         <key>Name</key>
181                                         <string>encoded as</string>
182                                 </dict>
183                                 <key>action</key>
184                                 <dict>
185                                         <key>Description</key>
186                                         <string>Send as an action?</string>
187                                         <key>Name</key>
188                                         <string>action tense</string>
189                                 </dict>
190                         </dict>
191                 </dict>
192                 <key>sendRawMessage</key>
193                 <dict>
194                         <key>Description</key>
195                         <string>Send raw message to server.</string>
196                         <key>Name</key>
197                         <string>send raw</string>
198                         <key>UnnamedArgument</key>
199                         <dict>
200                                 <key>Description</key>
201                                 <string>Connection to send with.</string>
202                         </dict>
203                         <key>Arguments</key>
204                         <dict>
205                                 <key>message</key>
206                                 <dict>
207                                         <key>Description</key>
208                                         <string>Raw message to send to server.</string>
209                                         <key>Name</key>
210                                         <string>message</string>
211                                 </dict>
212                         </dict>
213                 </dict>
214                 <key>sendSubcodeCommand</key>
215                 <dict>
216                         <key>Description</key>
217                         <string>Send a subcode (CTCP) command to another user.</string>
218                         <key>Name</key>
219                         <string>send subcode</string>
220                         <key>UnnamedArgument</key>
221                         <dict>
222                                 <key>Description</key>
223                                 <string>Connection to send from.</string>
224                         </dict>
225                         <key>Arguments</key>
226                         <dict>
227                                 <key>command</key>
228                                 <dict>
229                                         <key>Description</key>
230                                         <string>CTCP command to send to user.</string>
231                                         <key>Name</key>
232                                         <string>command</string>
233                                 </dict>
234                                 <key>arguments</key>
235                                 <dict>
236                                         <key>Description</key>
237                                         <string>Command arguments to send. Can include HTML formatting.</string>
238                                         <key>Name</key>
239                                         <string>with arguments</string>
240                                 </dict>
241                                 <key>type</key>
242                                 <dict>
243                                         <key>Description</key>
244                                         <string>Type of subcode message to send.</string>
245                                         <key>Name</key>
246                                         <string>as</string>
247                                 </dict>
248                                 <key>user</key>
249                                 <dict>
250                                         <key>Description</key>
251                                         <string>Name of user.</string>
252                                         <key>Name</key>
253                                         <string>to user</string>
254                                 </dict>
255                         </dict>
256                 </dict>
257                 <key>returnFromAwayStatus</key>
258                 <dict>
259                         <key>Description</key>
260                         <string>Removes any away message.</string>
261                         <key>Name</key>
262                         <string>return from away status</string>
263                         <key>UnnamedArgument</key>
264                         <dict>
265                                 <key>Description</key>
266                                 <string>Connection to clear away status for.</string>
267                         </dict>
268                 </dict>
269                 <key>joinChatRoom</key>
270                 <dict>
271                         <key>Description</key>
272                         <string>Join a chat room on the connection.</string>
273                         <key>Name</key>
274                         <string>join chat</string>
275                         <key>UnnamedArgument</key>
276                         <dict>
277                                 <key>Description</key>
278                                 <string>Connection to join room on.</string>
279                         </dict>
280                         <key>Arguments</key>
281                         <dict>
282                                 <key>room</key>
283                                 <dict>
284                                         <key>Description</key>
285                                         <string>Room to join. Can also be a list of rooms.</string>
286                                         <key>Name</key>
287                                         <string>room</string>
288                                 </dict>
289                         </dict>
290                 </dict>
291                 <key>sendFile</key>
292                 <dict>
293                         <key>Description</key>
294                         <string>Send a file (DCC) to another user.</string>
295                         <key>Name</key>
296                         <string>transfer file</string>
297                         <key>UnnamedArgument</key>
298                         <dict>
299                                 <key>Description</key>
300                                 <string>Connection user is on.</string>
301                         </dict>
302                         <key>Arguments</key>
303                         <dict>
304                                 <key>path</key>
305                                 <dict>
306                                         <key>Description</key>
307                                         <string>Path of file to send the user.</string>
308                                         <key>Name</key>
309                                         <string>at</string>
310                                 </dict>
311                                 <key>user</key>
312                                 <dict>
313                                         <key>Description</key>
314                                         <string>User to send file to.</string>
315                                         <key>Name</key>
316                                         <string>to user</string>
317                                 </dict>
318                         </dict>
319                 </dict>
320         </dict>
321         <key>Description</key>
322         <string>commands and classes for Chat Core scripting.</string>
323         <key>Enumerations</key>
324         <dict>
325                 <key>SubcodeType</key>
326                 <dict>
327                         <key>Request</key>
328                         <dict>
329                                 <key>Name</key>
330                                 <string>request</string>
331                         </dict>
332                         <key>Reply</key>
333                         <dict>
334                                 <key>Name</key>
335                                 <string>reply</string>
336                         </dict>
337                 </dict>
338                 <key>ConnectionStatus</key>
339                 <dict>
340                         <key>Connected</key>
341                         <dict>
342                                 <key>Name</key>
343                                 <string>connected</string>
344                         </dict>
345                         <key>Connecting</key>
346                         <dict>
347                                 <key>Name</key>
348                                 <string>connecting</string>
349                         </dict>
350                         <key>Disconnected</key>
351                         <dict>
352                                 <key>Name</key>
353                                 <string>disconnected</string>
354                         </dict>
355                         <key>Suspended</key>
356                         <dict>
357                                 <key>Name</key>
358                                 <string>suspended</string>
359                         </dict>
360                 </dict>
361                 <key>Proxy</key>
362                 <dict>
363                         <key>None</key>
364                         <dict>
365                                 <key>Name</key>
366                                 <string>none</string>
367                         </dict>
368                         <key>HTTPS</key>
369                         <dict>
370                                 <key>Name</key>
371                                 <string>secure HTTP</string>
372                         </dict>
373                         <key>SOCKS</key>
374                         <dict>
375                                 <key>Name</key>
376                                 <string>SOCKS firewall</string>
377                         </dict>
378                 </dict>
379                 <key>Encoding</key>
380                 <dict>
381                         <key>UTF8</key>
382                         <dict>
383                                 <key>Name</key>
384                                 <string>UTF8</string>
385                         </dict>
386                         <key>ASCII</key>
387                         <dict>
388                                 <key>Name</key>
389                                 <string>ASCII</string>
390                         </dict>
391                         <key>NonLossyASCII</key>
392                         <dict>
393                                 <key>Name</key>
394                                 <string>Nonlossy ASCII</string>
395                         </dict>
396                         <key>ISOLatin1</key>
397                         <dict>
398                                 <key>Name</key>
399                                 <string>ISO Latin 1</string>
400                         </dict>
401                         <key>ISOLatin2</key>
402                         <dict>
403                                 <key>Name</key>
404                                 <string>ISO Latin 2</string>
405                         </dict>
406                         <key>ISOLatin3</key>
407                         <dict>
408                                 <key>Name</key>
409                                 <string>ISO Latin 3</string>
410                         </dict>
411                         <key>ISOLatin4</key>
412                         <dict>
413                                 <key>Name</key>
414                                 <string>ISO Latin 4</string>
415                         </dict>
416                         <key>ISOLatin5</key>
417                         <dict>
418                                 <key>Name</key>
419                                 <string>ISO Latin 5</string>
420                         </dict>
421                         <key>ISOLatin9</key>
422                         <dict>
423                                 <key>Name</key>
424                                 <string>ISO Latin 9</string>
425                         </dict>
426                         <key>MacOSRoman</key>
427                         <dict>
428                                 <key>Name</key>
429                                 <string>Mac OS Roman</string>
430                         </dict>
431                         <key>MacOSEuropean</key>
432                         <dict>
433                                 <key>Name</key>
434                                 <string>Mac OS European</string>
435                         </dict>
436                         <key>MacOSCyrllic</key>
437                         <dict>
438                                 <key>Name</key>
439                                 <string>Mac OS Cyrllic</string>
440                         </dict>
441                         <key>MacOSJapanese</key>
442                         <dict>
443                                 <key>Name</key>
444                                 <string>Mac OS Japanese</string>
445                         </dict>
446                         <key>MacOSSimpChinese</key>
447                         <dict>
448                                 <key>Name</key>
449                                 <string>Mac OS Simp. Chinese</string>
450                         </dict>
451                         <key>MacOSTradChinese</key>
452                         <dict>
453                                 <key>Name</key>
454                                 <string>Mac OS Trad. Chinese</string>
455                         </dict>
456                         <key>MacOSKorean</key>
457                         <dict>
458                                 <key>Name</key>
459                                 <string>Mac OS Korean</string>
460                         </dict>
461                         <key>CP1250</key>
462                         <dict>
463                                 <key>Name</key>
464                                 <string>Windows Latin 2</string>
465                         </dict>
466                         <key>CP1251</key>
467                         <dict>
468                                 <key>Name</key>
469                                 <string>Windows Cyrllic</string>
470                         </dict>
471                         <key>CP1252</key>
472                         <dict>
473                                 <key>Name</key>
474                                 <string>Windows Latin 1</string>
475                         </dict>
476                         <key>SimpChineseWindows</key>
477                         <dict>
478                                 <key>Name</key>
479                                 <string>Windows Simp. Chinese</string>
480                         </dict>
481                         <key>TradChineseWindows</key>
482                         <dict>
483                                 <key>Name</key>
484                                 <string>Windows Trad. Chinese</string>
485                         </dict>
486                         <key>KoreanWindows</key>
487                         <dict>
488                                 <key>Name</key>
489                                 <string>Windows Korean</string>
490                         </dict>
491                         <key>ShiftJIS</key>
492                         <dict>
493                                 <key>Name</key>
494                                 <string>Shift JIS</string>
495                         </dict>
496                         <key>GB18030</key>
497                         <dict>
498                                 <key>Name</key>
499                                 <string>GB 18030</string>
500                         </dict>
501                         <key>GBK</key>
502                         <dict>
503                                 <key>Name</key>
504                                 <string>GBK</string>
505                         </dict>
506                         <key>Big5</key>
507                         <dict>
508                                 <key>Name</key>
509                                 <string>Big 5</string>
510                         </dict>
511                         <key>Big5HKSCS</key>
512                         <dict>
513                                 <key>Name</key>
514                                 <string>Big 5 HKSCS</string>
515                         </dict>
516                         <key>KOI8R</key>
517                         <dict>
518                                 <key>Name</key>
519                                 <string>KOI8R</string>
520                         </dict>
521                         <key>KoreanEUC</key>
522                         <dict>
523                                 <key>Name</key>
524                                 <string>Korean EUC</string>
525                         </dict>
526                         <key>JapaneseEUC</key>
527                         <dict>
528                                 <key>Name</key>
529                                 <string>Japanese EUC</string>
530                         </dict>
531                         <key>SimpChineseEUC</key>
532                         <dict>
533                                 <key>Name</key>
534                                 <string>Simp. Chinese EUC</string>
535                         </dict>
536                         <key>TradChineseEUC</key>
537                         <dict>
538                                 <key>Name</key>
539                                 <string>Trad. Chinese EUC</string>
540                         </dict>
541                 </dict>
542         </dict>
543         <key>Name</key>
544         <string>Chat Core Suite</string>
545 </dict>
546 </plist>
Note: See TracBrowser for help on using the browser.