-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
5683 lines (4652 loc) · 281 KB
/
index.html
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
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/hybrid.min.css">
<link rel="stylesheet" href="pirum.css">
<link rel="alternate" type="application/rss+xml" href="http://openpear.org/feed.xml" title="Openpear PEAR channel Latest Releases">
<title>Openpear</title>
</head>
<body>
<div class="container">
<header>
<div class="pull-right" id="google_translate_element"></div>
<h1>Openpear</h1>
<p class="lead">Openpear is a PEAR Repository Channel and Subversion Hosting Service.<br>
<small>since November 2008</small></p>
<p><a href="https://gitter.im/openpear/general"><img src="//img.shields.io/badge/GITTER-JOIN_CHAT_%E2%86%92-1dce73.svg"></a></p>
</header>
<div class="alert alert-info">
<h3>以前からお使いですか?</h3>
<p>以前の Openpear をお使いだった方は、以下のコマンドを実行する必要があります</p>
<pre><code>pear channel-update openpear.org</code></pre>
</div>
<div class="howto panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">使い方</h3>
</div>
<div class="panel-body">
<h4>チャンネルを登録する</h4>
<pre><code>pear channel-discover openpear.org</code></pre>
<h4>利用可能なパッケージをリストする</h4>
<pre><code>pear remote-list -c openpear</code></pre>
<h4>パッケージをインストールする</h4>
<pre><code>pear install openpear/package_name</code></pre>
<h4>バージョンや安定性を指定してパッケージをインストールする</h4>
<pre><code>pear install openpear/package_name-1.0.0
pear install openpear/package_name-beta</code></pre>
</div>
</div>
<h2>Special Thanks</h2>
<p><a href="http://www.unit-hosting.com"><img class="logo" src="./images/unithosting.png"></a></p>
<h2>パッケージリスト</h2>
<div class="row">
<div class="col-md-2 col-md-push-10" role="navigation">
<ul class="list-unstyled list-packages">
<li><a href="#acme_brainphack">Acme_BrainPhack</a></li>
<li><a href="#acme_hyde">Acme_Hyde</a></li>
<li><a href="#acme_idolmaster">Acme_IdolMaster</a></li>
<li><a href="#acme_morningmusume">Acme_MorningMusume</a></li>
<li><a href="#auth_hatena">Auth_Hatena</a></li>
<li><a href="#auth_kitten">Auth_Kitten</a></li>
<li><a href="#auth_openid">Auth_OpenID</a></li>
<li><a href="#auth_wsse">Auth_WSSE</a></li>
<li><a href="#bitio">BitIO</a></li>
<li><a href="#csv_iterator">CSV_Iterator</a></li>
<li><a href="#code_hogenumber">Code_HogeNumber</a></li>
<li><a href="#cyclicvalueproducer">CyclicValueProducer</a></li>
<li><a href="#db_serializedb">DB_SerializeDB</a></li>
<li><a href="#date_japanese_era">Date_Japanese_Era</a></li>
<li><a href="#db_fixture">Db_Fixture</a></li>
<li><a href="#diggin">Diggin</a></li>
<li><a href="#diggin_http_response_charactorencoding">Diggin_Http_Response_CharactorEncoding</a></li>
<li><a href="#diggin_http_response_charset">Diggin_Http_Response_Charset</a></li>
<li><a href="#diggin_robotrules">Diggin_RobotRules</a></li>
<li><a href="#diggin_scraper_adapter_htmlscraping">Diggin_Scraper_Adapter_Htmlscraping</a></li>
<li><a href="#ether_suite">Ether_Suite</a></li>
<li><a href="#ethna_plugin_debugtoolbar">Ethna_Plugin_Debugtoolbar</a></li>
<li><a href="#ethna_plugin_htmlemoji">Ethna_Plugin_HTMLEmoji</a></li>
<li><a href="#ethna_renderer_runemaster">Ethna_Renderer_RuneMaster</a></li>
<li><a href="#file_hyperestraier">File_HyperEstraier</a></li>
<li><a href="#gd_tab_guitar">GD_Tab_Guitar</a></li>
<li><a href="#html_css_mobile">HTML_CSS_Mobile</a></li>
<li><a href="#html_css_selector2xpath">HTML_CSS_Selector2XPath</a></li>
<li><a href="#html_domparser">HTML_DomParser</a></li>
<li><a href="#http_download_mobile_ezget">HTTP_Download_Mobile_EZget</a></li>
<li><a href="#http_oauthconsumer">HTTP_OAuthConsumer</a></li>
<li><a href="#http_oauthprovider">HTTP_OAuthProvider</a></li>
<li><a href="#hatenasyntax">HatenaSyntax</a></li>
<li><a href="#io_bit">IO_Bit</a></li>
<li><a href="#io_swf">IO_SWF</a></li>
<li><a href="#ignoreexceptioniterator">IgnoreExceptionIterator</a></li>
<li><a href="#image_colorful">Image_Colorful</a></li>
<li><a href="#image_combination">Image_Combination</a></li>
<li><a href="#image_gifcolorconverter">Image_GifColorConverter</a></li>
<li><a href="#japanese_mobile_emoji">Japanese_Mobile_Emoji</a></li>
<li><a href="#keion_service_symfony2bundles">Keion_Service_Symfony2Bundles</a></li>
<li><a href="#keires_db">Keires_DB</a></li>
<li><a href="#keires_feed">Keires_Feed</a></li>
<li><a href="#lazyfileiterator">LazyFileIterator</a></li>
<li><a href="#lightningtemplate">LightningTemplate</a></li>
<li><a href="#loggeriterator">LoggerIterator</a></li>
<li><a href="#mime_type_extension_mobile">MIME_Type_Extension_Mobile</a></li>
<li><a href="#mac_applescript">Mac_AppleScript</a></li>
<li><a href="#mac_growl">Mac_Growl</a></li>
<li><a href="#mail_address_mobilejp">Mail_Address_MobileJp</a></li>
<li><a href="#mail_mailer">Mail_Mailer</a></li>
<li><a href="#mail_mime_xpath">Mail_mime_XPath</a></li>
<li><a href="#maple4_doctest">Maple4_DocTest</a></li>
<li><a href="#net_cicindela">Net_Cicindela</a></li>
<li><a href="#net_curl2">Net_Curl2</a></li>
<li><a href="#net_handlersocket">Net_HandlerSocket</a></li>
<li><a href="#net_ipv4_networkgroup">Net_IPv4_NetworkGroup</a></li>
<li><a href="#net_kyototycoon">Net_KyotoTycoon</a></li>
<li><a href="#net_messagepackrpc">Net_MessagePackRPC</a></li>
<li><a href="#net_mobilecidr">Net_MobileCIDR</a></li>
<li><a href="#net_okuyama">Net_Okuyama</a></li>
<li><a href="#net_pocketbell">Net_Pocketbell</a></li>
<li><a href="#net_q4m">Net_Q4M</a></li>
<li><a href="#net_socket_tiarra">Net_Socket_Tiarra</a></li>
<li><a href="#net_tokyotyrant">Net_TokyoTyrant</a></li>
<li><a href="#net_url_dispatcher">Net_URL_Dispatcher</a></li>
<li><a href="#net_useragent_mobile_capability">Net_UserAgent_Mobile_Capability</a></li>
<li><a href="#net_useragent_mobile_userid">Net_UserAgent_Mobile_UserID</a></li>
<li><a href="#norfdoctest">NorfDocTest</a></li>
<li><a href="#nullfilehandleiterator">NullFilehandleIterator</a></li>
<li><a href="#openpear_util">Openpear_Util</a></li>
<li><a href="#pear_packageprojector">PEAR_PackageProjector</a></li>
<li><a href="#peg">PEG</a></li>
<li><a href="#php_makeinfo">PHP_MakeInfo</a></li>
<li><a href="#php_obfuscator">PHP_Obfuscator</a></li>
<li><a href="#php_object">PHP_Object</a></li>
<li><a href="#php_perlish">PHP_Perlish</a></li>
<li><a href="#php_powertoys">PHP_PowerToys</a></li>
<li><a href="#phoblinks">Phoblinks</a></li>
<li><a href="#pictgramconverter">PictgramConverter</a></li>
<li><a href="#sample_webdb48">Sample_Webdb48</a></li>
<li><a href="#sequence">Sequence</a></li>
<li><a href="#sequenceproducer">SequenceProducer</a></li>
<li><a href="#service_ustream">Service_Ustream</a></li>
<li><a href="#services_atnd">Services_ATND</a></li>
<li><a href="#services_backlog">Services_Backlog</a></li>
<li><a href="#services_bitly">Services_Bitly</a></li>
<li><a href="#services_buzzurl">Services_Buzzurl</a></li>
<li><a href="#services_calil">Services_Calil</a></li>
<li><a href="#services_foursquare">Services_Foursquare</a></li>
<li><a href="#services_googlechartapiqr">Services_GoogleChartApiQR</a></li>
<li><a href="#services_google_calendar">Services_Google_Calendar</a></li>
<li><a href="#services_html2pdf">Services_HTML2PDF</a></li>
<li><a href="#services_hanako">Services_Hanako</a></li>
<li><a href="#services_mixiapi">Services_MixiAPI</a></li>
<li><a href="#services_photozou">Services_Photozou</a></li>
<li><a href="#services_prowl">Services_Prowl</a></li>
<li><a href="#services_rakuten">Services_Rakuten</a></li>
<li><a href="#services_recruit">Services_Recruit</a></li>
<li><a href="#services_sbm_info">Services_SBM_Info</a></li>
<li><a href="#services_shitaraba">Services_Shitaraba</a></li>
<li><a href="#services_shorturl_googl">Services_ShortURL_Googl</a></li>
<li><a href="#services_thanks">Services_Thanks</a></li>
<li><a href="#services_threelines">Services_ThreeLines</a></li>
<li><a href="#services_twitter_time">Services_Twitter_Time</a></li>
<li><a href="#services_ustream">Services_Ustream</a></li>
<li><a href="#services_vily">Services_Vily</a></li>
<li><a href="#services_weatherunderground">Services_WeatherUnderground</a></li>
<li><a href="#services_wedata">Services_Wedata</a></li>
<li><a href="#services_yahoo_jp_da">Services_Yahoo_JP_DA</a></li>
<li><a href="#services_yahoo_jp_furigana">Services_Yahoo_JP_Furigana</a></li>
<li><a href="#services_yahoo_jp_text">Services_Yahoo_JP_Text</a></li>
<li><a href="#services_yourfilehost">Services_YourFileHost</a></li>
<li><a href="#spyc">Spyc</a></li>
<li><a href="#stream_filter_mbstring">Stream_Filter_Mbstring</a></li>
<li><a href="#stream_macro">Stream_Macro</a></li>
<li><a href="#string_formatter">String_Formatter</a></li>
<li><a href="#template_pilika">Template_Pilika</a></li>
<li><a href="#test_morsesignalconverter">Test_MorseSignalConverter</a></li>
<li><a href="#text_ketainize">Text_Ketainize</a></li>
<li><a href="#text_ngram">Text_Ngram</a></li>
<li><a href="#text_variationproducer">Text_VariationProducer</a></li>
<li><a href="#twins">Twins</a></li>
<li><a href="#web_sessionsecurity">Web_SessionSecurity</a></li>
<li><a href="#wikihub">WikiHub</a></li>
<li><a href="#wozozo_caesarcrypt">Wozozo_CaesarCrypt</a></li>
<li><a href="#wozozo_findjob">Wozozo_FindJob</a></li>
<li><a href="#wozozo_libido_tool_provider_yourfilehostprovider">Wozozo_Libido_Tool_Provider_YourfilehostProvider</a></li>
<li><a href="#wozozo_memorycleaner">Wozozo_MemoryCleaner</a></li>
<li><a href="#wozozo_oneclickfraud">Wozozo_OneClickFraud</a></li>
<li><a href="#wozozo_phplogo">Wozozo_PHPLogo</a></li>
<li><a href="#wozozo_pasttime">Wozozo_PastTime</a></li>
<li><a href="#wozozo_pathinfo">Wozozo_Pathinfo</a></li>
<li><a href="#wozozo_propelutil">Wozozo_PropelUtil</a></li>
<li><a href="#wozozo_saigoppe">Wozozo_Saigoppe</a></li>
<li><a href="#wozozo_tinycrypt">Wozozo_TinyCrypt</a></li>
<li><a href="#wozozo_unko">Wozozo_Unko</a></li>
<li><a href="#wozozo_view">Wozozo_View</a></li>
<li><a href="#wozozo_virtualgirlfriend">Wozozo_VirtualGirlFriend</a></li>
<li><a href="#wozozo_www_youtube">Wozozo_WWW_YouTube</a></li>
<li><a href="#wozozo_zenra">Wozozo_Zenra</a></li>
<li><a href="#zendframework">ZendFramework</a></li>
<li><a href="#jpsimplemailplugin">jpSimpleMailPlugin</a></li>
<li><a href="#log4php_appenders_loggerappendertweet">log4php_appenders_LoggerAppenderTweet</a></li>
<li><a href="#opfreepageplugin">opFreepagePlugin</a></li>
<li><a href="#phpman">phpman</a></li>
<li><a href="#sfjpmobileplugin">sfJpMobilePlugin</a></li>
<li><a href="#sfmobileipplugin">sfMobileIPPlugin</a></li>
</ul>
</div>
<div class="col-md-10 col-md-pull-2" role="main">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="acme_brainphack"><a href="https://github.com/openpear/Acme_BrainPhack">Acme_BrainPhack</a>
<small><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License Version 2.0</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>"BrainF*ck" interpreter sample implementation by PHP.</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Acme_BrainPhack</code></pre>
<p><strong>メンテナー</strong></p>
<p>msakamoto-sf <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Acme_BrainPhack-1.0.0.tgz">1.0.0</a> <small>(stable)</small>, <a href="http://openpear.org/get/Acme_BrainPhack-0.0.2.tgz">0.0.2</a> <small>(beta)</small>, <a href="http://openpear.org/get/Acme_BrainPhack-0.0.1.tgz">0.0.1</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="acme_hyde"><a href="https://github.com/openpear/Acme_Hyde">Acme_Hyde</a>
<small><a href="http://creativecommons.org/licenses/BSD/">New BSD Licence</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>Acme_Hyde - Hyde Calculator</p>
<p><a href="http://search.cpan.org/~nozzzzz/Acme-Hyde-0.04/">http://search.cpan.org/~nozzzzz/Acme-Hyde-0.04/</a></p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Acme_Hyde</code></pre>
<p><strong>メンテナー</strong></p>
<p>Keisuke SATO <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Acme_Hyde-1.0.0.tgz">1.0.0</a> <small>(stable)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="acme_idolmaster"><a href="https://github.com/openpear/Acme_IdolMaster">Acme_IdolMaster</a>
<small><a href="http://creativecommons.org/licenses/BSD/">New BSD Licence</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>アイドルマスターのアイドルを管理します。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Acme_IdolMaster</code></pre>
<p><strong>メンテナー</strong></p>
<p>yohei <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Acme_IdolMaster-0.1.0.tgz">0.1.0</a> <small>(alpha)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="acme_morningmusume"><a href="https://github.com/openpear/Acme_MorningMusume">Acme_MorningMusume</a>
<small><a href="http://creativecommons.org/licenses/BSD/">New BSD Licence</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>phpcon 2008 での takesako さんの一言から openpear への野望は始まった訳です。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Acme_MorningMusume</code></pre>
<p><strong>メンテナー</strong></p>
<p>Keisuke SATO <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Acme_MorningMusume-0.1.0.tgz">0.1.0</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="auth_hatena"><a href="https://github.com/openpear/Auth_Hatena">Auth_Hatena</a>
<small><a href="http://www.php.net/license/3_01.txt">PHP License 3.01</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p><a href="http://auth.hatena.ne.jp/">はてな認証API</a>を利用する為のライブラリ</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Auth_Hatena</code></pre>
<p><strong>メンテナー</strong></p>
<p>halt <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Auth_Hatena-1.0.0.tgz">1.0.0</a> <small>(stable)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="auth_kitten"><a href="https://github.com/openpear/Auth_Kitten">Auth_Kitten</a>
<small><a href="http://www.php.net/license/3_01.txt">PHP License 3.01</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>こねこでコメントスパムを防ぐライブラリ</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Auth_Kitten</code></pre>
<p><strong>メンテナー</strong></p>
<p>halt <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Auth_Kitten-1.0.0.tgz">1.0.0</a> <small>(stable)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="auth_openid"><a href="https://github.com/openpear/Auth_OpenID">Auth_OpenID</a>
<small><a href="http://openpear.org/license">PHP License 3.01</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>hooo</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Auth_OpenID</code></pre>
<p><strong>メンテナー</strong></p>
<p>Sotaro KARASAWA <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Auth_OpenID-2.2.3.tgz">2.2.3</a> <small>(stable)</small>, <a href="http://openpear.org/get/Auth_OpenID-2.2.2.tgz">2.2.2</a> <small>(stable)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="auth_wsse"><a href="https://github.com/openpear/Auth_WSSE">Auth_WSSE</a>
<small><a href="http://www.php.net/license/3_01.txt">PHP3.01</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>WSSE認証のパッケージです。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Auth_WSSE</code></pre>
<p><strong>依存</strong></p>
<dl class="dependencies">
<dt>pear.php.net</dt>
<dd>
HTTP_Request2 <dd>
</dl>
<p><strong>メンテナー</strong></p>
<p>SHIMOOKA Hideyuki <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Auth_WSSE-0.1.0.tgz">0.1.0</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="bitio"><a href="https://github.com/openpear/BitIO">BitIO</a>
<small><a href="http://www.php.net/license/3_01.txt">PHP License 3.01</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>ビット処理のユーティリティです。</p>
<p>いちいち、pack v したり、incremental にデータを生成するのに offset を処理するのが面倒だという人向けです。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/BitIO</code></pre>
<p><strong>メンテナー</strong></p>
<p>よや <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/BitIO-1.0.0.tgz">1.0.0</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="csv_iterator"><a href="https://github.com/openpear/CSV_Iterator">CSV_Iterator</a>
<small><a href="http://www.php.net/license/3_01.txt">PHP Licence</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>CSVファイル(ref:<a href="http://www.ietf.org/rfc/rfc4180.txt">RFC4180</a>)をイテレートするためのクラスです。</p>
<p>外国産の同様のクラスでは、fgetcsvを利用しているため文字エンコード周りで不具合があるのでその点を考慮したものを目指しています。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/CSV_Iterator</code></pre>
<p><strong>メンテナー</strong></p>
<p>MugeSo <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/CSV_Iterator-0.1.0.tgz">0.1.0</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="code_hogenumber"><a href="https://github.com/openpear/Code_HogeNumber">Code_HogeNumber</a>
<small><a href="http://www.php.net/license/3_01.txt">PHP License 3.01</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>10進数の数値を任意(HOGE)進数に変換します。</p>
<br />
<br />
<p>用途は下記を想定しております。</p>
<p>・連番のユーザーIDをそのまま表示したくない</p>
<p>・AUTO_INCREMENT番号をURIなどで使用する</p>
<p>・ユーザーごとに連番でないユニークなIDがほしい</p>
<br />
<p>今後の予定</p>
<p>エラーチェック(現在は引数が10進数か確認していません)</p>
<br />
<br />
<p>使用例・詳細 http://wiki.dinoz.jp/PHP%B4%D8%CF%A2/function/Code_HogeNumber.php/</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Code_HogeNumber</code></pre>
<p><strong>メンテナー</strong></p>
<p>shuhei suzuki <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Code_HogeNumber-0.9.0.tgz">0.9.0</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="cyclicvalueproducer"><a href="https://github.com/openpear/CyclicValueProducer">CyclicValueProducer</a>
<small><a href="http://www.php.net/license/3_01.txt">PHP License 3.01</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>CyclicValueProducerは、指定された配列の値を繰り返し出力するようなSPLイテレータです。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/CyclicValueProducer</code></pre>
<p><strong>メンテナー</strong></p>
<p>hnw <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/CyclicValueProducer-1.0.0.tgz">1.0.0</a> <small>(stable)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="db_serializedb"><a href="https://github.com/openpear/DB_SerializeDB">DB_SerializeDB</a>
<small><a href="http://creativecommons.org/licenses/BSD/">New BSD Licence</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>serialize関数を利用した簡易データベースです。オブジェクトデータベースに似ているかもしれません。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/DB_SerializeDB</code></pre>
<p><strong>メンテナー</strong></p>
<p>TAKEZAWA TAKUMA <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/DB_SerializeDB-0.1.1.tgz">0.1.1</a> <small>(alpha)</small>, <a href="http://openpear.org/get/DB_SerializeDB-0.1.0.tgz">0.1.0</a> <small>(alpha)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="date_japanese_era"><a href="https://github.com/openpear/Date_Japanese_Era">Date_Japanese_Era</a>
<small><a href="http://www.opensource.org/licenses/bsd-license.php">New BSD License</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>和暦変換をするライブラリです。</p>
<p>Peal の Date::Japanese::Era をポーティングしたもの。</p>
<pre class="superpre">
<?php
$era = new Date_Japanese_Era(array(2009, 7, 11));
echo $era->name; // 平成
echo $era->gengou; // name のエイリアス
echo $era->year; // 21
echo $era->nameAscii; // heisei
$era = new Date_Japanese_Era(array('平成', 21));
echo $era->gregorianYear; // 2009</pre>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Date_Japanese_Era</code></pre>
<p><strong>メンテナー</strong></p>
<p>heavenshell <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Date_Japanese_Era-0.1.1.tgz">0.1.1</a> <small>(beta)</small>, <a href="http://openpear.org/get/Date_Japanese_Era-0.1.0.tgz">0.1.0</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="db_fixture"><a href="https://github.com/openpear/Db_Fixture">Db_Fixture</a>
<small><a href="http://openpear.org/repository/Db_Fixture/trunk/license.txt">New BSD License</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>Db_Fixture はデータベース絡みのテストを行う際に設定したファイルからテストデータを読み込み、データベースに投入します。</p>
<br />
<p>必要な環境</p>
<ul>
<li>データベースへの接続には PDO を使用します。</li>
<li>Fixture を記述するファイルには json 形式をサポートしています。</li>
<li>PHP 組み込みの json を使用します。</li>
</ul>
<br />
<p>テストコードを実行するにあたって</p>
<ul>
<li>テストコードは lime にて記述しているので、 lime が必要です。</li>
<li>データベースに、 test ユーザ(パスワードは testtest) を作成し、Create, Drop, Select, Insert Delete 権限を付与して下さい。</li>
<li>データベースに test という データベースを作成して下さい。</li>
<li>テストコードを実行すると、自動的に test1, test2 というテーブルを作成します。</li>
<li>テストが完了すると、自動的に test1, test2 というテーブルは削除されます。</li>
</ul>
<br />
<p>更新履歴</p>
<ul>
<li>2009/11/16 setPdo() を実装。Pdo オブジェクトを外部から注入可能にしました。</li>
</ul>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Db_Fixture</code></pre>
<p><strong>メンテナー</strong></p>
<p>heavenshell <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Db_Fixture-0.1.5.tgz">0.1.5</a> <small>(beta)</small>, <a href="http://openpear.org/get/Db_Fixture-0.1.3.tgz">0.1.3</a> <small>(beta)</small>, <a href="http://openpear.org/get/Db_Fixture-0.1.2.tgz">0.1.2</a> <small>(beta)</small>, <a href="http://openpear.org/get/Db_Fixture-0.1.1.tgz">0.1.1</a> <small>(beta)</small>, <a href="http://openpear.org/get/Db_Fixture-0.1.0.tgz">0.1.0</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="diggin"><a href="https://github.com/openpear/Diggin">Diggin</a>
<small><a href="http://diggin.musicrider.com/LICENSE">New BSD License</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p><a href="http://diggin.musicrider.com/">Diggin</a>はスクレイピング&スパイダリングライブラリ群です。</p>
<p><a href="http://diggin.googlecode.com/svn/standard/trunk/">最新のソース(Google Code)</a></p>
<p><a href="http://code.google.com/p/diggin/source/list">更新履歴</a></p>
<p><a href="http://diggin.musicrider.com/manual/diggin.index.html">リファレンス</a></p>
<p>現在のコンポーネントは以下のとおりです。</p>
<h4 id="hs_d1de160b1ca8b4d6e64891f928a1aae4_header_0">Diggin_Scraper</h4>
<p>Web::Scraperライクなスクレイピングを可能にします。</p>
<h4 id="hs_d1de160b1ca8b4d6e64891f928a1aae4_header_1">Diggin_Service_Wedata</h4>
<p>WedataのAPI操作</p>
<h4 id="hs_d1de160b1ca8b4d6e64891f928a1aae4_header_2">Diggin_Service_Tumblr</h4>
<p>TumblrのAPI操作</p>
<h4 id="hs_d1de160b1ca8b4d6e64891f928a1aae4_header_3">Diggin_Felica_Adapter_Sfcpeep</h4>
<p>sfcpeepの標準出力をPHPでの配列形式で扱います。</p>
<h4 id="hs_d1de160b1ca8b4d6e64891f928a1aae4_header_4">Diggin_CDDB_Application_CDex</h4>
<p>WindowdsリッピングソフトCDexでのCDDBファイル操作を行います。</p>
<br />
<p>デモやテストコードは</p>
<p>http://diggin.googlecode.com/svn/standard/trunk/</p>
<p>を参照ください。</p>
<br />
<p>Http通信を行うものについてはZend Framework(1.6以上)が必要です。</p>
<p>また、Diggin_Scraperを使うにはtidyモジュール・Net_Url2が動作することも望ましいです。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Diggin</code></pre>
<p><strong>依存</strong></p>
<dl class="dependencies">
<dt>openpear.org</dt>
<dd>
Diggin_Scraper_Adapter_Htmlscraping <dd>
</dl>
<p><strong>メンテナー</strong></p>
<p>させざき <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Diggin-0.7.0.tgz">0.7.0</a> <small>(beta)</small>, <a href="http://openpear.org/get/Diggin-0.6.11.tgz">0.6.11</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.10.tgz">0.6.10</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.9.tgz">0.6.9</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.8.tgz">0.6.8</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.7.tgz">0.6.7</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.6.tgz">0.6.6</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.5.tgz">0.6.5</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.4.tgz">0.6.4</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.3.tgz">0.6.3</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.2.tgz">0.6.2</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.1.tgz">0.6.1</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Diggin-0.6.0.tgz">0.6.0</a> <small>(alpha)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="diggin_http_response_charactorencoding"><a href="https://github.com/openpear/Diggin_Http_Response_CharactorEncoding">Diggin_Http_Response_CharactorEncoding</a>
<small><a href="http://www.gnu.org/licenses/lgpl.html">LGPL</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>HttpレスポンスからUTF-8へ自動変換を行うのを目的としたものです。</p>
<br />
<p>エンコードの取得はHttpレスポンスヘッダ、metaタグ、(mbstringが利用可能な場合)レスポンスボディの順に行います。</p>
<p>各レスポンスインスタンスから、getBodyされたときにUTF-8に自動変換するためのラッパーを用意しています。(現在はZend_Http_Responseのみ)</p>
<p>*HTMLScraping Classをベースにしております。</p>
<br />
<p>参考コード:</p>
<pre class="superpre">
$client = new Zend_Http_Client($url);
$response = $client->request();
$wrapper = Diggin_Http_Response_CharactorEncoding::createWrapper($response);
var_dump($wrapper instanceof Zend_Http_Response); //true
var_dump($wrapper->getBody()); //UTF-8</pre>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Diggin_Http_Response_CharactorEncoding</code></pre>
<p><strong>メンテナー</strong></p>
<p>させざき <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Diggin_Http_Response_CharactorEncoding-0.1.0.tgz">0.1.0</a> <small>(stable)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="diggin_http_response_charset"><a href="https://github.com/openpear/Diggin_Http_Response_Charset">Diggin_Http_Response_Charset</a>
<small><a href="http://www.gnu.org/licenses/lgpl.html">LGPL</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>強欲にヘッダーやメタタグのContent-Typeや文字列から文字コードを推測し、レスポンスボディ(HTML)をUTF-8にエンコーディングします。</p>
<p>説明:</p>
<p>http://d.hatena.ne.jp/sasezaki/20100627/p2</p>
<p>旧 Diggin_Http_Response_CharactorEncoding</p>
<p>の強化版です。LGPL</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Diggin_Http_Response_Charset</code></pre>
<p><strong>メンテナー</strong></p>
<p>させざき <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Diggin_Http_Response_Charset-0.3.3.tgz">0.3.3</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Http_Response_Charset-0.3.2.tgz">0.3.2</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Http_Response_Charset-0.3.1.tgz">0.3.1</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Http_Response_Charset-0.3.0.tgz">0.3.0</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Http_Response_Charset-0.2.0.tgz">0.2.0</a> <small>(beta)</small>, <a href="http://openpear.org/get/Diggin_Http_Response_Charset-0.1.1.tgz">0.1.1</a> <small>(beta)</small>, <a href="http://openpear.org/get/Diggin_Http_Response_Charset-0.1.0.tgz">0.1.0</a> <small>(beta)</small>, <a href="http://openpear.org/get/Diggin_Http_Response_Charset-0.0.3.tgz">0.0.3</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Http_Response_Charset-0.0.1.tgz">0.0.1</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="diggin_robotrules"><a href="https://github.com/openpear/Diggin_RobotRules">Diggin_RobotRules</a>
<small><a href="http://openpear.org/license">PHP License 3.01</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>A PHP parser & handler for Robots Exclusion Protocol (robots.txt and more..) require PHP 5.3 or over.</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Diggin_RobotRules</code></pre>
<p><strong>メンテナー</strong></p>
<p>させざき <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Diggin_RobotRules-0.0.3.tgz">0.0.3</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_RobotRules-0.0.2.tgz">0.0.2</a> <small>(beta)</small>, <a href="http://openpear.org/get/Diggin_RobotRules-0.0.1.tgz">0.0.1</a> <small>(stable)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="diggin_scraper_adapter_htmlscraping"><a href="https://github.com/openpear/Diggin_Scraper_Adapter_Htmlscraping">Diggin_Scraper_Adapter_Htmlscraping</a>
<small><a href="http://diggin.musicrider.com/LICENSE">LGPL</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>Digginライブラリ(<a href="#hs_c7cde9699e4c9f416d94cf7253d79bff_footnote_1" id="hs_c7cde9699e4c9f416d94cf7253d79bff_footnotelink_1" title="http://diggin.musicrider.com/">*1</a>)のスクレイパーでのアダプターの一つです。</p>
<p>ライセンスの関係上、HTMLScrapingライブラリ(<a href="#hs_c7cde9699e4c9f416d94cf7253d79bff_footnote_2" id="hs_c7cde9699e4c9f416d94cf7253d79bff_footnotelink_2" title="http://www.rcdtokyo.com/etc/htmlscraping/">*2</a>))から改変したものをこのパッケージにてまとめています。</p>
<p>Diggin_Http_Response_Charsetに依存します。</p>
</div>
<div class="footnote">
<p id="hs_c7cde9699e4c9f416d94cf7253d79bff_footnote_1"><a href="#hs_c7cde9699e4c9f416d94cf7253d79bff_footnotelink_1">*1</a>: http://diggin.musicrider.com/</p>
<p id="hs_c7cde9699e4c9f416d94cf7253d79bff_footnote_2"><a href="#hs_c7cde9699e4c9f416d94cf7253d79bff_footnotelink_2">*2</a>: http://www.rcdtokyo.com/etc/htmlscraping/</p>
</div></p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Diggin_Scraper_Adapter_Htmlscraping</code></pre>
<p><strong>依存</strong></p>
<dl class="dependencies">
<dt>openpear.org</dt>
<dd>
Diggin_Http_Response_Charset <dd>
</dl>
<p><strong>メンテナー</strong></p>
<p>させざき <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.4.8.tgz">0.4.8</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.4.7.tgz">0.4.7</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.4.6.tgz">0.4.6</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.4.5.tgz">0.4.5</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.4.4.tgz">0.4.4</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.4.3.tgz">0.4.3</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.4.2.tgz">0.4.2</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.4.1.tgz">0.4.1</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.4.0.tgz">0.4.0</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.3.4.tgz">0.3.4</a> <small>(stable)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.3.3.tgz">0.3.3</a> <small>(beta)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.3.2.tgz">0.3.2</a> <small>(beta)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.3.1.tgz">0.3.1</a> <small>(beta)</small>, <a href="http://openpear.org/get/Diggin_Scraper_Adapter_Htmlscraping-0.3.0.tgz">0.3.0</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="ether_suite"><a href="https://github.com/openpear/Ether_Suite">Ether_Suite</a>
<small><a href="http://creativecommons.org/licenses/BSD/">BSD Licence</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>Developer suite for Ethna</p>
<br />
<dl>
<dt>dependency</dt>
<dd>Ethna (pear.ethna.jp)</dd>
<dt>requires</dt>
<dd>JQuery, <a href="http://plugins.jquery.com/project/cookie">JQuery cookie Plugin</a></dd>
</dl>
<p>load JQuery example:</p>
<pre class="superpre">
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.2");
</script>
<script type="text/javascript" src="js/jquery.cookie.js"></script></pre>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Ether_Suite</code></pre>
<p><strong>依存</strong></p>
<dl class="dependencies">
<dt>pear.ethna.jp</dt>
<dd>
Ethna <dd>
</dl>
<p><strong>メンテナー</strong></p>
<p>Sotaro KARASAWA <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Ether_Suite-0.1.0.tgz">0.1.0</a> <small>(alpha)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="ethna_plugin_debugtoolbar"><a href="https://github.com/openpear/Ethna_Plugin_Debugtoolbar">Ethna_Plugin_Debugtoolbar</a>
<small><a href="http://creativecommons.org/licenses/BSD/">New BSD Licence</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>Ethna Debugtoolbar Plugin</p>
<br />
<p>使い方などは以下参照。</p>
<ul>
<li><a href="http://d.hatena.ne.jp/sotarok/20090703/ethna_plugin_debugtoolbar_0_9_0">Ethna_Plugin_Debugtoolbar 0.9.0 をリリース</a></li>
</ul>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Ethna_Plugin_Debugtoolbar</code></pre>
<p><strong>メンテナー</strong></p>
<p>Sotaro KARASAWA <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Ethna_Plugin_Debugtoolbar-0.9.1.tgz">0.9.1</a> <small>(stable)</small>, <a href="http://openpear.org/get/Ethna_Plugin_Debugtoolbar-0.9.0.tgz">0.9.0</a> <small>(stable)</small>, <a href="http://openpear.org/get/Ethna_Plugin_Debugtoolbar-0.1.1.tgz">0.1.1</a> <small>(alpha)</small>, <a href="http://openpear.org/get/Ethna_Plugin_Debugtoolbar-0.1.0.tgz">0.1.0</a> <small>(alpha)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="ethna_plugin_htmlemoji"><a href="https://github.com/openpear/Ethna_Plugin_HTMLEmoji">Ethna_Plugin_HTMLEmoji</a>
<small><a href="http://openpear.org/license">PHP License 3.01</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>HTML_Emojiを利用するEthnaプラグインです。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Ethna_Plugin_HTMLEmoji</code></pre>
<p><strong>メンテナー</strong></p>
<p>okonomi <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Ethna_Plugin_HTMLEmoji-0.1.1.tgz">0.1.1</a> <small>(beta)</small>, <a href="http://openpear.org/get/Ethna_Plugin_HTMLEmoji-0.1.0.tgz">0.1.0</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="ethna_renderer_runemaster"><a href="https://github.com/openpear/Ethna_Renderer_RuneMaster">Ethna_Renderer_RuneMaster</a>
<small><a href="http://creativecommons.org/licenses/BSD/">New BSD Licence</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>Ethnaで<a href="http://hatotech.org/runemaster/">RuneMaster</a>テンプレートエンジンを使用するためのプラグインです。</p>
<p>RuneMaster自体は同梱されていないので上記サイトからダウンロードしてください。</p>
<h4 id="hs_0fbc4e4b389735a31eab76cfd1126f29_header_0">インストール方法</h4>
<ul>
<li>RuneMaster本体をEthnaプロジェクトのlib以下に入れます。(lib/Rune/Master.phpという感じ)</li>
<li>[プロジェクト名]_Controller.phpのrequire_onceが沢山あるところに以下を追加してください</li>
</ul>
<pre class="superpre">
require_once 'Rune/Master.php';
require_once ETHNA_BASE.'/class/Renderer/Ethna_Renderer_RuneMaster.php';</pre>
<ul>
<li>テンプレートをRuneMasterのフォーマットで書いてください。</li>
</ul>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/Ethna_Renderer_RuneMaster</code></pre>
<p><strong>メンテナー</strong></p>
<p>nazo <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/Ethna_Renderer_RuneMaster-0.1.1.tgz">0.1.1</a> <small>(beta)</small>, <a href="http://openpear.org/get/Ethna_Renderer_RuneMaster-0.1.0.tgz">0.1.0</a> <small>(beta)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="file_hyperestraier"><a href="https://github.com/openpear/File_HyperEstraier">File_HyperEstraier</a>
<small><a href="http://www.php.net/license/3_01.txt">PHP Licence</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p><a href="http://hyperestraier.sourceforge.net/:HyperEstraier">http://hyperestraier.sourceforge.net/:HyperEstraier</a> で使われるファイルフォーマットをパースします。</p>
<p>現在サポートされているファイルフォーマットは次の通り:</p>
<ul>
<li> 文書ドラフト</li>
<li> estmaster から得られる検索結果</li>
</ul>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/File_HyperEstraier</code></pre>
<p><strong>メンテナー</strong></p>
<p>Kawai <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/File_HyperEstraier-0.1.0.tgz">0.1.0</a> <small>(alpha)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="gd_tab_guitar"><a href="https://github.com/openpear/GD_Tab_Guitar">GD_Tab_Guitar</a>
<small><a href="http://creativecommons.org/licenses/BSD/">New BSD Licence</a></small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>ギターのタブ譜を画像で出力するライブラリです。</p>
<p>画像生成にはGDライブラリを利用しています。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/GD_Tab_Guitar</code></pre>
<p><strong>メンテナー</strong></p>
<p>cloned <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/GD_Tab_Guitar-0.1.0.tgz">0.1.0</a> <small>(stable)</small></p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" id="html_css_mobile"><a href="https://github.com/openpear/HTML_CSS_Mobile">HTML_CSS_Mobile</a>
<small>MIT License</small></h3>
</div>
<div class="panel-body">
<p><div class="section">
<p>このライブラリは、</p>
<ul>
<li> <link>タグからの外部CSS</li>
<li> <script></script>タグ内記述CSS</li>
<li> スクリプト上からの外部ファイル</li>
</ul>
<p>とかとかCSSファイル/記述を展開し、inlineのstyle要素に埋め込んでくれます。</p>
<p>諸事情からものすごくバージョンが上がってstableになりました。</p>
<p>これからどんどんupして行って、ケータイのHTML/CSSのバッドノウハウを吸収できる緩衝材になればいいなと思って作ってます。</p>
</div>
</p>
<p><strong>インストール</strong></p>
<pre><code>pear install openpear/HTML_CSS_Mobile</code></pre>
<p><strong>依存</strong></p>
<dl class="dependencies">
<dt>pear.php.net</dt>
<dd>
HTML_CSS <dd>
<dt>openpear.org</dt>
<dd>
HTML_CSS_Selector2XPath <dd>
</dl>
<p><strong>メンテナー</strong></p>
<p>Sotaro KARASAWA <small>(as lead)</small>, yudoufu (Daichi Kamemoto) <small>(as lead)</small></p>
<p><strong>リリース</strong></p>
<p><a href="http://openpear.org/get/HTML_CSS_Mobile-1.8.0.tgz">1.8.0</a> <small>(stable)</small>, <a href="http://openpear.org/get/HTML_CSS_Mobile-1.7.0.tgz">1.7.0</a> <small>(beta)</small>, <a href="http://openpear.org/get/HTML_CSS_Mobile-0.1.7.tgz">0.1.7</a> <small>(beta)</small>, <a href="http://openpear.org/get/HTML_CSS_Mobile-0.1.6.tgz">0.1.6</a> <small>(beta)</small>, <a href="http://openpear.org/get/HTML_CSS_Mobile-0.1.5.tgz">0.1.5</a> <small>(beta)</small></p>
</div>
</div>