ここは練習ページです Edit


ご自由に練習してください。
   0
   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
#spanend
#spandel
<?php
#spanend
#spandel
// PukiWiki Plus! - Yet another WikiWikiWeb clone
#spanend
#spandel
// $Id: pukiwiki.ini.ja.php,v 1.113.12ja 2005/03/13 17:29:01 miko Exp $
#spanend
#spandel
//
#spanend
#spandel
// PukiWiki Plus! 設定ファイル
#spanend
>&spanadd;枠のサンプル&spanend;
 
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// ホームページのタイトル(修正してください)(※)
#spanend
#spandel
// * RSS に出力するチャンネル名を兼ねます。
#spanend
#spandel
$page_title = 'PukiWiki Plus!';
#spanend
#spanadd
|枠のサンプル|
#spanend
 
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 管理者設定
#spanend
#spandel
 
#spanend
#spandel
// 管理者の名前(修正してください)(※)
#spanend
#spandel
$modifier = 'anonymous';
#spanend
#spandel
 
#spanend
#spandel
// 管理者のホームページ(修正してください)(※)
#spanend
#spandel
$modifierlink = 'http://pukiwiki.example.com/';
#spanend
#spandel
 
#spanend
#spandel
// 管理者のパスワード(必ず変更してください)(※)
#spanend
#spandel
$adminpass = '1a1dc91c907325c69271ddf0c944bc72'; // md5('pass')
#spanend
#spandel
 
#spanend
#spandel
// 上記の文字列は、'pass'をMD5により暗号化したものです。
#spanend
#spandel
// MD5ハッシュは、Linuxやcygwinであれば、以下の様にして計算させる事ができます。
#spanend
#spandel
// ('-n' オプションを忘れずに!)
#spanend
#spandel
//     $ echo -n 'pass' | md5sum
#spanend
#spandel
//
#spanend
#spandel
// お勧めできませんが、PukiWikiのmd5コマンドでも算出が可能です。
#spanend
#spandel
//
#spanend
#spandel
// http://<設置した場所>/pukiwiki.php?md5=pass
#spanend
#spandel
//
#spanend
#spandel
// このURLにアクセスすることで、算出結果が表示されます。
#spanend
#spandel
// そのかわり、あなたがタイプしたパスワードはネットワークを流れ、
#spanend
#spandel
// 誰にでも覗き見ができ、Webサーバーのログにも残ってしまう、
#spanend
#spandel
// といった様々なリスクを負う可能性があります。あなたが使っている
#spanend
#spandel
// コンピュータ、サーバーまでのネットワーク、サーバーの
#spanend
#spandel
// どこかが信頼できないのであれば、この方法は使わないで下さい。
#spanend
#spandel
 
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 機能設定
#spanend
#spandel
 
#spanend
#spandel
// PKWK_OPTIMISE - 最適化(厳密なチェックや警告をおこなわない)
#spanend
#spandel
//   これは開発者のみ使用します.
#spanend
#spandel
//   安定バージョンならば '1', 開発バージョンならば '0' を設定.
#spanend
#spandel
if (! defined('PKWK_OPTIMISE'))
#spanend
#spandel
    define('PKWK_OPTIMISE', 0);
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// セキュリティ設定
#spanend
#spandel
 
#spanend
#spandel
// PKWK_READONLY - 編集を禁止する
#spanend
#spandel
//   注意:カウンタ関係の機能は動作します(counter, attach, count, 他)
#spanend
#spandel
if (! defined('PKWK_READONLY'))
#spanend
#spandel
    define('PKWK_READONLY', 0); // (0:無効,1:有効)
#spanend
#spandel
 
#spanend
#spandel
// PKWK_SAFE_MODE - 利用されていない機能を禁止する
#spanend
#spandel
//   注意:設定が施されている箇所は潜在的な問題を抱えています。
#spanend
#spandel
if (! defined('PKWK_SAFE_MODE'))
#spanend
#spandel
    define('PKWK_SAFE_MODE', 0); // (0:無効,1:有効)
#spanend
#spandel
 
#spanend
#spandel
// PKWK_QUERY_STRING_MAX
#spanend
#spandel
//   GET メソッドの最大長を決めます。これは、不必要なURL長の不正アクセスからシステムを守るためです。
#spanend
#spandel
//   注意: (ページ名の文字数 + 添付ファイル名の文字数) <= PKWK_QUERY_STRING_MAX となるようにしてください。
#spanend
#spandel
define('PKWK_QUERY_STRING_MAX', 640); // 単位は Bytes です。0でOFFになります。
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 言語および文字コードの設定
#spanend
#spandel
 
#spanend
#spandel
// LANG - Wikiコンテンツ内の言語 ('en', 'ja', or ...)
#spanend
#spandel
define('LANG', 'ja');
#spanend
#spandel
 
#spanend
#spandel
// UI_LANG - ボタンやメニューなどの言語
#spanend
#spandel
define('UI_LANG', LANG); // 'en' は国際化されたWikiサイト向けです。
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// ディレクトリの設定(1) (最後に '/' が必要, 権限は '777')
#spanend
#spandel
 
#spanend
#spandel
define('DATA_DIR',      DATA_HOME . 'wiki/'     ); // 最新のWikiテキスト
#spanend
#spandel
define('DIFF_DIR',      DATA_HOME . 'diff/'     ); // 最新の差分
#spanend
#spandel
define('BACKUP_DIR',    DATA_HOME . 'backup/'   ); // バックアップ
#spanend
#spandel
define('CACHE_DIR',     DATA_HOME . 'cache/'    ); // キャッシュ
#spanend
#spandel
define('UPLOAD_DIR',    DATA_HOME . 'attach/'   ); // 添付ファイルとそのログ
#spanend
#spandel
define('COUNTER_DIR',   DATA_HOME . 'counter/'  ); // カウンターファイル
#spanend
#spandel
define('TRACKBACK_DIR', DATA_HOME . 'trackback/'); // トラックバックのログ
#spanend
#spandel
define('PLUGIN_DIR',    DATA_HOME . 'plugin/'   ); // プラグイン
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// ディレクトリの設定(2) (最後に '/' が必要)
#spanend
#spandel
 
#spanend
#spandel
// スキン/スタイルシートファイル格納ディレクトリ(URL)
#spanend
#spandel
define('SKIN_DIR', 'skin/');
#spanend
#spandel
//  このディレクトリ以下のスキンファイル(*.php) は
#spanend
#spandel
//  PukiWiki本体側(DATA_HOME/SKIN_DIR) に必要ですが、
#spanend
#spandel
//  CSSファイル(*.css) および JavaScriptファイル( *.js) は
#spanend
#spandel
//  Webブラウザから見える場所(./SKIN_DIR) に配置して下さい。
#spanend
#spandel
 
#spanend
#spandel
// 画像ファイル格納ディレクトリ(URL)
#spanend
#spandel
define('IMAGE_DIR', 'image/');
#spanend
#spandel
//  このディレクトリ以下の全てのファイルは
#spanend
#spandel
//  Webブラウザから見える場所(./IMAGE_DIR) に配置して下さい。
#spanend
#spandel
 
#spanend
#spandel
// for Fancy URL
#spanend
#spandel
define('ROOT_URI', '');
#spanend
#spandel
define('SKIN_URI', ROOT_URI . SKIN_DIR);
#spanend
#spandel
define('IMAGE_URI', ROOT_URI . IMAGE_DIR);
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// ロケール時間の設定
#spanend
#spandel
 
#spanend
#spandel
switch (LANG) { // どれか1つを選択
#spanend
#spandel
case 'ja':
#spanend
#spandel
    define('ZONE', 'JST');
#spanend
#spandel
    define('ZONETIME', 9 * 3600); // JST = GMT + 9
#spanend
#spandel
    break;
#spanend
#spandel
default  :
#spanend
#spandel
    define('ZONE', 'GMT');
#spanend
#spandel
    define('ZONETIME', 0);
#spanend
#spandel
    break;
#spanend
#spandel
}
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// スクリプト名の設定(とくに設定しなくても問題なし)
#spanend
#spandel
//$script = 'http://example.com/pukiwiki/';
#spanend
#spandel
 
#spanend
#spandel
// $script からファイル名をカットする (URLを短くする)
#spanend
#spandel
// Webサーバー側の設定で、ディレクトリを指定したときに
#spanend
#spandel
// 表示するデフォルトのファイル名の候補に、ここで指定する
#spanend
#spandel
// ファイル名が含まれている必要があります。
#spanend
#spandel
//$script_directory_index = 'index.php';
#spanend
#spandel
 
#spanend
#spandel
// デフォルトのページ名
#spanend
#spandel
$defaultpage  = 'FrontPage';     // デフォルトページ (ページを指定しないとき)
#spanend
#spandel
$whatsnew     = 'RecentChanges'; // 更新履歴
#spanend
#spandel
$whatsdeleted = 'RecentDeleted'; // 削除履歴
#spanend
#spandel
$interwiki    = 'InterWikiName'; // InterWikiName の一覧を書くページ
#spanend
#spandel
$aliaspage    = 'AutoAliasName'; // AutoAliasName の一覧を書くページ(1.4.5u2)
#spanend
#spandel
$glossary     = 'Glossary';      // Glossary の一覧を書くページ(1.4.5u2)
#spanend
#spandel
$menubar      = 'MenuBar';       // 左メニューとして表示させる内容を書くページ
#spanend
#spandel
$sidebar      = 'SideBar';       // 右メニューとして表示させる内容を書くページ
#spanend
#spandel
$headarea     = ':Header';       // ヘッダとして表示させる内容を書くページ
#spanend
#spandel
$footarea     = ':Footer';       // フッタとして表示させる内容を書くページ
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// DOCTYPE設定
#spanend
#spandel
 
#spanend
#spandel
// Webブラウザのバグや、Java applet などが Strict でない DOCTYPE を要求することがあります。
#spanend
#spandel
// いくつかのプラグインは自動的に値を設定します (例:paint)
#spanend
#spandel
 
#spanend
#spandel
//$pkwk_dtd = PKWK_DTD_XHTML_1_1; // Default
#spanend
#spandel
//$pkwk_dtd = PKWK_DTD_XHTML_1_0_STRICT;
#spanend
#spandel
//$pkwk_dtd = PKWK_DTD_XHTML_1_0_TRANSITIONAL;
#spanend
#spandel
//$pkwk_dtd = PKWK_DTD_HTML_4_01_STRICT;
#spanend
#spandel
//$pkwk_dtd = PKWK_DTD_HTML_4_01_TRANSITIONAL;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
 
#spanend
#spandel
// JavaScriptを使用する (0:無効,1:有効)
#spanend
#spandel
define('PKWK_ALLOW_JAVASCRIPT', 1);
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// トラックバックの設定
#spanend
#spandel
 
#spanend
#spandel
// トラックバック機能を使用する (0:無効,1:有効)
#spanend
#spandel
$trackback = 1;
#spanend
#spandel
 
#spanend
#spandel
// 別ウィンドウでトラックバックを表示する (0:無効,1:有効)
#spanend
#spandel
$trackback_javascript = 0;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// リファラ(リンク逆探知)機能を使用する (0:無効,1:有効)
#spanend
#spandel
$referer = 1;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// WikiNameを *無効に* する (1 = WikiName無効)
#spanend
#spandel
$nowikiname = 1;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// オートリンクの設定
#spanend
#spandel
 
#spanend
#spandel
// オートリンク対象になるキーワードの最短バイト数を指定 (0 = オートリンク無効)
#spanend
#spandel
// Pukiwiki Plus! は "5"(英数字5文字/漢字3文字以上)を推奨します。
#spanend
#spandel
$autolink = 5;
#spanend
#spandel
 
#spanend
#spandel
// オートエイリアス対象になるキーワードの最短文字数を設定 (0 = オートエイリアス無効)
#spanend
#spandel
$autoalias = 2;
#spanend
#spandel
 
#spanend
#spandel
// オートエイリアス対象になるキーワードの最大数
#spanend
#spandel
$autoalias_max_words = 50;
#spanend
#spandel
 
#spanend
#spandel
// オートグロッサリ対象になるキーワードの最短文字数を設定 (0 = オートグロッサリ無効)
#spanend
#spandel
$autoglossary = 2;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 凍結機能を有効にする (0:無効,1:有効)
#spanend
#spandel
$function_freeze = 1;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 「タイムスタンプを変更しない」機能の設定
#spanend
#spandel
// (1:表示する, 2:管理者パスワードで制限する, 0:表示しない)
#spanend
#spandel
$notimeupdate = 1;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// Page-reading 機能設定
#spanend
#spandel
// 漢字が含まれたページ名を、自動で読みの順に並べ替えて
#spanend
#spandel
// 正しく一覧表示したい場合に設定してください。
#spanend
#spandel
 
#spanend
#spandel
// ChaSen, KAKASI による、ページ名の読みの取得 (0:無効,1:有効)
#spanend
#spandel
$pagereading_enable = 0;
#spanend
#spandel
 
#spanend
#spandel
// 読みを取得するソフトウェアの選択
#spanend
#spandel
// ChaSen('chasen') or KAKASI('kakasi') or なし('none')
#spanend
#spandel
$pagereading_kanji2kana_converter = 'none';
#spanend
#spandel
 
#spanend
#spandel
// ChaSen/KAKASI との受け渡しに使う漢字コード
#spanend
#spandel
$pagereading_kanji2kana_encoding = 'EUC'; // UNIX系の基本コード
#spanend
#spandel
//$pagereading_kanji2kana_encoding = 'SJIS'; // Windows系の基本コード
#spanend
#spandel
 
#spanend
#spandel
// ChaSen の実行ファイル (各自の環境に合わせて設定)
#spanend
#spandel
$pagereading_chasen_path = '/usr/local/bin/chasen';
#spanend
#spandel
//$pagereading_chasen_path = 'c:?progra~1?chasen21?chasen.exe';
#spanend
#spandel
 
#spanend
#spandel
// KAKASI の実行ファイル (各自の環境に合わせて設定)
#spanend
#spandel
$pagereading_kakasi_path = '/usr/local/bin/kakasi';
#spanend
#spandel
//$pagereading_kakasi_path = 'c:?kakasi?bin?kakasi.exe';
#spanend
#spandel
 
#spanend
#spandel
// ページ名読みを格納したページの名前
#spanend
#spandel
$pagereading_config_page = ':config/PageReading';
#spanend
#spandel
 
#spanend
#spandel
// 読み仮名辞書(converter ='none' の場合)
#spanend
#spandel
$pagereading_config_dict = ':config/PageReading/dict';
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 認証ユーザの定義
#spanend
#spandel
$auth_users = array(
#spanend
#spandel
    'foo'    => md5('foo_passwd'),
#spanend
#spandel
    'bar'    => md5('bar_passwd'),
#spanend
#spandel
    'hoge'    => md5('hoge_passwd'),
#spanend
#spandel
);
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 認証方式の単位
#spanend
#spandel
 
#spanend
#spandel
// 'pagename' : ページ名で認証する
#spanend
#spandel
// 'contents' : ページ内容で認証する
#spanend
#spandel
$auth_method_type = 'contents';
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 閲覧認証 (0:不要 1:必要)
#spanend
#spandel
$read_auth = 0;
#spanend
#spandel
 
#spanend
#spandel
// 閲覧認証対象パターン定義 (正規表現)
#spanend
#spandel
$read_auth_pages = array(
#spanend
#spandel
);
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 編集認証 (0:不要 1:必要)
#spanend
#spandel
$edit_auth = 0;
#spanend
#spandel
 
#spanend
#spandel
// 編集認証対象パターン定義 (正規表現)
#spanend
#spandel
$edit_auth_pages = array(
#spanend
#spandel
);
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 検索認証
#spanend
#spandel
// 0: 閲覧が許可されていないページ内容も検索対象とする。
#spanend
#spandel
// 1: 検索時のログインユーザに許可されたページのみ検索対象とする。
#spanend
#spandel
$search_auth = 0;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// あいまい検索 (Plus!日本語EUC版のみの機能)
#spanend
#spandel
// 0: 無効
#spanend
#spandel
// 1: 有効
#spanend
#spandel
$search_fuzzy = 1;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// $whatsnew: 更新履歴を表示するときの最大件数
#spanend
#spandel
$maxshow = 60;
#spanend
#spandel
 
#spanend
#spandel
// $whatsdeleted: 削除履歴の最大件数 (0で記録しない)
#spanend
#spandel
$maxshow_deleted = 60;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 編集することのできないページの名前 (カンマで区切る)
#spanend
#spandel
$cantedit = array( $whatsnew, $whatsdeleted );
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// Last-Modified ヘッダを出力する
#spanend
#spandel
$lastmod = 0;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 日付フォーマット
#spanend
#spandel
$date_format = 'Y-m-d';
#spanend
#spandel
 
#spanend
#spandel
// 時刻フォーマット
#spanend
#spandel
$time_format = 'H:i:s';
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// RSS に出力するページ数
#spanend
#spandel
$rss_max = 15;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// バックアップの設定
#spanend
#spandel
 
#spanend
#spandel
// バックアップを行う
#spanend
#spandel
$do_backup = 1;
#spanend
#spandel
 
#spanend
#spandel
// ページを削除した際にバックアップもすべて削除する
#spanend
#spandel
$del_backup = 0;
#spanend
#spandel
 
#spanend
#spandel
// バックアップ間隔と世代数
#spanend
#spandel
$cycle  = 1;   // 直前の修正から何時間経過していたらバックアップするか (0で更新毎)
#spanend
#spandel
$maxage = 360; // 世代数
#spanend
#spandel
 
#spanend
#spandel
// 補足: $cycle x $maxage / 24 = データを失うために最低限必要な日数
#spanend
#spandel
//          1   x   360   / 24 = 15
#spanend
#spandel
 
#spanend
#spandel
// バックアップの世代を区切る文字列 (注意:変更しないでください)
#spanend
#spandel
define('PKWK_SPLITTER', '>>>>>>>>>>');
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// ページの更新時にバックグランドで実行するコマンド
#spanend
#spandel
$update_exec = '';
#spanend
#spandel
//$update_exec = '/usr/bin/mknmz --media-type=text/pukiwiki -O /var/lib/namazu/index/ -L ja -c -K /var/www/wiki/';
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// プロキシの設定(TrackBack Ping 等に使用)
#spanend
#spandel
 
#spanend
#spandel
// HTTPリクエストにプロキシサーバを使用する (1で使用)
#spanend
#spandel
$use_proxy = 0;
#spanend
#spandel
$proxy_host = 'proxy.example.com';
#spanend
#spandel
$proxy_port = 8080;
#spanend
#spandel
 
#spanend
#spandel
// プロキシに対して Basic 認証を行う (1で認証する)
#spanend
#spandel
$need_proxy_auth = 0;
#spanend
#spandel
$proxy_auth_user = 'username';
#spanend
#spandel
$proxy_auth_pass = 'password';
#spanend
#spandel
 
#spanend
#spandel
// プロキシサーバを使用しないホストのリスト
#spanend
#spandel
$no_proxy = array(
#spanend
#spandel
    'localhost',    // localhost
#spanend
#spandel
    '127.0.0.0/8',    // loopback
#spanend
#spandel
//    '10.0.0.0/8'    // private class A
#spanend
#spandel
//    '172.16.0.0/12'    // private class B
#spanend
#spandel
//    '192.168.0.0/16'    // private class C
#spanend
#spandel
//    'no-proxy.com',
#spanend
#spandel
);
#spanend
#spandel
 
#spanend
#spandel
////////////////////////////////////////////////
#spanend
#spandel
// メール送信の設定
#spanend
#spandel
 
#spanend
#spandel
// ページの更新時にメールを送信 (1で送信)
#spanend
#spandel
$notify = 0;
#spanend
#spandel
 
#spanend
#spandel
// 差分だけを送信 (1で差分だけ)
#spanend
#spandel
$notify_diff_only = 1;
#spanend
#spandel
 
#spanend
#spandel
// SMTPサーバ (Windows のみ, 通常は php.ini で指定)
#spanend
#spandel
$smtp_server = 'localhost';
#spanend
#spandel
 
#spanend
#spandel
$notify_to   = 'to@example.com';    // To:(宛先)
#spanend
#spandel
$notify_from = 'from@example.com';    // From:(差出人)
#spanend
#spandel
 
#spanend
#spandel
// Subject:(件名) $page は ページ名に置換されます。
#spanend
#spandel
$notify_subject = '[PukiWiki] $page';
#spanend
#spandel
 
#spanend
#spandel
// メールヘッダ
#spanend
#spandel
$notify_header = "From: $notify_from?r?n" .
#spanend
#spandel
    'X-Mailer: PukiWiki/' .  S_VERSION . ' PHP/' . phpversion();
#spanend
#spandel
 
#spanend
#spandel
// ここに該当するホストから書き込まれた場合にはメールを送らない
#spanend
#spandel
$notify_exclude = array(
#spanend
#spandel
//    '192.168.0.',
#spanend
#spandel
);
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// メール送信のセキュリティ設定
#spanend
#spandel
 
#spanend
#spandel
// メール送信前にPOPまたはAPOPによる認証を行う
#spanend
#spandel
$smtp_auth = 0;
#spanend
#spandel
 
#spanend
#spandel
$pop_server = 'localhost';
#spanend
#spandel
$pop_port   = 110;
#spanend
#spandel
$pop_userid = '';
#spanend
#spandel
$pop_passwd = '';
#spanend
#spandel
 
#spanend
#spandel
// 認証に APOP を利用するかどうか (※サーバ側の対応が必要)
#spanend
#spandel
//   未設定 = 自動 (可能であればAPOPを使用する)
#spanend
#spandel
//   1 = APOP固定  (必ずAPOPを使用する)
#spanend
#spandel
//   0 = POP固定   (必ずPOPを使用する)
#spanend
#spandel
// $pop_auth_use_apop = 1;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 無視リスト
#spanend
#spandel
 
#spanend
#spandel
// 一覧・更新一覧に含めないページ名 (正規表現)
#spanend
#spandel
$non_list = '^?:';
#spanend
#spandel
 
#spanend
#spandel
// $non_listを文字列検索の対象ページとするか
#spanend
#spandel
// 0にすると、上記ページ名が単語検索からも除外されます。
#spanend
#spandel
$search_non_list = 1;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// ページ名に従って自動で、雛形とするページの読み込み
#spanend
#spandel
 
#spanend
#spandel
$auto_template_func = 1;
#spanend
#spandel
$auto_template_rules = array(
#spanend
#spandel
    '((.+)?/([^?/]+))' => '?2/template'
#spanend
#spandel
);
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 見出し行に固有のアンカーを自動挿入する
#spanend
#spandel
$fixed_heading_anchor = 1;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// <pre>の行頭スペースをひとつ取り除く
#spanend
#spandel
$preformat_ltrim = 1;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 改行を反映する(改行を<br />に置換する)
#spanend
#spandel
$line_break = 0;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// Use date-time rules (See rules.ini.php)
#spanend
#spandel
$usedatetime = 1;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// 見出しごとの編集を可能にする 
#spanend
#spandel
//
#spanend
#spandel
// 見出し行の固有のアンカ自動挿入されているとき
#spanend
#spandel
// のみ有効です
#spanend
#spandel
$fixed_heading_edited = 0;
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// ページを任意のフレームに開く時に使う設定
#spanend
#spandel
$use_open_uri_in_new_window  = 1;
#spanend
#spandel
 
#spanend
#spandel
// 同一サーバーとしてみなすホストのURI
#spanend
#spandel
$open_uri_in_new_window_servername = array(
#spanend
 &spandel;     "http://localhost/",&spanend;
 &spandel;     "http://localhost.localdomain/",&spanend;
#spandel
);
#spanend
#spandel
// URIの種類によって開く動作を設定。
#spanend
#spandel
// "_blank"で別窓へ表示、falseを指定すると無効
#spanend
#spandel
$open_uri_in_new_window_opis  = "_blank";     // pukiwikiの外で同一サーバー内
#spanend
#spandel
$open_uri_in_new_window_opisi = false;        // pukiwikiの外で同一サーバー内(InterWikiLink)
#spanend
#spandel
$open_uri_in_new_window_opos  = "_blank";     // pukiwikiの外で外部サーバー
#spanend
#spandel
$open_uri_in_new_window_oposi = "_blank";     // pukiwikiの外で外部サーバー(InterWikiLink)
#spanend
#spandel
// (注意:あえて拡張しやすいようにしていますが、"_blank"以外は指定しないでください)
#spanend
#spandel
 
#spanend
#spandel
/////////////////////////////////////////////////
#spanend
#spandel
// User-Agent 設定
#spanend
#spandel
//
#spanend
#spandel
// リッチクライアントを前提としたサイトを構築する
#spanend
#spandel
// ために、携帯電話などに意図的に非対応としたい場合、
#spanend
#spandel
// 最後のデフォルト設定以外の行を全て削除あるいは
#spanend
#spandel
// コメントアウトして下さい。
#spanend
#spandel
//
#spanend
#spandel
// デザインやスタイルを簡素なkeitaiプロファイルに
#spanend
#spandel
// 統一したい時は、デフォルト設定以外の行を全て削除
#spanend
#spandel
// あるいはコメントアウトした後に、デフォルト設定を
#spanend
#spandel
// 'profile'=>'keitai' と修正して下さい。
#spanend
#spandel
//
#spanend
#spandel
 
#spanend
#spandel
$agents = array(
#spanend
#spandel
// pattern: A regular-expression that matches device(browser)'s name and version
#spanend
#spandel
// profile: A group of browsers
#spanend
#spandel
 
#spanend
 &spandel;   // Embedded browsers (Rich-clients for PukiWiki)
#spandel
 
#spanend
#spandel
    // Windows CE (Microsoft(R) Internet Explorer 5.5 for Windows(R) CE)
#spanend
#spandel
    // Sample: "Mozilla/4.0 (compatible; MSIE 5.5; Windows CE; sigmarion3)" (sigmarion, Hand-held PC)
#spanend
#spandel
    array('pattern'=>'#?b(?:MSIE [5-9]).*?b(Windows CE)?b#', 'profile'=>'default'),
#spanend
#spandel
 
#spanend
#spandel
    // ACCESS "NetFront" / "Compact NetFront" and thier OEM, expects to be "Mozilla/4.0"
#spanend
#spandel
    // Sample: "Mozilla/4.0 (PS2; PlayStation BB Navigator 1.0) NetFront/3.0" (PlayStation BB Navigator, for SONY PlayStation 2)
#spanend
#spandel
    // Sample: "Mozilla/4.0 (PDA; PalmOS/sony/model crdb/Revision:1.1.19) NetFront/3.0" (SONY Clie series)
#spanend
#spandel
    // Sample: "Mozilla/4.0 (PDA; SL-A300/1.0,Embedix/Qtopia/1.1.0) NetFront/3.0" (SHARP Zaurus)
#spanend
#spandel
    array('pattern'=>'#^(?:Mozilla/4).*?b(NetFront)/([0-9?.]+)#',    'profile'=>'default'),
#spanend
#spandel
 
#spanend
 &spandel;   // Embedded browsers (Non-rich)
#spandel
 
#spanend
#spandel
    // Windows CE (the others)
#spanend
#spandel
    // Sample: "Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; 240x320 )" (GFORT, NTT DoCoMo)
#spanend
#spandel
    array('pattern'=>'#?b(Windows CE)?b#', 'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
#spandel
    // ACCESS "NetFront" / "Compact NetFront" and thier OEM
#spanend
#spandel
    // Sample: "Mozilla/3.0 (AveFront/2.6)" ("SUNTAC OnlineStation", USB-Modem for PlayStation 2)
#spanend
#spandel
    // Sample: "Mozilla/3.0(DDIPOCKET;JRC/AH-J3001V,AH-J3002V/1.0/0100/c50)CNF/2.0" (DDI Pocket: AirH" Phone by JRC)
#spanend
#spandel
    array('pattern'=>'#?b(NetFront)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
    array('pattern'=>'#?b(CNF)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
    array('pattern'=>'#?b(AveFront)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
    array('pattern'=>'#?b(AVE-Front)/([0-9?.]+)#',    'profile'=>'keitai'), // The same?
#spanend
#spandel
 
#spanend
#spandel
    // NTT-DoCoMo, i-mode (embeded Compact NetFront) and FOMA (embedded NetFront) phones
#spanend
#spandel
    // Sample: "DoCoMo/1.0/F501i", "DoCoMo/1.0/N504i/c10/TB/serXXXX" // c以降は可変
#spanend
#spandel
    // Sample: "DoCoMo/2.0 MST_v_SH2101V(c100;TB;W22H12;serXXXX;iccxxxx)" // ()の中は可変
#spanend
#spandel
    array('pattern'=>'#^(DoCoMo)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
#spandel
    // Vodafone's embedded browser
#spanend
#spandel
    // Sample: "J-PHONE/2.0/J-T03"    // 2.0は"ブラウザの"バージョン
#spanend
#spandel
    // Sample: "J-PHONE/4.0/J-SH51/SNxxxx SH/0001a Profile/MIDP-1.0 Configuration/CLDC-1.0 Ext-Profile/JSCL-1.1.0"
#spanend
#spandel
    array('pattern'=>'#^(J-PHONE)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
#spandel
    // Openwave(R) Mobile Browser (EZweb, WAP phone, etc)
#spanend
#spandel
    // Sample: "OPWV-SDK/62K UP.Browser/6.2.0.5.136 (GUI) MMP/2.0"
#spanend
#spandel
    array('pattern'=>'#?b(UP?.Browser)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
#spandel
    // Opera, dressing up as other embedded browsers
#spanend
#spandel
    // Sample: "Mozilla/3.0(DDIPOCKET;KYOCERA/AH-K3001V/1.4.1.67.000000/0.1/C100) Opera 7.0" (Like CNF at 'keitai'-mode)
#spanend
#spandel
    array('pattern'=>'#?bDDIPOCKET?b.+?b(Opera) ([0-9?.]+)?b#',    'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
#spandel
    // Planetweb http://www.planetweb.com/
#spanend
#spandel
    // Sample: "Mozilla/3.0 (Planetweb/v1.07 Build 141; SPS JP)" ("EGBROWSER", Web browser for PlayStation 2)
#spanend
#spandel
    array('pattern'=>'#?b(Planetweb)/v([0-9?.]+)#', 'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
#spandel
    // DreamPassport, Web browser for SEGA DreamCast
#spanend
#spandel
    // Sample: "Mozilla/3.0 (DreamPassport/3.0)"
#spanend
#spandel
    array('pattern'=>'#?b(DreamPassport)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
#spandel
    // Palm "Web Pro" http://www.palmone.com/us/support/accessories/webpro/
#spanend
#spandel
    // Sample: "Mozilla/4.76 [en] (PalmOS; U; WebPro)"
#spanend
#spandel
    array('pattern'=>'#?b(WebPro)?b#',    'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
#spandel
    // ilinx "Palmscape" / "Xiino" http://www.ilinx.co.jp/
#spanend
#spandel
    // Sample: "Xiino/2.1SJ [ja] (v. 4.1; 153x130; c16/d)"
#spanend
#spandel
    array('pattern'=>'#^(Palmscape)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
    array('pattern'=>'#^(Xiino)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
#spandel
    // SHARP PDA Browser (SHARP Zaurus)
#spanend
#spandel
    // Sample: "sharp pda browser/6.1[ja](MI-E1/1.0) "
#spanend
#spandel
    array('pattern'=>'#^(sharp [a-z]+ browser)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
#spandel
    // WebTV
#spanend
#spandel
    array('pattern'=>'#^(WebTV)/([0-9?.]+)#',    'profile'=>'keitai'),
#spanend
#spandel
 
#spanend
 &spandel;   // Desktop-PC browsers
#spandel
 
#spanend
#spandel
    // Opera (for desktop PC, not embedded) -- See BugTrack/743 for detail
#spanend
#spandel
    // NOTE: Keep this pattern above MSIE and Mozilla
#spanend
#spandel
    // Sample: "Opera/7.0 (OS; U)" (not disguise)
#spanend
#spandel
    // Sample: "Mozilla/4.0 (compatible; MSIE 5.0; OS) Opera 6.0" (disguise)
#spanend
#spandel
    array('pattern'=>'#?b(Opera)[/ ]([0-9?.]+)?b#',    'profile'=>'default'),
#spanend
#spandel
 
#spanend
#spandel
    // MSIE: Microsoft Internet Explorer (or something disguised as MSIE)
#spanend
#spandel
    // Sample: "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)"
#spanend
#spandel
    array('pattern'=>'#?b(MSIE) ([0-9?.]+)?b#',    'profile'=>'default'),
#spanend
#spandel
 
#spanend
#spandel
    // Mozilla Firefox
#spanend
#spandel
    // NOTE: Keep this pattern above Mozilla
#spanend
#spandel
    // Sample: "Mozilla/5.0 (Windows; U; Windows NT 5.0; ja-JP; rv:1.7) Gecko/20040803 Firefox/0.9.3"
#spanend
#spandel
    array('pattern'=>'#?b(Firefox)/([0-9?.]+)?b#',    'profile'=>'default'),
#spanend
#spandel
 
#spanend
 &spandel;       // Loose default: Including something Mozilla
#spandel
    array('pattern'=>'#^([a-zA-z0-9 ]+)/([0-9?.]+)?b#',    'profile'=>'default'),
#spanend
#spandel
 
#spanend
#spandel
    array('pattern'=>'#^#',    'profile'=>'default'),    // Sentinel
#spanend
#spandel
);
#spanend
#spandel
?>
#spanend
#spandel

リロード   新規 下位ページ作成 編集 凍結 差分 添付 コピー 名前変更   ホーム 一覧 検索 最終更新 バックアップ リンク元   ヘルプ   最終更新のRSS