File: package.xml

package info (click to toggle)
php-net-smartirc 1.0.0-2
  • links: PTS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 1,844 kB
  • ctags: 1,034
  • sloc: php: 2,098; xml: 740; makefile: 52
file content (769 lines) | stat: -rw-r--r-- 45,437 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
<package version="1.0">
  <name>Net_SmartIRC</name>
  <summary>Net_SmartIRC is a PHP class for communication with IRC networks</summary>
  <description>Net_SmartIRC is a PHP class for communication with IRC networks,
which conforms to the RFC 2812 (IRC protocol).
It's an API that handles all IRC protocol messages.
This class is designed for creating IRC bots, chats and show irc related info on webpages.

Full featurelist of Net_SmartIRC
-------------------------------------
- full object oriented programmed
- every received IRC message is parsed into an ircdata object
  (it contains following info: from, nick, ident, host, channel, message, type, rawmessage)
- actionhandler for the API
  on different types of messages (channel/notice/query/kick/join..) callbacks can be registered
- messagehandler for the API
  class based messagehandling, using IRC reply codes
- time events
  callbacks to methods in intervals
- send/receive floodprotection
- detects and changes nickname on nickname collisions
- autoreconnect, if connection is lost
- autoretry for connecting to IRC servers
- debugging/logging system with log levels (destination can be file, stdout, syslog or browserout)
- supports fsocks and PHP socket extension
- supports PHP 4.1.x to 4.3.2 (also PHP 5.0.0b1)
- sendbuffer with a queue that has 3 priority levels (high, medium, low) plus a bypass level (critical)
- channel syncing (tracking of users/modes/topic etc in objects)
- user syncing (tracking the user in channels, nick/ident/host/realname/server/hopcount in objects)
- when channel syncing is acticated the following functions are available:
  isJoined
  isOpped
  isVoiced
  isBanned
- on reconnect all joined channels will be rejoined, also when keys are used
- own CTCP version reply can be set
- IRC commands:
  pass
  op
  deop
  voice
  devoice
  ban
  unban
  join
  part
  action
  message
  notice
  query
  ctcp
  mode
  topic
  nick
  invite
  list
  names
  kick
  who
  whois
  whowas
  quit</description>
  <maintainers>
    <maintainer>
      <user>meebey</user>
      <name>Mirco 'meebey' Bauer</name>
      <email>mail@meebey.net</email>
      <role>lead</role>
    </maintainer>
    <maintainer>
      <user>nicos</user>
      <name>Nicolas CHAILLAN</name>
      <email>nicos@php.net</email>
      <role>contributor</role>
    </maintainer>
  </maintainers>
  <release>
    <version>1.0.0</version>
    <date>2005-05-28</date>
    <license>LGPL</license>
    <state>stable</state>
    <notes>v1.0.0:
-------
Released as 1.0.0 because current PEAR rule require this for stable
packages, there are _no_ big changes in this release!

fixes:
 - renamed Net_SmartIRC_base::Net_SmartIRC to
   Net_SmartIRC_base::Net_SmartIRC_base
   a PHP4 bug made it work, in PHP5 its fixed and doesn't
   (closes PEAR bug #1466, sf.net patch #967067)
 - fixed a bug in _rawreceive()
   the parser checked if he found a colon (messagepart) but +1 was added, the
   check never worked right (I found this bug while porting SmartIRC to C#)
 - fixed bug in _gettype()
   the regexs was too sloppy, sometimes it got confused, this can break easily
   the ChannelSync code.
 - fixed bug in _event_rpl_whoreply()
   on some IRC networks, the channel info in who replies can't be used, they
   return sometimes random channels, this can break ChannelSync code.
 - fixed include paths in example scripts (closes PEAR bug #2042)

changes:
 - applied load socket extension patch (sf.net patch #911993) from
   Anatoly Techtonik &lt;techtonik@users.sourceforge.net&gt;
   if the socket extension is not loaded, it will now try to load it for *nix
   and windows.

new:
 - added objListenFor() method
   it works like listenFor() but returns an array of the received ircdata
   objects (not just ircdata-&gt;message like listenFor() does)</notes>
    <provides type="class" name="Net_SmartIRC_irccommands" extends="Net_SmartIRC_base" />
    <provides type="function" name="Net_SmartIRC_irccommands::message" />
    <provides type="function" name="Net_SmartIRC_irccommands::channel" />
    <provides type="function" name="Net_SmartIRC_irccommands::join" />
    <provides type="function" name="Net_SmartIRC_irccommands::part" />
    <provides type="function" name="Net_SmartIRC_irccommands::kick" />
    <provides type="function" name="Net_SmartIRC_irccommands::getList" />
    <provides type="function" name="Net_SmartIRC_irccommands::names" />
    <provides type="function" name="Net_SmartIRC_irccommands::setTopic" />
    <provides type="function" name="Net_SmartIRC_irccommands::getTopic" />
    <provides type="function" name="Net_SmartIRC_irccommands::mode" />
    <provides type="function" name="Net_SmartIRC_irccommands::op" />
    <provides type="function" name="Net_SmartIRC_irccommands::deop" />
    <provides type="function" name="Net_SmartIRC_irccommands::voice" />
    <provides type="function" name="Net_SmartIRC_irccommands::devoice" />
    <provides type="function" name="Net_SmartIRC_irccommands::ban" />
    <provides type="function" name="Net_SmartIRC_irccommands::unban" />
    <provides type="function" name="Net_SmartIRC_irccommands::invite" />
    <provides type="function" name="Net_SmartIRC_irccommands::changeNick" />
    <provides type="function" name="Net_SmartIRC_irccommands::who" />
    <provides type="function" name="Net_SmartIRC_irccommands::whois" />
    <provides type="function" name="Net_SmartIRC_irccommands::whowas" />
    <provides type="function" name="Net_SmartIRC_irccommands::quit" />
    <provides type="class" name="Net_SmartIRC_messagehandler" extends="Net_SmartIRC_irccommands" />
    <provides type="class" name="Net_SmartIRC_base" />
    <provides type="class" name="Net_SmartIRC" extends="Net_SmartIRC_messagehandler" />
    <provides type="class" name="Net_SmartIRC_data" />
    <provides type="class" name="Net_SmartIRC_actionhandler" />
    <provides type="class" name="Net_SmartIRC_timehandler" />
    <provides type="class" name="Net_SmartIRC_channel" />
    <provides type="class" name="Net_SmartIRC_user" />
    <provides type="class" name="Net_SmartIRC_channeluser" extends="Net_SmartIRC_user" />
    <provides type="class" name="Net_SmartIRC_ircuser" extends="Net_SmartIRC_user" />
    <provides type="class" name="Net_SmartIRC_listenfor" />
    <provides type="class" name="Net_SmartIRC_objListenFor" />
    <provides type="class" name="Net_SmartIRC_Error" />
    <provides type="function" name="Net_SmartIRC_base::setUseSockets" />
    <provides type="function" name="Net_SmartIRC_base::setDebug" />
    <provides type="function" name="Net_SmartIRC_base::setBenchmark" />
    <provides type="function" name="Net_SmartIRC_base::setChannelSynching" />
    <provides type="function" name="Net_SmartIRC_base::setChannelSyncing" />
    <provides type="function" name="Net_SmartIRC_base::setCtcpVersion" />
    <provides type="function" name="Net_SmartIRC_base::setLogdestination" />
    <provides type="function" name="Net_SmartIRC_base::setLogfile" />
    <provides type="function" name="Net_SmartIRC_base::setDisconnecttime" />
    <provides type="function" name="Net_SmartIRC_base::setReceivedelay" />
    <provides type="function" name="Net_SmartIRC_base::setSenddelay" />
    <provides type="function" name="Net_SmartIRC_base::setAutoReconnect" />
    <provides type="function" name="Net_SmartIRC_base::setAutoRetry" />
    <provides type="function" name="Net_SmartIRC_base::setReceiveTimeout" />
    <provides type="function" name="Net_SmartIRC_base::setTransmitTimeout" />
    <provides type="function" name="Net_SmartIRC_base::startBenchmark" />
    <provides type="function" name="Net_SmartIRC_base::stopBenchmark" />
    <provides type="function" name="Net_SmartIRC_base::showBenchmark" />
    <provides type="function" name="Net_SmartIRC_base::log" />
    <provides type="function" name="Net_SmartIRC_base::getMotd" />
    <provides type="function" name="Net_SmartIRC_base::getUsermode" />
    <provides type="function" name="Net_SmartIRC_base::connect" />
    <provides type="function" name="Net_SmartIRC_base::disconnect" />
    <provides type="function" name="Net_SmartIRC_base::reconnect" />
    <provides type="function" name="Net_SmartIRC_base::login" />
    <provides type="function" name="Net_SmartIRC_base::isJoined" />
    <provides type="function" name="Net_SmartIRC_base::isOpped" />
    <provides type="function" name="Net_SmartIRC_base::isVoiced" />
    <provides type="function" name="Net_SmartIRC_base::isBanned" />
    <provides type="function" name="Net_SmartIRC_base::listen" />
    <provides type="function" name="Net_SmartIRC_base::listenFor" />
    <provides type="function" name="Net_SmartIRC_base::objListenFor" />
    <provides type="function" name="Net_SmartIRC_base::registerActionhandler" />
    <provides type="function" name="Net_SmartIRC_base::unregisterActionhandler" />
    <provides type="function" name="Net_SmartIRC_base::unregisterActionid" />
    <provides type="function" name="Net_SmartIRC_base::registerTimehandler" />
    <provides type="function" name="Net_SmartIRC_base::unregisterTimeid" />
    <provides type="function" name="Net_SmartIRC_base::isError" />
    <provides type="function" name="Net_SmartIRC_base::throwError" />
    <provides type="function" name="Net_SmartIRC_listenfor::handler" />
    <provides type="function" name="Net_SmartIRC_objListenFor::handler" />
    <provides type="function" name="Net_SmartIRC_Error::getMessage" />
    <filelist>
      <file role="doc" baseinstalldir="Net" md5sum="961f10554eb11408e230a01694c659e3" name="docs/DOCUMENTATION"/>
      <file role="doc" baseinstalldir="Net" md5sum="922cd5e9acdf87b0dcb625b721afa990" name="docs/HOWTO"/>
      <file role="doc" baseinstalldir="Net" md5sum="027683e22f0f461791f819f24f9a590d" name="docs/HTML/classtrees_Net_SmartIRC.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="5572aec20670e100eb662090d953b3d0" name="docs/HTML/elementindex.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="e75d44fff911672f90d9fe130345f3db" name="docs/HTML/elementindex_Net_SmartIRC.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="7654229955bc1fa0ff8030831cadc2a4" name="docs/HTML/errors.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="8462424a1faabcc0453ce199c71fbc65" name="docs/HTML/index.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="399a4761d94f7ee24e339166ddefc20c" name="docs/HTML/li_Net_SmartIRC.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="c71843587b72bffb8083d0297cc0d953" name="docs/HTML/ric_CHANGELOG.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="d363b12f24d05b77b30bd0524308d994" name="docs/HTML/ric_README.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="5189118af3e84698c51db5f8cac5525a" name="docs/HTML/media/background.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="4c480a60db1ab64317fe351a24396eb1" name="docs/HTML/media/empty.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="2cade077187cfc7a261bdc92005e5a1d" name="docs/HTML/media/style.css"/>
      <file role="doc" baseinstalldir="Net" md5sum="46abd410e270e44ec15d7064f9fe21b2" name="docs/HTML/media/TreeMenu.js"/>
      <file role="doc" baseinstalldir="Net" md5sum="9dc3fb889eab6ca02847e7cc44520747" name="docs/HTML/media/images/blank.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="a13e8860459c3a53973dc38871205383" name="docs/HTML/media/images/checkerboard.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="d2a3a3f17dabfc25dd37900b3cb8df0c" name="docs/HTML/media/images/Class.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="7e179d558e3814151049647df12eb636" name="docs/HTML/media/images/classFolder.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="f3b8fca6c1783aa1dcf28ba7da497694" name="docs/HTML/media/images/Constant.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="e629622face4e6f4694dfdfeaa4c91a5" name="docs/HTML/media/images/Constants.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="ab1964d424a50610ba0d3766b9ae1b82" name="docs/HTML/media/images/Constructor.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="3ca5f2269ca9d7fcbe874d76ae8eae1c" name="docs/HTML/media/images/Destructor.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="858dd3333287728312787509d5d08683" name="docs/HTML/media/images/Disk.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="49a707b2acbb93d780ca230507e119a0" name="docs/HTML/media/images/error.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="8c092768f85b3c268a506002a949b132" name="docs/HTML/media/images/file.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="22016624eb405c816ce2394d44d98eed" name="docs/HTML/media/images/FolderClosed.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="610c5e80451d2ffabc7babf0e352111e" name="docs/HTML/media/images/foldericon.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="d617e9fad5cd05a4e6ece312bc2c26d4" name="docs/HTML/media/images/FolderOpened.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="b2a256b396562ae95635a7d5bd2b2d96" name="docs/HTML/media/images/Functions.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="5b24ba92b54f0e193d7fb2bf7f22fb99" name="docs/HTML/media/images/GhostClass.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="8cdb41d4407690691fb1ab5265ee0b7c" name="docs/HTML/media/images/I.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="9c75e77d6c1dc1697f225c0f8a90ba85" name="docs/HTML/media/images/L.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="e332ca15b0b48ddb60ea8042d0c55a7d" name="docs/HTML/media/images/leftbg.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="10d4789e288c445ab5e6c4b93d01c884" name="docs/HTML/media/images/Lminus.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="498f5c3f351867da496ace814682cbfd" name="docs/HTML/media/images/Lplus.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="430a5f2c8db7877324fd54b995f30107" name="docs/HTML/media/images/minus.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="8e57a2bcf3b3a4c9119bfe527c0039ea" name="docs/HTML/media/images/msgError.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="e0baa027fb1437dcd9b7961dd9ff78d9" name="docs/HTML/media/images/msgFatalError.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="ee72fd7e1b0fc53bd5be86872a7fda58" name="docs/HTML/media/images/msgHint.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="3b2d8ff173626a4e80c0abe7288d5151" name="docs/HTML/media/images/msgInformation.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="8f864567bf80d6c404a4e1d5a1498043" name="docs/HTML/media/images/msgWarning.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="ff1cb9ec62def194cf467514a7e5287e" name="docs/HTML/media/images/openfoldericon.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="1f0ca8116ffeafac272a3f1a8325e408" name="docs/HTML/media/images/pearlogo.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="423a8689bb4529829739407cf0727844" name="docs/HTML/media/images/plus.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="494900899cff26908133bbe0fe95e04b" name="docs/HTML/media/images/PrivateDataMember.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="de7cbf4c17416f4a848b9a93a2dd11d1" name="docs/HTML/media/images/PrivateMethod.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="58a9d097d37e7c5f110a4fb4ba221490" name="docs/HTML/media/images/PrivateProperty.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="4219f4709956d84819d25028d7863442" name="docs/HTML/media/images/ProtectedDataMember.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="1727d3a16e4f6f4685a86d533e9e9888" name="docs/HTML/media/images/ProtectedMethod.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="a96316caff1e789644a9529c1f407a95" name="docs/HTML/media/images/ProtectedProperty.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="8a1d408251591c08151557c09422e8a2" name="docs/HTML/media/images/PublicDataMember.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="a31153932f42776296ed1363a0d4d20c" name="docs/HTML/media/images/PublicMethod.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="cc2fbd7e0a1ea20800c52d21e6c6ec47" name="docs/HTML/media/images/PublicProperty.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="8647a09907f1a5c35a56aaf41e8e0132" name="docs/HTML/media/images/spacer.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="4947e9e2ff6fd11dcf32e0ba1eca0564" name="docs/HTML/media/images/spacer2.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="6346415134bebdc6fcba24a14e6a2f69" name="docs/HTML/media/images/T.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="472e069dfc5a2a5c1a2b83eea7733588" name="docs/HTML/media/images/Thumbs.db"/>
      <file role="doc" baseinstalldir="Net" md5sum="83ced60c3a5307605dc25ef7df3800bc" name="docs/HTML/media/images/Tminus.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="f0b02c1ecc496aafce1ca1f78bc53ddc" name="docs/HTML/media/images/Tplus.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="070077afb7ff9d6cf57fd6f5bfb94fd8" name="docs/HTML/media/images/Types.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="baa32e2bd12b434128d9807c3797bfc3" name="docs/HTML/media/images/Variable.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="f900b22ecd57772030b63b1b584b49ff" name="docs/HTML/media/images/Vars.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="e4f1b2d3f998559804aa1ac3450d88ad" name="docs/HTML/media/images/TreeMenuJS/branch.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="335459315ad97fe76b7a7ccce9e4c57e" name="docs/HTML/media/images/TreeMenuJS/branchbottom.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="0573af115f27abdcefb8bfcd3ce4a3e1" name="docs/HTML/media/images/TreeMenuJS/branchtop.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="dfbc92a0046265d8b706e11f64d34967" name="docs/HTML/media/images/TreeMenuJS/Class.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="57f736ee1be5479dd462b5a6d7b27507" name="docs/HTML/media/images/TreeMenuJS/classFolder.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="76148501c75947dc3ee8d4c439c05d31" name="docs/HTML/media/images/TreeMenuJS/Disk.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="771e93f7e4b25ca10ac899086eac3f59" name="docs/HTML/media/images/TreeMenuJS/file.png"/>
      <file role="doc" baseinstalldir="Net" md5sum="3665b03f0b6b099595415224ccc68285" name="docs/HTML/media/images/TreeMenuJS/folder.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="024eff25cb2e48ada72f4ce9f48d5934" name="docs/HTML/media/images/TreeMenuJS/FolderOpened.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="1362378c7dee497c5ee78804dedb3f66" name="docs/HTML/media/images/TreeMenuJS/Functions.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="4d5a8ed6dc7cd5d6e71fcb6acd100955" name="docs/HTML/media/images/TreeMenuJS/line.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="9445d29997b70a66fbf5e9430db2b49c" name="docs/HTML/media/images/TreeMenuJS/linebottom.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="e64b766cbe159f3b4fac5fb4c11bf780" name="docs/HTML/media/images/TreeMenuJS/minus.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="fb07076002b84c04f14f19c7cf6fe332" name="docs/HTML/media/images/TreeMenuJS/minusbottom.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="4edfa5cd18f12847054c5a603c345c50" name="docs/HTML/media/images/TreeMenuJS/minustop.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="5a65d2890a595d8218d4d00e59c47e9d" name="docs/HTML/media/images/TreeMenuJS/plus.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="5ac0b1e10996aa9ad70730527842739d" name="docs/HTML/media/images/TreeMenuJS/plusbottom.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="d0ae25b71adb33404ed64bd1a131bfe7" name="docs/HTML/media/images/TreeMenuJS/plustop.gif"/>
      <file role="doc" baseinstalldir="Net" md5sum="0de1b4051df6c62eb055babce734c00e" name="docs/HTML/media/lib/classTree.js"/>
      <file role="doc" baseinstalldir="Net" md5sum="888fe16f88292fa98b8294e71e4bc7c1" name="docs/HTML/media/lib/tab.webfx.css"/>
      <file role="doc" baseinstalldir="Net" md5sum="6a2c040a84f65a5d6693f2eb7d251a22" name="docs/HTML/media/lib/tabpane.js"/>
      <file role="doc" baseinstalldir="Net" md5sum="e6d4926512906802282e58d6723b1c73" name="docs/HTML/media/lib/ua.js"/>
      <file role="doc" baseinstalldir="Net" md5sum="a1c66c4e6d3f73bbf245b666dd11b620" name="docs/HTML/Net_SmartIRC/mybot.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="783bcd57693c4aeaca5d2ff89950664d" name="docs/HTML/Net_SmartIRC/Net_SmartIRC.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="41eb8a6dda9aabdf20fe0cda102771af" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_actionhandler.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="887a06c494b6c483b837800acb4222a5" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_base.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="30cbc2270b01d409c4340ca50afa8a64" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_channel.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="1baf495623a9c5a95d79b67924417ae0" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_channeluser.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="6f6a6fd34dba5dd069d156ef7f8fa038" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_data.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="7a7a9e10d7dc31bca8e0d5d2cefb69ba" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_Error.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="fcdcaa8f825bfbbb1e731f0032c7799b" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_irccommands.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="12e2df7f0e44f770de866590856d4065" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_ircuser.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="978f4e65726b54a7a519eae93535059c" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_listenfor.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="aba3a0ae94801d2d1778f6e04f9c3afe" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_messagehandler.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="e3184005b0f9908d2abd520b56812669" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_timehandler.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="a06fd50d6f6db1d37a798ab9c77acea0" name="docs/HTML/Net_SmartIRC/Net_SmartIRC_user.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="688ef33b8152ae224483980adb8d75a8" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example2_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="a3a5443770e92489daf7274deaba6611" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example3_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="a3a5443770e92489daf7274deaba6611" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example4_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="a3a5443770e92489daf7274deaba6611" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example5_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="a3a5443770e92489daf7274deaba6611" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example6_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="21adcd6e54fa2e4f1ef3f847861ec193" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example7_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="95645b90e8b1d06d68dd9f6d66918096" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_examples_example_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="2b95dedfd0d03d4e8819345dc577966b" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_SmartIRC_defines_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="95ac3bf3d28519d3965a961bf855ec21" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_SmartIRC_irccommands_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="b102bd574984dba1e30828fd24615796" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_SmartIRC_messagehandler_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="a0ea97b8a804016c1e4f955a4fd5be99" name="docs/HTML/Net_SmartIRC/_SmartIRC-0.5.5_SmartIRC_php.html"/>
      <file role="doc" baseinstalldir="Net" md5sum="6cef36b9ebcfa7ee9cbd1f8ae32e9256" name="examples/example.php"/>
      <file role="doc" baseinstalldir="Net" md5sum="35dafe32e4064655e26a358f3e533795" name="examples/example2.php"/>
      <file role="doc" baseinstalldir="Net" md5sum="f9c885154403db780373838ab5f90993" name="examples/example3.php"/>
      <file role="doc" baseinstalldir="Net" md5sum="bc54ae77ee897026203f378b3a5c1f9d" name="examples/example4.php"/>
      <file role="doc" baseinstalldir="Net" md5sum="164b20ee9b283e15cefff7f3372f4360" name="examples/example5.php"/>
      <file role="doc" baseinstalldir="Net" md5sum="21df1042c563bc719f263b42333bf8cb" name="examples/example6.php"/>
      <file role="doc" baseinstalldir="Net" md5sum="45e62de877a943deb30dc0ea4157d0cf" name="examples/example7.php"/>
      <file role="php" baseinstalldir="Net" md5sum="c13d2251d5221622aca7b7e00c7a6bd0" name="SmartIRC/defines.php"/>
      <file role="php" baseinstalldir="Net" md5sum="c0b40c6b3dbee9b1aae688958b175894" name="SmartIRC/irccommands.php"/>
      <file role="php" baseinstalldir="Net" md5sum="194725a7144765d29741d4f5e733afad" name="SmartIRC/messagehandler.php"/>
      <file role="doc" baseinstalldir="Net" md5sum="98ac092c0936db85208fb7c3c58db0d6" name="CHANGELOG"/>
      <file role="doc" baseinstalldir="Net" md5sum="0afbbd1ce879011bec43385bbcb17bf7" name="CREDITS"/>
      <file role="doc" baseinstalldir="Net" md5sum="7b60e83ac7d90b74efaced40b954939f" name="FEATURES"/>
      <file role="doc" baseinstalldir="Net" md5sum="46ec483f69991d8b433155026c4b3e93" name="LICENSE"/>
      <file role="doc" baseinstalldir="Net" md5sum="25a025729ca237d6484d33ee08aef937" name="README"/>
      <file role="php" baseinstalldir="Net" md5sum="515caf13f9bffc1ea2efc42a31d06753" name="SmartIRC.php"/>
    </filelist>
  </release>
  <changelog>
    <release>
      <version>0.2.5</version>
      <date>2002-09-02</date>
      <state>beta</state>
      <notes>v0.2.5
------
- improved socket handling
- bufferedsend fix
- new version number system
- cpu usage reduced
- added changelog file
</notes>
    </release>
    <release>
      <version>0.2.6</version>
      <date>2002-10-12</date>
      <state>beta</state>
      <notes>v0.2.6
------
* phpSmartIRCclass.inc.php:
 - phpSmartIRCclass.inc renamed to
   phpSmartIRCclass.inc.php because of security reasons
 - changed function_exists() to get_loaded_extensions() for
   checking if the PHP build has real socket support
 - log() changed to create Linux style formated logs
 - new methods for logging (daemon style)
   log() for add log entries setlogdestination() can be STDOUT or FILE
   setlogfile() sets the file
 - changed received data processing in rawreceive()

* HOWTO:
 - added a mini howto for using the class

* DOCUMENTATION:
 - added class documentation of the project

* CREDITS:
 - added credits file
</notes>
    </release>
    <release>
      <version>0.3.0</version>
      <date>2002-10-23</date>
      <state>beta</state>
      <notes>v0.3.0
-----
* phpSmartIRCclass.inc.php:
 - added &quot;Ping? Pong!&quot; log message for debugging
 - added real linux/windows syslog logging
   to setlogdestination().
 - new method listen_for() makes it possible
   to show irc related information on a homepage, like how many users
   on a channel are.

* HOWTO:
 - added how to run/call the selfwritten bot

* DOCUMENTATION:
 - added (missing) explaination for new methods

* example2.php:
 - new examplefile with the new listen_for() method
</notes>
    </release>
    <release>
      <version>0.3.2</version>
      <date>2002-11-05</date>
      <state>stable</state>
      <notes>v0.3.2
------
* phpSmartIRCclass.inc.php:
 - Replaced all quotes by single quote where possible for speedup.
 - Added _disconnecttime for doing a clean IRC quit.
 - Added Zend IDE style documentation for parameter variables types
   and method descriptions.
 - Spaces in nickname and username will be automaticly removed.
 - Nicknamecollisions are automaticly detected and nickname will be
   changed to nickname with 3 random numbers.
 - New method nicknameuse().
 - Fixed a serious fsock bug.
 - Added new type TYPE_ERROR.
 - Fixed wrong usage of &amp; when calling methods with params that are
   called by reference.
 - Fixed a debug message &quot;DEBUG: disconnected&quot;, now it will only
   occur when debug mode is enabled.
 - listen_for() will now do a quickdisconnect, for a big speedup.
 - Changed logging system, now with debug levels, default is
   DEBUG_NOTICE.
 - Added benchmark system, now its possible to time things for doing
   optimizations.
 - New methods: benchmark(), benchmarktstart(), benchmarkend()
   and show_benchmark() for the benchmark system
 - Added microint(), for getting the microtime as float, needed for
   the benchmarks.
 - Added a couple of log() calls, for different debug levels.
 - fsockets now runs in non blocking mode, because of broken?
   getstatus for fsockets.
 - Added mode() method, for chaning modes of a user or channel.
 - Added op() and deop() method.  Added ban() and unban() method
   (thx for diff file to Peter Petermann).

* DOCUMENTATION:
 - added documentation for new logging system
 - added the whole DEBUG_* list

* HOWTO:
 - changed parameter description for debug()

* example.php:
 - replaced all quotes by singlequotes where possible.
 - fixed wrong usage of message()

* example2.php:
 - replaced all quotes by singlquotes where possible.
 - added benchmark test to the example
</notes>
    </release>
    <release>
      <version>0.4.0</version>
      <date>2002-11-26</date>
      <state>stable</state>
      <notes>v0.4.0
------
* phpSmartIRCclass.inc.php:
 - fixed serious socket bug
   The buffer of the socket got full because only 512 bytes were read at once,
   which caused losing some IRC messages that are comming fast like the MOTD.
   Now it will read 10240 bytes at once, and doesn't loose any IRC message.
 - fixed sendbuffer
   The sendbuffer will only be sent, when the class is fully connected and
   registered on the IRC network. Before if a nickname collision happened,
   all sent IRC commands from the buffer were ignored by the IRC server.
 - fixed socket status
   Socket handling is now compatible with PHP 4.3 dev.
 - fixed $_nick
   When the nickname got changed because of nickname is already in use,
   $_nick  will be updated. (thanks for the hint to Andreas Streichardt).
 - fixed actionhandler ids (unregister caused that the other ids were  changed).
 - fixed TYPE_TOPIC to the right bitoperator value.
 - added a reference to the IRC class in actionhandler callbacks
   WARNING: all user writtin methods have to be changed!!
   method( &amp;$data ) _has to be changed_ to method( &amp;$irc, &amp;$data )
   If you don't change those, your IRC scripts will _not_ work anymore!
 - changed internal methodnames to _methodname
 - changed sendbuffer
   Now it uses configurable senddelay, instead of static 2 messages  
   per second (send flood protection).
 - changed TYPEs
   All TYPE_* are now bitwise constants, register_actionhandler() can now
   react to more than one message type.
 - added TYPE_ACTION for those common /me messages.
 - added timeevents   Added method register_timehandler()
   unregister_timeid() and   reordertimehandler(). Those timehandler
   can be used to call methods in specified intervalls, e.g. for
   timeevents. Added needed class CphpSmartIRCclass_timehandler.
 - moved all IRC related defines to defines.inc.php.
 - changed if() elseif() structures where possible to switch() for
   clearer/faster code.
 - added more debug messages for actionhandler.
 - added unregister_actionhandler() and unregister_actionid() method.
   Also added needed reorderactionhandler(), which is called after an
   unregister methods was called.
 - added $data-&gt;channel to actionhandler callback.

* defines.inc.php:
 - initial import. 
 - now all IRC related defines are now in this file instead of
   phpSmartIRCclass.inc.php.

* DOCUMENTATION:
 - updated/added methods description

* example.php:
 - changed user function parameter to new style ( &amp;$irc and &amp;$data ).
 - added TYPE_NOTICE to query_test example.
</notes>
    </release>
    <release>
      <version>0.5.0</version>
      <date>2003-01-07</date>
      <state>stable</state>
      <notes>v0.5.0
------
fixes:
 - fixed critical bug in the main _rawreceive() for() loop, messages were lost.

changes:
 - License changed from GPL to LGPL.
 - updated in all files the copyright year.
 - changed documentation tags in front of all methods to the phpDocumentator compatible format.
 - improved connect() errorhandling.
 - changed login() parameters to $nick, $realname, $usermode = 0, $username = null, $password = null.
 - changed join() parameters to $channelarray, $key = null.
 - changed kick() parameters to $channel, $nicknamearray, $reason = null.
 - changed listenFor() parameters to $messagetype
   return value is now the result, instead the of a reference to the result parameter.
 - sendbuffer has now 3 queues: high, medium and low
   high sends 2 messages, then 1 of medium
   low is only send if high _and_ medium is empty.
 - select() call for sockets is strongly optimized

new:
 - phpDocumentator package tags.
 - include() for messagehandler.php (needed for the new API).
 - setChannelSynching() method, for enabling the channel synching.
 - setCtcpVersion() method, for changing the ctcp version reply string.
 - setReceiveTimeout() method, for changing the receive timeout.
 - setTransmitTimeout() method, for changing the transmit timeout.
 - setAutoReconnect() method, for enabling the autoreconnect feature.
 - channel variable, a reference to _channels because $object-&gt;channel(&quot;#chan&quot;)-&gt;topic is not possible in PHP4 (ZE1).
 - reconnect() method, it will reconnect and also join all channels.
 - channel() method, getting a reference to the channel, only if channelsynching is on.
 - added ident, host, messageex and rawmessageex variables to the Net_SmartIRC_data class.
 - class Net_SmartIRC_user, stores info about one user, only used if channelsynching is on.
 - class Net_SmartIRC_channel, stores info about one channel, only used if channelsynching is on.
</notes>
    </release>
    <release>
      <version>0.5.1</version>
      <date>2003-01-17</date>
      <state>stable</state>
      <notes>v0.5.1:
-------
fixes:
 - major bugs in ChannelSynching fixed.
 - fsocks support fixed.
 - setUseSocket() method fixed.
   If false was passed as parameter, it tried to load the socket extension.
   Also warnings are now suppressed with @ in front of dl().
 - fixed a typo in reconnect().
 - missing SMARTIRC_DEBUG_CHANNELSYNCHING constant added.
 
changes:
 - new design for HTML documentation used (PEAR template).
 - moved all examples to their own directory (examples/).
 - moved the documentation to docs/HTML/.
 - added new file descriptions to README.
 - removed not needed parts of DOCUMENTATION (most is now in the HTML version).
 - updated the HTML documentation.
 
new:
 - example5/6/7.php added.
 - setAutoRetry() method added.
   Autoretrying of connecting to the IRC server, is now supported.
</notes>
    </release>
    <release>
      <version>0.5.5</version>
      <date>2003-07-23</date>
      <state>stable</state>
      <notes>v0.5.5:
-------
fixes:
 - fixed a bug in _rawreceive()
   messages were parsed wrong which caused problems with kick reasons.
   (thx to sniper for reporting this).
 - fixed bug in message()
   CTCP ACTION messages had missing \001 at the end.
 - fixed a bug in quit(), which caused quit messages not to be sent to the server.
 - fixed reconnect() bug, it sent the channel join requests right after connect(),
   and tried to join a channel without a name.
 - fixes in ChannelSync code
   When a user joins a channel after SmartIRC, no WHO info is updated in the user object.
   Fixed wrong update of channel mode when rpl_channelmodeis received.
   Fixed bug in _mode() method, which caused wrong handling of mode changes.
   Topic updates are now tracked (thanks to sniper).
   Fixed bug which caused fatal errors with ChannelSync enabled
   (closes sf.net bug  #705269).
   Fixed bug in _event_mode(), unhandled modes were stored wrong.
   Fixed bug in _event_rpl_namreply(), which caused that the first char of the first nick
   of a namreply got cut (closes sf.net bug #747832).
 - fixed bug in _checktimer()
   Which caused problems when a timehandler is unregistered.
 - fixed _gettye()
   It wasn't recognizing SMARTIRC_TYPE_ACTION.
 - removed if(!$obj) check for newly created objects (closes PHP bug #24622),
   required for PHP 4.1.2 compatibility.

changes:
 - removed all irc commands from SmartIRC.php
   they have now their own file (SmartIRC/irccommands.php).
 - Net_SmartIRC_messagehandler class now extends Net_SmartIRC_irccommands.
 - removed the 1. parameter (&amp;$irc) of all message handlers, not needed anymore.
 - renamed class Net_SmartIRC_user to Net_SmartIRC_channeluser,
   added class Net_SmartIRC_ircuser.
 - added prefix _event to all message handlers (needed because of class restructuring).
 - tweaked filling of the ircdata objects.
 - log() now checks the passed debug level bitwise.
 - $data-&gt;message will be null instead of random garbage,
   if the IRC message has no colon (the message part),
 - All methods that depend on ChannelSync mode, checks if it's enabled.
 - Optimized the usage of time() for $this-&gt;_lastrx.
 - updated the URL of a SmartIRC based bot (atbs).
 - _loggedin is now set to false when the socket is dead,
   required for proper working  reconnect().
 - on a reconnect(), the logfile won't be overwritten anymore.
 - updated phpdoc tags.
 - all access to the channel array now uses strtolower() for the key.
 - fixed typo in function name setChannelSynching(),
   now it's called setChannelSyncing() with a BC wrapper.
 - removed all SMARTIRC_ prefixes for debug output.
 - changed isJoined($channel) to isJoined($channel, $nickname)
   for checking if the specified user is joined.
 - removed &quot;destructors&quot;, because they don't free the memory.

new:
 - added isOpped() isVoiced() isBanned().
 - added debug output and debug level for the messageparser.
 - reconnect() uses now the channel key if one exists.
 - added channel key syncing in _mode().
 - when an actionhandler message regex has a leading '/' then the regex is used as it is,
   this allows complex perl regex's.
 - added message type SMARTIRC_TYPE_CTCP_REQUEST and SMARTIRC_CTCTP_REPLY for more advanced CTCP.
 - added new log destinations SMARTIRC_NONE and SMARTIRC_BROWSEROUT
   (for firendly browserouput). When the script is called from a browser,
   the BROWSEROUT will automatic be used (closed sf.net bug #708155).
 - added error handling for socket_select() in _rawreceive().
 - added getMessage() to Net_SmartIRC_Error class.
 - added debug level for ChannelSync code (SMARTIRC_DEBUG_CHANNELSYNCING).
 - added filename and linenumber to debug output.
 - added key property to channel class.
 - added to all IRC commands optional $priority parameter with default value SMARTIRC_MEDIUM.
 - added isError() for more advanced errorhandling, needed for encapsulation.
 - added _isValidType() method, which checks for valid SMARTIRC_TYPE_* types.
</notes>
    </release>
    <release>
      <version>0.5.5p1</version>
      <date>2003-07-23</date>
      <license>LGPL</license>
      <state>stable</state>
      <notes>v0.5.5:
-------
fixes:
 - fixed a bug in _rawreceive()
   messages were parsed wrong which caused problems with kick reasons.
   (thx to sniper for reporting this).
 - fixed bug in message()
   CTCP ACTION messages had missing \001 at the end.
 - fixed a bug in quit(), which caused quit messages not to be sent to the server.
 - fixed reconnect() bug, it sent the channel join requests right after connect(),
   and tried to join a channel without a name.
 - fixes in ChannelSync code
   When a user joins a channel after SmartIRC, no WHO info is updated in the user object.
   Fixed wrong update of channel mode when rpl_channelmodeis received.
   Fixed bug in _mode() method, which caused wrong handling of mode changes.
   Topic updates are now tracked (thanks to sniper).
   Fixed bug which caused fatal errors with ChannelSync enabled
   (closes sf.net bug  #705269).
   Fixed bug in _event_mode(), unhandled modes were stored wrong.
   Fixed bug in _event_rpl_namreply(), which caused that the first char of the first nick
   of a namreply got cut (closes sf.net bug #747832).
 - fixed bug in _checktimer()
   Which caused problems when a timehandler is unregistered.
 - fixed _gettye()
   It wasn't recognizing SMARTIRC_TYPE_ACTION.
 - removed if(!$obj) check for newly created objects (closes PHP bug #24622),
   required for PHP 4.1.2 compatibility.

changes:
 - removed all irc commands from SmartIRC.php
   they have now their own file (SmartIRC/irccommands.php).
 - Net_SmartIRC_messagehandler class now extends Net_SmartIRC_irccommands.
 - removed the 1. parameter (&amp;$irc) of all message handlers, not needed anymore.
 - renamed class Net_SmartIRC_user to Net_SmartIRC_channeluser,
   added class Net_SmartIRC_ircuser.
 - added prefix _event to all message handlers (needed because of class restructuring).
 - tweaked filling of the ircdata objects.
 - log() now checks the passed debug level bitwise.
 - $data-&gt;message will be null instead of random garbage,
   if the IRC message has no colon (the message part),
 - All methods that depend on ChannelSync mode, checks if it's enabled.
 - Optimized the usage of time() for $this-&gt;_lastrx.
 - updated the URL of a SmartIRC based bot (atbs).
 - _loggedin is now set to false when the socket is dead,
   required for proper working  reconnect().
 - on a reconnect(), the logfile won't be overwritten anymore.
 - updated phpdoc tags.
 - all access to the channel array now uses strtolower() for the key.
 - fixed typo in function name setChannelSynching(),
   now it's called setChannelSyncing() with a BC wrapper.
 - removed all SMARTIRC_ prefixes for debug output.
 - changed isJoined($channel) to isJoined($channel, $nickname)
   for checking if the specified user is joined.
 - removed &quot;destructors&quot;, because they don't free the memory.

new:
 - added isOpped() isVoiced() isBanned().
 - added debug output and debug level for the messageparser.
 - reconnect() uses now the channel key if one exists.
 - added channel key syncing in _mode().
 - when an actionhandler message regex has a leading '/' then the regex is used as it is,
   this allows complex perl regex's.
 - added message type SMARTIRC_TYPE_CTCP_REQUEST and SMARTIRC_CTCTP_REPLY for more advanced CTCP.
 - added new log destinations SMARTIRC_NONE and SMARTIRC_BROWSEROUT
   (for firendly browserouput). When the script is called from a browser,
   the BROWSEROUT will automatic be used (closed sf.net bug #708155).
 - added error handling for socket_select() in _rawreceive().
 - added getMessage() to Net_SmartIRC_Error class.
 - added debug level for ChannelSync code (SMARTIRC_DEBUG_CHANNELSYNCING).
 - added filename and linenumber to debug output.
 - added key property to channel class.
 - added to all IRC commands optional $priority parameter with default value SMARTIRC_MEDIUM.
 - added isError() for more advanced errorhandling, needed for encapsulation.
 - added _isValidType() method, which checks for valid SMARTIRC_TYPE_* types.
</notes>
    </release>
    <release>
      <version>1.0.0</version>
      <date>2005-05-28</date>
      <license>LGPL</license>
      <state>stable</state>
      <notes>v1.0.0:
-------
Released as 1.0.0 because current PEAR rule require this for stable
packages, there are _no_ big changes in this release!

fixes:
 - renamed Net_SmartIRC_base::Net_SmartIRC to
   Net_SmartIRC_base::Net_SmartIRC_base
   a PHP4 bug made it work, in PHP5 its fixed and doesn't
   (closes PEAR bug #1466, sf.net patch #967067)
 - fixed a bug in _rawreceive()
   the parser checked if he found a colon (messagepart) but +1 was added, the
   check never worked right (I found this bug while porting SmartIRC to C#)
 - fixed bug in _gettype()
   the regexs was too sloppy, sometimes it got confused, this can break easily
   the ChannelSync code.
 - fixed bug in _event_rpl_whoreply()
   on some IRC networks, the channel info in who replies can't be used, they
   return sometimes random channels, this can break ChannelSync code.
 - fixed include paths in example scripts (closes PEAR bug #2042)

changes:
 - applied load socket extension patch (sf.net patch #911993) from
   Anatoly Techtonik &lt;techtonik@users.sourceforge.net&gt;
   if the socket extension is not loaded, it will now try to load it for *nix
   and windows.

new:
 - added objListenFor() method
   it works like listenFor() but returns an array of the received ircdata
   objects (not just ircdata-&gt;message like listenFor() does)

</notes>
    </release>
  </changelog>
</package>