-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.xml
887 lines (841 loc) · 28.5 KB
/
package.xml
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
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.8.1" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0
http://pear.php.net/dtd/package-2.0.xsd">
<name>Net_UserAgent_Mobile</name>
<channel>pear.php.net</channel>
<summary>HTTP mobile user agent string parser</summary>
<description>Net_UserAgent_Mobile parses HTTP_USER_AGENT strings of (mainly Japanese) mobile HTTP user agents. It'll be useful in page dispatching by user agents.
This package was ported from Perl's HTTP::MobileAgent.
See http://search.cpan.org/search?mode=module&query=HTTP-MobileAgent</description>
<lead>
<name>KUBO Atsuhiro</name>
<user>kuboa</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2009-06-23</date>
<time>17:34:03</time>
<version>
<release>1.0.0</release>
<api>0.30.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">New BSD License</license>
<notes>
What's New in Net_UserAgent_Mobile 1.0.0
* Updated docomo Support: Nine new models P-10A, P-08A, P-09A, N-09A, F-08A, F-09A, SH-05A, SH-06A, and SH-07A since the release 1.0.0RC3 have been supported. Also the model name of P-07A, N-06A, and N-08A have been adjusted to their fixed user-agent string like P07A => P07A3.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
<dir name="docs">
<file name="LICENSE" role="doc">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
</dir> <!-- /docs -->
<dir name="Net">
<dir name="UserAgent">
<dir name="Mobile">
<dir name="DoCoMo">
<file name="ScreenInfo.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
</dir> <!-- /Net/UserAgent/Mobile/DoCoMo -->
<file name="Common.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="Display.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="DoCoMo.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="Error.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="EZweb.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="NonMobile.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="SoftBank.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="Willcom.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
</dir> <!-- /Net/UserAgent/Mobile -->
<file name="Mobile.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
</dir> <!-- /Net/UserAgent -->
</dir> <!-- /Net -->
<dir name="tests">
<dir name="Mobile">
<dir name="DoCoMoTestCase">
<file name="docomo-screen.xml" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
</dir> <!-- /tests/Mobile/DoCoMoTestCase -->
<file name="AbstractTestCase.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="AllTests.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="DoCoMoTestCase.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="EZwebTestCase.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="NonMobileTestCase.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="SoftBankTestCase.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="WillcomTestCase.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
</dir> <!-- /tests/Mobile -->
<file name="AllTests.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="MobileTestCase.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="prepare.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
</dir> <!-- /tests -->
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>4.3.0</min>
</php>
<pearinstaller>
<min>1.4.3</min>
</pearinstaller>
<package>
<name>PEAR</name>
<channel>pear.php.net</channel>
<min>1.4.3</min>
</package>
<extension>
<name>pcre</name>
</extension>
</required>
<optional>
<extension>
<name>xml</name>
</extension>
</optional>
</dependencies>
<phprelease />
<changelog>
<release>
<version>
<release>1.0.0</release>
<api>0.30.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2009-06-23</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">New BSD License</license>
<notes>
What's New in Net_UserAgent_Mobile 1.0.0
* Updated docomo Support: Nine new models P-10A, P-08A, P-09A, N-09A, F-08A, F-09A, SH-05A, SH-06A, and SH-07A since the release 1.0.0RC3 have been supported. Also the model name of P-07A, N-06A, and N-08A have been adjusted to their fixed user-agent string like P07A => P07A3.
</notes>
</release>
<release>
<version>
<release>1.0.0RC3</release>
<api>0.30.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-05-25</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">New BSD License</license>
<notes>
A new release of Net_UserAgent_Mobile is now available.
What's New in Net_UserAgent_Mobile 1.0.0RC3
* Updated docomo Support: Three new models, P-07A, N-06A, and N-08A since the release 1.0.0RC2 have been supported. These models have the i-mode browser 2.0, can be distinguished by newly added getBrowserVersion().
See the following release notes for details.
Enhancements
============
- Changed the class declaration so as not to inherit from PEAR. (Net_UserAgent_Mobile, Net_UserAgent_Mobile_Common)
- Added support for the new models of docomo. (since the release 1.0.0RC2)
- Added getBrowserVersion() to get the i-mode browser version.
</notes>
</release>
<release>
<version>
<release>1.0.0RC2</release>
<api>0.30.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-05-11</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">New BSD License</license>
<notes>
A new release of Net_UserAgent_Mobile is now available.
What's New in Net_UserAgent_Mobile 1.0.0RC2
* Updated DoCoMo Support: A lot of new models since the release 1.0.0RC1 have been supported.
* A few defect fixes: A few defect (including #13905, #15776) have been fixed.
* License Change: The license has been changed from PHP License 3.0 to New BSD License (2-clause).
See the following release notes for details.
Enhancements
============
- Added Support for the new models of docomo. (since the release 1.0.0RC1) Thanks to Sach Jobb <[email protected]> for the patch.
Defect Fixes
============
- Added @ to all list() calls to avoid unwanted warnings for invalid user agent string. (Net_UserAgent_Mobile_DoCoMo, Net_UserAgent_Mobile_EZweb, Net_UserAgent_Mobile_SoftBank) (Bug #13905)
- Fixed a defect that caused "Strict standards" errors to be raised. (Bug #15776)
- Fixed a defect that caused a broken error object to be returned even though the specified error mode is not PEAR_ERROR_RETURN. (Net_UserAgent_Mobile)
</notes>
</release>
<release>
<version>
<release>1.0.0RC1</release>
<api>0.30.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2008-05-10</date>
<license uri="http://www.opensource.org/licenses/php.php">PHP License</license>
<notes>
A new release of Net_UserAgent_Mobile is now available.
What's New in Net_UserAgent_Mobile 1.0.0RC1
* UID support: Getting subscriber IDs (UIDs) by getUID() has been supported.
* Updated DoCoMo Support: 14 new models since the release 0.31.0 have been supported. And also DeNA's Web Crawler has been supported.
* Two defect fixes: Two minor defects (#13128 and #13129) have been fixed.
See the following release notes for details.
Enhancements
============
- Added support for DeNA's Web Crawler. (Request #13130) (Net_UserAgent_Mobile_DoCoMo)
- Added support for getting subscriber IDs (UIDs) by getUID().
- Added support for NM705i, L705iX, F883iESS, SH705i, SH705i2, SO905iCS, F905iBiz, P905iTV, P705i, N705imyu, P705imyu, SO705i, P705iCL, F884i. (Net_UserAgent_Mobile_DoCoMo, Net_UserAgent_Mobile_DoCoMo_ScreenInfo)
Defect Fixes
============
- Added error control operators to all $_SERVER['HTTP_USER_AGENT'] to avoid PHP notices. (Bug #13128) (Net_UserAgent_Mobile)
- Fixed a defect that the user agent string is not included in an error message raised from noMatch(). (Bug #13129) (Net_UserAgent_Mobile_Common)
</notes>
</release>
<release>
<version>
<release>0.31.0</release>
<api>0.30.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2008-02-10</date>
<license uri="http://www.opensource.org/licenses/php.php">PHP License</license>
<notes>
A new release of Net_UserAgent_Mobile is now available.
What's New in Net_UserAgent_Mobile 0.31.0
* Updated DoCoMo Support: A lot of new models since the release 0.30.0 have been supported. Thanks to yosuke for providing a patch.
* Some useful interfaces by the Net_UserAgent_Mobile class: The new methods isMobile() and isDoCoMo()/isEZweb()/isSoftBank()/isWillcom() can be used directly to check whether or not the user agent is mobile/DoCoMo/EZweb/SoftBank/Willcom.
* Enhanced parsers: The Net_UserAgent_Mobile class and the SoftBank parser support SoftBank emulators. And the DoCoMo parser supports Yahoo!'s Web Crawler. Thanks to Hiroaki Kawai for feature requests and providing patches.
See the following release notes for details.
Enhancements
============
- Added support for a lot of models. (Net_UserAgent_Mobile_DoCoMo, Net_UserAgent_Mobile_DoCoMoDisplayMap)
- Changed the behavior of singleton() so that it creates a cache for each user-agent. (Net_UserAgent_Mobile)
- Added the method isSoftBank() to check whether an agent is SoftBank or not. (Net_UserAgent_Mobile_Common)
- Renamed the class name from Net_UserAgent_Mobile_Vodafone to Net_UserAgent_Mobile_SoftBank.
- Added the methods isMobile() and isDoCoMo()/isEZweb()/isSoftBank()/isWillcom() to check whether or not the user agent is mobile/DoCoMo/EZweb/SoftBank/Willcom by a given user agent string or by the HTTP header in an environment. (Net_UserAgent_Mobile)
- Added the method isWillcom() to check whether an agent is Willcom or not. (Net_UserAgent_Mobile_Common)
- Renamed the class name from Net_UserAgent_Mobile_AirHPhone to Net_UserAgent_Mobile_Willcom.
- Added $_model/$_rawModel properties and getModel()/getRawModel() methods. (Net_UserAgent_Mobile_Common)
- Removed getDeviceID(). (Net_UserAgent_Mobile_NonMobile)
- Added support some emulators. (Request #12877) (Net_UserAgent_Mobile, Net_UserAgent_Mobile_SoftBank)
- Added support for Yahoo!'s Web Crawler. (Request #13061) (Net_UserAgent_Mobile_DoCoMo)
Defect Fixes
============
- Fixed the model name from N506ISII to N506IS2. (Net_UserAgent_Mobile_DoCoMoDisplayMap)
- Fixed a defect that caused supported HTML versions for some user agents that support HTML version 6.0 or greater to be detected as 5.0. (Net_UserAgent_Mobile_DoCoMo)
- Fixed invalid width and height of some models. (Net_UserAgent_Mobile_DoCoMoDisplayMap)
</notes>
</release>
<release>
<version>
<release>0.30.0</release>
<api>0.30.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2007-02-20</date>
<license uri="http://www.opensource.org/licenses/php.php">PHP License</license>
<notes>
A new release of Net_UserAgent_Mobile is now available.
This release includes a fix for the bug #9891 "dirname(__FILE__) should not be used for include/require". This can be replaced a driver with a user enhancement driver in the normal way.
And also this release includes other fixes and supports many new models. See the following release notes for details.
## Defect Fixes ##
- Changed to not use dirname(__FILE__) for include/require. (Bug #9891)
### Net_UserAgent_Mobile_DoCoMo ###
- Changed so that an FOMA Card ID (iccXXXXXXXXXXXXXXXXXXXX) without 20 digit alphanumeric can be parsed successfully. Then getCardID() method will simply return null. (Bug #8584)
- Fixed the HTML version for 882i from 5.0 to 6.0.
### Net_UserAgent_Mobile_Vodafone ###
- Removed a duplicate statement. (Bug #8806)
- Fixed model version matching to get appropriate model version as JP10 for 705P/PJP10.
## Enhancements ##
### Net_UserAgent_Mobile_DoCoMo, Net_UserAgent_Mobile_DoCoMoDisplayMap ###
- Added support for L601i, M702iS, M702iG, N902iL, N601i, D800iDS, P703imyu, N903i, D903i, F903i, SO9603i, D903iTV, F903iX, P903iTV, N703iD, F703i, P703i, D703i, SH703i, N703imyu, SO703i.
</notes>
</release>
<release>
<version>
<release>0.29.0</release>
<api>0.29.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2006-11-07</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
This release includes support for SoftBank 705P and DoCoMo 903i series. See the following release notes for details.
## Enhancements ##
### Net_UserAgent_Mobile_Vodafone ###
- Added support for SoftBank 705P. Thanks to Seiji Kajiwara <[email protected]> and HORINOUCHI Masato <[email protected]> for the patches.
### Net_UserAgent_Mobile_DoCoMo ###
- Added support for 903i series. Thanks to Masaki Fujimoto <[email protected]> for the patch.
### Net_UserAgent_Mobile_DoCoMoDisplayMap ###
- Added support for SH903i, P903i.
</notes>
</release>
<release>
<version>
<release>0.28.0</release>
<api>0.28.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2006-09-25</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for SoftBank. Thanks to Kazunari Komoriya <[email protected]> for the patches.
- Added support for N902iX, SH702iS, N702iS, P702iD, D702iF, F882iES.
- Fixed height of F902iS.
</notes>
</release>
<release>
<version>
<release>0.27.0</release>
<api>0.27.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2006-07-13</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support a lot of agents as follows:
NM850iG
P901iTV
F881iES
N701iECO
SA800i
L600i
N600i
SO902i
SH902iS
P902iS
N902iS
D902iS
F902iS
SO902iWP+
P702i
N702iD
F702iD
SH702iD
D702i
SO702i
D702iBCL
D851iWM
SH902iSL
SA702i
</notes>
</release>
<release>
<version>
<release>0.26.0</release>
<api>0.26.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2006-02-01</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for 'WILLCOM'.
- Added support for 701i and 902i in getHTMLVersion.
- Added support for DoCoMo's SO213iWR, SA700iS, P851i, D701i, N701i, P701iD, D701iWM, F902i, D902i, N902i, P902i, SH902i.
</notes>
</release>
<release>
<version>
<release>0.25.0</release>
<api>0.25.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2005-08-18</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed "Only variable references should be returned by reference" notice with PHP 4.4.0 and 5.1.0.
- Added support for DoCoMo's SH851i, F700iS, SH700iS.
- Added code to get the vendor code of 'V301SH', 'V301T', etc in Vodafone.php. (Bug #5124)
- Fixed 'Undefined offset' error in Vodafone.php.
</notes>
</release>
<release>
<version>
<release>0.24.0</release>
<api>0.24.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2005-07-27</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added fallback mode on no match using $GLOBALS['_NET_USERAGENT_MOBILE_FALLBACK_ON_NOMATCH'].
- Changed the EZweb regex pattern to be able to match au's A5511T.
- Added support for DoCoMo's SO506iS, SH901iS, F901iS, D901iS, P901iS, N901iS.
** NOTE **
If you want to use fallback mode on no match, please set true to $GLOBALS['_NET_USERAGENT_MOBILE_FALLBACK_ON_NOMATCH'] before calling factory().
</notes>
</release>
<release>
<version>
<release>0.23.0</release>
<api>0.23.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2005-03-23</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for DoCoMo's N506iS, SO506i, P253iS.
- Added support for DoCoMo's N901iC, D901i, P901i, F700i, SH700i, N700i, P700i. (by Christopher Kobayashi <chriskk at gmail dot com>)
</notes>
</release>
<release>
<version>
<release>0.22.0</release>
<api>0.22.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2005-02-03</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
* Mobile/Vodafone.php
- Added getMsname() method which returns the value of x-jphone-msname header, which is the name of the mobile phone.
* Mobile/NonMobile.php
- Added makeDisplay() method as a temporary measure since the script would die when the method is called. (Bug #3368)
</notes>
</release>
<release>
<version>
<release>0.21.0</release>
<api>0.21.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2005-02-01</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for Vodafone 3G mobile phones (3GC).
- Added support for DoCoMo's SO213iS, D253i, N253i, P253i, D253iWM, P213i, N900iL, N900iG, SH901iC, F901iC.
</notes>
</release>
<release>
<version>
<release>0.20.0</release>
<api>0.20.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2004-09-25</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed Bug #827 without BC break. This package currently works properly on PHP5.
- Added getCarrierShortName() and getCarrierLongName() methods.
- Added isVodafone() method.
- Added isTUKa() method.
- Changed the way to get a series of FOMA in DoCoMo.php.
- Added support for DoCoMo's P651ps, SO213i, N506i, P506iC, SH506iC, SO506iC, F900iT, P900iV, N900iS, D900i, F900iC, F880iES.
- Changed treatment of the name of the model in EZweb.php. getModel() method currently returns the device ID.
- Renamed from JPhone.php to Vodafone.php.
- Added getModel() and getDeviceID() methods in NonMobile.php. These methods always return ''.
</notes>
</release>
<release>
<version>
<release>0.19</release>
<api>0.19</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2004-05-27</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added a external map file support.
the XML data which is generated by makexmldocomomap, which is included in
Perl's HTTP::MobileAgent, is now available.
Please see the API documentation of Net_UserAgent_Mobile_Display class.
- Added support for DoCoMo's P252iS, D506i, F506i.
- Added support for EZweb's W21H, A5504T, TK41.
** NOTE **
In the next release, BC will be broken for PHP5 compatibility reasons. Please
see bug #827.
</notes>
</release>
<release>
<version>
<release>0.18</release>
<api>0.18</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2004-03-20</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for DoCoMo's N900i, P900i, SH900i.
- Added support for EZweb's A5502K, A5405SA, A1402S.
- Some fixes related to PHP5 issues.
</notes>
</release>
<release>
<version>
<release>0.17</release>
<api>0.17</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2004-02-08</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for DoCoMo's F505iGPS, F900i.
- Added support for EZweb's A5502K, TS41.
- EZweb.php: Fixed the model name for KCTD.
</notes>
</release>
<release>
<version>
<release>0.16</release>
<api>0.16</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-12-15</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for DoCoMo's N505iS, SO505iS, SH505iS.
- Added support for EZweb's W11K, W11H, A5503SA, A5404S, A5403CA, TS40, TT32
in getModel() method.
</notes>
</release>
<release>
<version>
<release>0.15</release>
<api>0.15</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-11-17</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for DoCoMo's D505iS, P505iS, P252i, N252i.
- EZweb.php: Added getModel() method using a static table.
</notes>
</release>
<release>
<version>
<release>0.14.1</release>
<api>0.14.1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-10-12</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- removed a print statement for debugging in Net_UserAgent_Mobile::singleton().
</notes>
</release>
<release>
<version>
<release>0.14</release>
<api>0.14</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-10-12</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added singleton() method.
- Added support for DoCoMo's D252i, SH252i.
</notes>
</release>
<release>
<version>
<release>0.13</release>
<api>0.13</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-09-04</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for DoCoMo's SH505i2, F672i.
</notes>
</release>
<release>
<version>
<release>0.12</release>
<api>0.12</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-08-11</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Changed way to handle static variables from the PEAR::getStaticProperty
method to the static statement.
- AirHPhone.php: Added makeDisplay() method as a temporary measure since the
script would die when the method is called.
- Added display information for DoCoMo's N2102V, P505i.
</notes>
</release>
<release>
<version>
<release>0.11</release>
<api>0.11</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-07-20</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added display information for DoCoMo's P2102V, F2102V, F505i.
</notes>
</release>
<release>
<version>
<release>0.10</release>
<api>0.10</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-07-07</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added display information for DoCoMo's N2701, SH505i, N505i.
- Added support for DoCoMo's FOMA 2701.
- Changed license from PHP license 2.02 to PHP license 3.0.
</notes>
</release>
<release>
<version>
<release>0.9</release>
<api>0.9</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-06-05</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added display information about DoCoMo's 'SO505i'.
- DoCoMo.php: Fixed the logic error which entered at the time of 505i support.
</notes>
</release>
<release>
<version>
<release>0.8</release>
<api>0.8</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-05-23</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added isGPS() method in DoCoMo.
- Added display information about DoCoMo's 'D505i'.
</notes>
</release>
<release>
<version>
<release>0.7</release>
<api>0.7</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-05-12</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for DoCoMo 505i.
</notes>
</release>
<release>
<version>
<release>0.6</release>
<api>0.6</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-04-22</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added support for DoCoMo's 'N251iS', 'F661i'.
</notes>
</release>
<release>
<version>
<release>0.5</release>
<api>0.5</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-04-07</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added AirH"PHONE support.
- Added display information about DoCoMo's 'N211iS', 'P211iS'.
</notes>
</release>
<release>
<version>
<release>0.4</release>
<api>0.4</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-03-27</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Changed way to get characteristics for new format of user agent which is
used by 'FOMA 2051/2102V'.
- Added display information about DoCoMo's 'P2102V'.
- Added PEAR error handling.
- Updated documentation.
</notes>
</release>
<release>
<version>
<release>0.3</release>
<api>0.3</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-02-24</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added isNonMobile() method.
</notes>
</release>
<release>
<version>
<release>0.2</release>
<api>0.2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-02-20</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Added code which had forgotten by the port.
</notes>
</release>
<release>
<version>
<release>0.1</release>
<api>0.1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-02-19</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- initial release
</notes>
</release>
</changelog>
</package>