<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/macoto_mayu/">
    <title>macoto_mayu @ ウィキ</title>
    <link>http://w.atwiki.jp/macoto_mayu/</link>
    <atom:link href="https://w.atwiki.jp/macoto_mayu/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>macoto_mayu @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2010-02-04T00:41:18+09:00</dc:date>
    <utime>1265211678</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/macoto_mayu/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/macoto_mayu/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/macoto_mayu/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/macoto_mayu/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/macoto_mayu/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/macoto_mayu/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/macoto_mayu/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/macoto_mayu/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/macoto_mayu/pages/7.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/macoto_mayu/pages/6.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/macoto_mayu/pages/15.html">
    <title>index2</title>
    <link>https://w.atwiki.jp/macoto_mayu/pages/15.html</link>
    <description>
      &lt;?php
// PukiWiki - Yet another WikiWikiWeb clone
// $Id: pukiwiki.ini.php,v 1.140 2006/06/11 14:35:39 henoheno Exp $
// Copyright (C)
//   2002-2006 PukiWiki Developers Team
//   2001-2002 Originally written by yu-ji
// License: GPL v2 or (at your option) any later version
//
// PukiWiki main setting file

/////////////////////////////////////////////////
// Functionality settings

// PKWK_OPTIMISE - Ignore verbose but understandable checking and warning
//   If you end testing this PukiWiki, set &#039;1&#039;.
//   If you feel in trouble about this PukiWiki, set &#039;0&#039;.
if (! defined(&#039;PKWK_OPTIMISE&#039;))
	define(&#039;PKWK_OPTIMISE&#039;, 0);

/////////////////////////////////////////////////
// Security settings

// PKWK_READONLY - Prohibits editing and maintain via WWW
//   NOTE: Counter-related functions will work now (counter, attach count, etc)
if (! defined(&#039;PKWK_READONLY&#039;))
	define(&#039;PKWK_READONLY&#039;, 0); // 0 or 1

// PKWK_SAFE_MODE - Prohibits some unsafe(but compatible) functions 
if (! defined(&#039;PKWK_SAFE_MODE&#039;))
	define(&#039;PKWK_SAFE_MODE&#039;, 1);
//	define(&#039;PKWK_SAFE_MODE&#039;, 0);

// PKWK_DISABLE_INLINE_IMAGE_FROM_URI - Disallow using inline-image-tag for URIs
//   Inline-image-tag for URIs may allow leakage of Wiki readers&#039; information
//   (in short, &#039;Web bug&#039;) or external malicious CGI (looks like an image&#039;s URL)
//   attack to Wiki readers, but easy way to show images.
if (! defined(&#039;PKWK_DISABLE_INLINE_IMAGE_FROM_URI&#039;))
	define(&#039;PKWK_DISABLE_INLINE_IMAGE_FROM_URI&#039;, 1);
//	define(&#039;PKWK_DISABLE_INLINE_IMAGE_FROM_URI&#039;, 0);

// PKWK_QUERY_STRING_MAX
//   Max length of GET method, prohibits some worm attack ASAP
//   NOTE: Keep (page-name + attach-file-name) &lt;= PKWK_QUERY_STRING_MAX
define(&#039;PKWK_QUERY_STRING_MAX&#039;, 1024); // Bytes, 0 = OFF
// define(&#039;PKWK_QUERY_STRING_MAX&#039;, 640); // Bytes, 0 = OFF

/////////////////////////////////////////////////
// Experimental features

// Multiline plugin hack (See BugTrack2/84)
// EXAMPLE(with a known BUG):
//   #plugin(args1,args2,...,argsN){{
//   argsN+1
//   argsN+1
//   #memo(foo)
//   argsN+1
//   }}
//   #memo(This makes &#039;#memo(foo)&#039; to this)
// define(&#039;PKWKEXP_DISABLE_MULTILINE_PLUGIN_HACK&#039;, 1); // 1 = Disabled
define(&#039;PKWKEXP_DISABLE_MULTILINE_PLUGIN_HACK&#039;,0); // 1 = Disabled

/////////////////////////////////////////////////
// Language / Encoding settings

// LANG - Internal content encoding (&#039;en&#039;, &#039;ja&#039;, or ...)
define(&#039;LANG&#039;, &#039;ja&#039;);

// UI_LANG - Content encoding for buttons, menus,  etc
define(&#039;UI_LANG&#039;, LANG); // &#039;en&#039; for Internationalized wikisite

/////////////////////////////////////////////////
// Directory settings I (ended with &#039;/&#039;, permission &#039;777&#039;)

// You may hide these directories (from web browsers)
// by setting DATA_HOME at index.php.

define(&#039;DATA_DIR&#039;,      DATA_HOME . &#039;wiki/&#039;     ); // Latest wiki texts
define(&#039;DIFF_DIR&#039;,      DATA_HOME . &#039;diff/&#039;     ); // Latest diffs
define(&#039;BACKUP_DIR&#039;,    DATA_HOME . &#039;backup/&#039;   ); // Backups
define(&#039;CACHE_DIR&#039;,     DATA_HOME . &#039;cache/&#039;    ); // Some sort of caches
define(&#039;UPLOAD_DIR&#039;,    DATA_HOME . &#039;attach/&#039;   ); // Attached files and logs
define(&#039;COUNTER_DIR&#039;,   DATA_HOME . &#039;counter/&#039;  ); // Counter plugin&#039;s counts
define(&#039;TRACKBACK_DIR&#039;, DATA_HOME . &#039;trackback/&#039;); // TrackBack logs
define(&#039;PLUGIN_DIR&#039;,    DATA_HOME . &#039;plugin/&#039;   ); // Plugin directory

// 20070716 Spam_Filter ///////////////////////////////////////////////

//define(&#039;SPAM_FILTER_COND&#039;, &#039;#useragent() or #filename() or #atag() or #ngreg() or (#onlyeng() and (#urlnum() or #uaunknown())) or #urlbl()&#039;);
define(&#039;SPAM_FILTER_COND&#039;, &#039;#ipcountry() or #urlnsbl() or #useragent() or #filename() or #atag() or #ngreg() or #onlyeng() or (#urlnum() and #uaunknown())&#039;);
//define(&#039;SPAM_FILTER_COND&#039;, &#039;#ipcountry() or #urlnsbl() or #useragent() or #filename() or #atag() or #ngreg() or (#onlyeng() and (#urlnum() or #uaunknown())) or #urlbl() or #ipbl()&#039;);

define(&#039;PLUGIN_REF_URL_GET_IMAGE_SIZE&#039;, FALSE);
define(&#039;SPAM_FILTER_ATAG_REG&#039;, &#039;/\[HTTP:|&lt;\/a&gt;|\[\/url\]/i&#039;);

/////////////////////////////////////////////////

/////////////////////////////////////////////////
// Directory settings II (ended with &#039;/&#039;)

// Skins / Stylesheets
define(&#039;SKIN_DIR&#039;, &#039;skin/&#039;);
// Skin files (SKIN_DIR/*.skin.php) are needed at
// ./DATAHOME/SKIN_DIR from index.php, but
// CSSs(*.css) and JavaScripts(*.js) are needed at
// ./SKIN_DIR from index.php.

// Static image files
define(&#039;IMAGE_DIR&#039;, &#039;image/&#039;);
// Keep this directory shown via web browsers like
// ./IMAGE_DIR from index.php.

/////////////////////////////////////////////////
// Local time setting

switch (LANG) { // or specifiy one
case &#039;ja&#039;:
	define(&#039;ZONE&#039;, &#039;JST&#039;);
	define(&#039;ZONETIME&#039;, 9 * 3600); // JST = GMT + 9
	break;
default  :
	define(&#039;ZONE&#039;, &#039;GMT&#039;);
	define(&#039;ZONETIME&#039;, 0);
	break;
}

/////////////////////////////////////////////////
// Title of your Wikisite (Name this)
// Also used as RSS feed&#039;s channel name etc
$page_title = &#039;Belle Isle Wiki&#039;;

// Specify PukiWiki URL (default: auto)
$script = &#039;http://example.com/pukiwiki/&#039;;

// Shorten $script: Cut its file name (default: not cut)
//$script_directory_index = &#039;index.php&#039;;
$script_directory_index = &#039;index.php&#039;;

// Site admin&#039;s name (CHANGE THIS)
$modifier = &#039;MonMon&#039;;

// Site admin&#039;s Web page (CHANGE THIS)
$modifierlink = &#039;http://example.com/pukiwiki/&#039;;

// Default page name
// $defaultpage  = &#039;FrontPage&#039;;     // Top / Default page
$defaultpage  = &#039;Belle Isle Wiki&#039;;     // Top / Default page
$whatsnew     = &#039;RecentChanges&#039;; // Modified page list
$whatsdeleted = &#039;RecentDeleted&#039;; // Removeed page list
$interwiki    = &#039;InterWikiName&#039;; // Set InterWiki definition here
$menubar      = &#039;MenuBar&#039;;       // Menu

/////////////////////////////////////////////////
// Change default Document Type Definition

// Some web browser&#039;s bug, and / or Java apprets may needs not-Strict DTD.
// Some plugin (e.g. paint) set this PKWK_DTD_XHTML_1_0_TRANSITIONAL.

//$pkwk_dtd = PKWK_DTD_XHTML_1_1; // Default
//$pkwk_dtd = PKWK_DTD_XHTML_1_0_STRICT;
//$pkwk_dtd = PKWK_DTD_XHTML_1_0_TRANSITIONAL;
//$pkwk_dtd = PKWK_DTD_HTML_4_01_STRICT;
//$pkwk_dtd = PKWK_DTD_HTML_4_01_TRANSITIONAL;

/////////////////////////////////////////////////
// Always output &quot;nofollow,noindex&quot; attribute

$nofollow = 0; // 1 = Try hiding from search engines

/////////////////////////////////////////////////

// PKWK_ALLOW_JAVASCRIPT - Allow / Prohibit using JavaScript
//define(&#039;PKWK_ALLOW_JAVASCRIPT&#039;, 0);
define(&#039;PKWK_ALLOW_JAVASCRIPT&#039;, 1);

/////////////////////////////////////////////////
// TrackBack feature

// Enable Trackback
$trackback = 0;

// Show trackbacks with an another window (using JavaScript)
$trackback_javascript = 0;

/////////////////////////////////////////////////
// Bodycache feature

// enable bodycache or not
// default : true
$enable_bodycache = true; 

// use bodycache as default. If it&#039;s false, 
// #bodycache(enable) is required per page.
// default : true
$enable_bodycache_default = true; 

// If these (block) plugins are contained in page, bodycache will be disabled.
// Users can increase this plugin list to control bodycache.
// default : array( &#039;ls2&#039;, &#039;pcomment&#039;, &#039;include&#039; );
// $bodycache_disable_plugins = array( &#039;ls2&#039;, &#039;pcomment&#039;, &#039;include&#039; );
// $bodycache_disable_plugins = array( &#039;ls2&#039;, &#039;pcomment&#039;, &#039;include&#039;, &#039;sitesearch&#039;, &#039;table_edit&#039;, &#039;article&#039; );
$bodycache_disable_plugins = array( &#039;ls2&#039;, &#039;areaedit&#039; );

/////////////////////////////////////////////////


/////////////////////////////////////////////////
// Referer list feature
$referer = 0;

/////////////////////////////////////////////////
// _Disable_ WikiName auto-linking
// $nowikiname = 0;
$nowikiname = 1;

/////////////////////////////////////////////////
// AutoLink feature

// AutoLink minimum length of page name
$autolink = 0; // Bytes, 0 = OFF (try 8)

/////////////////////////////////////////////////
// Enable Freeze / Unfreeze feature
$function_freeze = 1;

/////////////////////////////////////////////////
// Allow to use &#039;Do not change timestamp&#039; checkbox
// (0:Disable, 1:For everyone,  2:Only for the administrator)
// $notimeupdate = 1;
$notimeupdate = 0;

/////////////////////////////////////////////////
// Admin password for this Wikisite

// Default: always fail
$adminpass = &#039;{x-php-md5}!&#039;;

// Sample:
//$adminpass = &#039;pass&#039;; // Cleartext
//$adminpass = &#039;{x-php-md5}1a1dc91c907325c69271ddf0c944bc72&#039;; // PHP md5()  &#039;pass&#039;
//$adminpass = &#039;{CRYPT}$1$AR.Gk94x$uCe8fUUGMfxAPH83psCZG/&#039;;   // LDAP CRYPT &#039;pass&#039;
//$adminpass = &#039;{MD5}Gh3JHJBzJcaScd3wyUS8cg==&#039;;               // LDAP MD5   &#039;pass&#039;
//$adminpass = &#039;{SMD5}o7lTdtHFJDqxFOVX09C8QnlmYmZnd2Qx&#039;;      // LDAP SMD5  &#039;pass&#039;

/////////////////////////////////////////////////
// Page-reading feature settings
// (Automatically creating pronounce datas, for Kanji-included page names,
//  to show sorted page-list correctly)

// Enable page-reading feature by calling ChaSen or KAKASHI command
// (1:Enable, 0:Disable)
$pagereading_enable = 0;

// Specify converter as ChaSen(&#039;chasen&#039;) or KAKASI(&#039;kakasi&#039;) or None(&#039;none&#039;)
$pagereading_kanji2kana_converter = &#039;none&#039;;

// Specify Kanji encoding to pass data between PukiWiki and the converter
$pagereading_kanji2kana_encoding = &#039;EUC&#039;; // Default for Unix
//$pagereading_kanji2kana_encoding = &#039;SJIS&#039;; // Default for Windows

// Absolute path of the converter (ChaSen)
$pagereading_chasen_path = &#039;/usr/local/bin/chasen&#039;;
//$pagereading_chasen_path = &#039;c:\progra~1\chasen21\chasen.exe&#039;;

// Absolute path of the converter (KAKASI)
$pagereading_kakasi_path = &#039;/usr/local/bin/kakasi&#039;;
//$pagereading_kakasi_path = &#039;c:\kakasi\bin\kakasi.exe&#039;;

// Page name contains pronounce data (written by the converter)
$pagereading_config_page = &#039;:config/PageReading&#039;;

// Page name of default pronouncing dictionary, used when converter = &#039;none&#039;
$pagereading_config_dict = &#039;:config/PageReading/dict&#039;;

/////////////////////////////////////////////////
// User definition
$auth_users = array(
	// Username =&gt; password
	&#039;foo&#039;	=&gt; &#039;foo_passwd&#039;, // Cleartext
	&#039;bar&#039;	=&gt; &#039;{x-php-md5}f53ae779077e987718cc285b14dfbe86&#039;, // PHP md5() &#039;bar_passwd&#039;
	&#039;hoge&#039;	=&gt; &#039;{SMD5}OzJo/boHwM4q5R+g7LCOx2xGMkFKRVEx&#039;,      // LDAP SMD5 &#039;hoge_passwd&#039;
);

/////////////////////////////////////////////////
// Authentication method

$auth_method_type	= &#039;pagename&#039;;	// By Page name
//$auth_method_type	= &#039;contents&#039;;	// By Page contents

/////////////////////////////////////////////////
// Read auth (0:Disable, 1:Enable)
$read_auth = 0;

$read_auth_pages = array(
	// Regex		   Username
	&#039;#HogeHoge#&#039;		=&gt; &#039;hoge&#039;,
	&#039;#(NETABARE|NetaBare)#&#039;	=&gt; &#039;foo,bar,hoge&#039;,
);

/////////////////////////////////////////////////
// Edit auth (0:Disable, 1:Enable)
$edit_auth = 0;

$edit_auth_pages = array(
	// Regex		   Username
	&#039;#BarDiary#&#039;		=&gt; &#039;bar&#039;,
	&#039;#HogeHoge#&#039;		=&gt; &#039;hoge&#039;,
	&#039;#(NETABARE|NetaBare)#&#039;	=&gt; &#039;foo,bar,hoge&#039;,
);

/////////////////////////////////////////////////
// Search auth
// 0: Disabled (Search read-prohibited page contents)
// 1: Enabled  (Search only permitted pages for the user)
$search_auth = 0;

/////////////////////////////////////////////////
// $whatsnew: Max number of RecentChanges
$maxshow = 60;

// $whatsdeleted: Max number of RecentDeleted
// (0 = Disabled)
$maxshow_deleted = 60;

/////////////////////////////////////////////////
// Page names can&#039;t be edit via PukiWiki
$cantedit = array( $whatsnew, $whatsdeleted );

/////////////////////////////////////////////////
// HTTP: Output Last-Modified header
// $lastmod = 0;
$lastmod = 1;

/////////////////////////////////////////////////
// Date format
$date_format = &#039;Y-m-d&#039;;

// Time format
$time_format = &#039;H:i:s&#039;;

/////////////////////////////////////////////////
// Max number of RSS feed
$rss_max = 15;

/////////////////////////////////////////////////
// Backup related settings

// Enable backup
$do_backup = 1;

// When a page had been removed, remove its backup too?
$del_backup = 0;

// Bacukp interval and generation
$cycle  =   0; // Wait N hours between backup (0 = no wait)
$maxage = 50; // Stock latest N backups

// NOTE: $cycle x $maxage / 24 = Minimum days to lost your data
//          3   x   120   / 24 = 15

// Splitter of backup data (NOTE: Too dangerous to change)
define(&#039;PKWK_SPLITTER&#039;, &#039;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&#039;);

/////////////////////////////////////////////////
// Command execution per update

define(&#039;PKWK_UPDATE_EXEC&#039;, &#039;&#039;);

// Sample: Namazu (Search engine)
//$target     = &#039;/var/www/wiki/&#039;;
//$mknmz      = &#039;/usr/bin/mknmz&#039;;
//$output_dir = &#039;/var/lib/namazu/index/&#039;;
//define(&#039;PKWK_UPDATE_EXEC&#039;,
//	$mknmz . &#039; --media-type=text/pukiwiki&#039; .
//	&#039; -O &#039; . $output_dir . &#039; -L ja -c -K &#039; . $target);

/////////////////////////////////////////////////
// HTTP proxy setting (for TrackBack etc)

// Use HTTP proxy server to get remote data
$use_proxy = 0;

$proxy_host = &#039;proxy.example.com&#039;;
$proxy_port = 8080;

// Do Basic authentication
$need_proxy_auth = 0;
$proxy_auth_user = &#039;username&#039;;
$proxy_auth_pass = &#039;password&#039;;

// Hosts that proxy server will not be needed
$no_proxy = array(
	&#039;localhost&#039;,	// localhost
	&#039;127.0.0.0/8&#039;,	// loopback
//	&#039;10.0.0.0/8&#039;	// private class A
//	&#039;172.16.0.0/12&#039;	// private class B
//	&#039;192.168.0.0/16&#039;	// private class C
//	&#039;no-proxy.com&#039;,
);

////////////////////////////////////////////////
// Mail related settings

// Send mail per update of pages
$notify = 0;

// Send diff only
$notify_diff_only = 1;

// SMTP server (Windows only. Usually specified at php.ini)
$smtp_server = &#039;localhost&#039;;

// Mail recipient (To:) and sender (From:)
$notify_to   = &#039;to@example.com&#039;;	// To:
$notify_from = &#039;from@example.com&#039;;	// From:

// Subject: ($page = Page name wll be replaced)
$notify_subject = &#039;[PukiWiki] $page&#039;;

// Mail header
// NOTE: Multiple items must be divided by &quot;\r\n&quot;, not &quot;\n&quot;.
$notify_header = &#039;&#039;;

/////////////////////////////////////////////////
// Mail: POP / APOP Before SMTP

// Do POP/APOP authentication before send mail
$smtp_auth = 0;

$pop_server = &#039;localhost&#039;;
$pop_port   = 110;
$pop_userid = &#039;&#039;;
$pop_passwd = &#039;&#039;;

// Use APOP instead of POP (If server uses)
//   Default = Auto (Use APOP if possible)
//   1       = Always use APOP
//   0       = Always use POP
// $pop_auth_use_apop = 1;

/////////////////////////////////////////////////
// Ignore list

// Regex of ignore pages
$non_list = &#039;^\:&#039;;

// Search ignored pages
$search_non_list = 1;

/////////////////////////////////////////////////
// Template setting

$auto_template_func = 1;
$auto_template_rules = array(
	&#039;((.+)\/([^\/]+))&#039; =&gt; &#039;\2/template&#039;
);

/////////////////////////////////////////////////
// Automatically add fixed heading anchor
$fixed_heading_anchor = 1;

/////////////////////////////////////////////////
// 見出しごとの編集を可能にする
// (固有のアンカーが挿入されている見出し行にのみ有効)
$fixed_heading_anchor_edit = 1;

/////////////////////////////////////////////////
// Remove the first spaces from Preformatted text
$preformat_ltrim = 1;

/////////////////////////////////////////////////
// Convert linebreaks into &lt;br /&gt;
$line_break = 0;

/////////////////////////////////////////////////
// Use date-time rules (See rules.ini.php)
$usedatetime = 1;

/////////////////////////////////////////////////
// User-Agent settings
//
// If you want to ignore embedded browsers for rich-content-wikisite,
// remove (or comment-out) all &#039;keitai&#039; settings.
//
// If you want to to ignore desktop-PC browsers for simple wikisite,
// copy keitai.ini.php to default.ini.php and customize it.

$agents = array(
// pattern: A regular-expression that matches device(browser)&#039;s name and version
// profile: A group of browsers

    // Embedded browsers (Rich-clients for PukiWiki)

	// Windows CE (Microsoft(R) Internet Explorer 5.5 for Windows(R) CE)
	// Sample: &quot;Mozilla/4.0 (compatible; MSIE 5.5; Windows CE; sigmarion3)&quot; (sigmarion, Hand-held PC)
	array(&#039;pattern&#039;=&gt;&#039;#\b(?:MSIE [5-9]).*\b(Windows CE)\b#&#039;, &#039;profile&#039;=&gt;&#039;default&#039;),

	// ACCESS &quot;NetFront&quot; / &quot;Compact NetFront&quot; and thier OEM, expects to be &quot;Mozilla/4.0&quot;
	// Sample: &quot;Mozilla/4.0 (PS2; PlayStation BB Navigator 1.0) NetFront/3.0&quot; (PlayStation BB Navigator, for SONY PlayStation 2)
	// Sample: &quot;Mozilla/4.0 (PDA; PalmOS/sony/model crdb/Revision:1.1.19) NetFront/3.0&quot; (SONY Clie series)
	// Sample: &quot;Mozilla/4.0 (PDA; SL-A300/1.0,Embedix/Qtopia/1.1.0) NetFront/3.0&quot; (SHARP Zaurus)
	array(&#039;pattern&#039;=&gt;&#039;#^(?:Mozilla/4).*\b(NetFront)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

    // Embedded browsers (Non-rich)

	// Windows CE (the others)
	// Sample: &quot;Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; 240x320 )&quot; (GFORT, NTT DoCoMo)
	array(&#039;pattern&#039;=&gt;&#039;#\b(Windows CE)\b#&#039;, &#039;profile&#039;=&gt;&#039;keitai&#039;),

	// ACCESS &quot;NetFront&quot; / &quot;Compact NetFront&quot; and thier OEM
	// Sample: &quot;Mozilla/3.0 (AveFront/2.6)&quot; (&quot;SUNTAC OnlineStation&quot;, USB-Modem for PlayStation 2)
	// Sample: &quot;Mozilla/3.0(DDIPOCKET;JRC/AH-J3001V,AH-J3002V/1.0/0100/c50)CNF/2.0&quot; (DDI Pocket: AirH&quot; Phone by JRC)
	array(&#039;pattern&#039;=&gt;&#039;#\b(NetFront)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#\b(CNF)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#\b(AveFront)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#\b(AVE-Front)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;), // The same?

	// NTT-DoCoMo, i-mode (embeded Compact NetFront) and FOMA (embedded NetFront) phones
	// Sample: &quot;DoCoMo/1.0/F501i&quot;, &quot;DoCoMo/1.0/N504i/c10/TB/serXXXX&quot; // c以降は可変
	// Sample: &quot;DoCoMo/2.0 MST_v_SH2101V(c100;TB;W22H12;serXXXX;iccxxxx)&quot; // ()の中は可変
	array(&#039;pattern&#039;=&gt;&#039;#^(DoCoMo)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Vodafone&#039;s embedded browser
	// Sample: &quot;J-PHONE/2.0/J-T03&quot;	// 2.0は&quot;ブラウザの&quot;バージョン
	// Sample: &quot;J-PHONE/4.0/J-SH51/SNxxxx SH/0001a Profile/MIDP-1.0 Configuration/CLDC-1.0 Ext-Profile/JSCL-1.1.0&quot;
	array(&#039;pattern&#039;=&gt;&#039;#^(J-PHONE)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Openwave(R) Mobile Browser (EZweb, WAP phone, etc)
	// Sample: &quot;OPWV-SDK/62K UP.Browser/6.2.0.5.136 (GUI) MMP/2.0&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(UP\.Browser)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Opera, dressing up as other embedded browsers
	// Sample: &quot;Mozilla/3.0(DDIPOCKET;KYOCERA/AH-K3001V/1.4.1.67.000000/0.1/C100) Opera 7.0&quot; (Like CNF at &#039;keitai&#039;-mode)
	array(&#039;pattern&#039;=&gt;&#039;#\b(?:DDIPOCKET|WILLCOM)\b.+\b(Opera) ([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Planetweb http://www.planetweb.com/
	// Sample: &quot;Mozilla/3.0 (Planetweb/v1.07 Build 141; SPS JP)&quot; (&quot;EGBROWSER&quot;, Web browser for PlayStation 2)
	array(&#039;pattern&#039;=&gt;&#039;#\b(Planetweb)/v([0-9\.]+)#&#039;, &#039;profile&#039;=&gt;&#039;keitai&#039;),

	// DreamPassport, Web browser for SEGA DreamCast
	// Sample: &quot;Mozilla/3.0 (DreamPassport/3.0)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(DreamPassport)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Palm &quot;Web Pro&quot; http://www.palmone.com/us/support/accessories/webpro/
	// Sample: &quot;Mozilla/4.76 [en] (PalmOS; U; WebPro)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(WebPro)\b#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// ilinx &quot;Palmscape&quot; / &quot;Xiino&quot; http://www.ilinx.co.jp/
	// Sample: &quot;Xiino/2.1SJ [ja] (v. 4.1; 153x130; c16/d)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#^(Palmscape)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#^(Xiino)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// SHARP PDA Browser (SHARP Zaurus)
	// Sample: &quot;sharp pda browser/6.1[ja](MI-E1/1.0) &quot;
	array(&#039;pattern&#039;=&gt;&#039;#^(sharp [a-z]+ browser)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// WebTV
	array(&#039;pattern&#039;=&gt;&#039;#^(WebTV)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

    // Desktop-PC browsers

	// Opera (for desktop PC, not embedded) -- See BugTrack/743 for detail
	// NOTE: Keep this pattern above MSIE and Mozilla
	// Sample: &quot;Opera/7.0 (OS; U)&quot; (not disguise)
	// Sample: &quot;Mozilla/4.0 (compatible; MSIE 5.0; OS) Opera 6.0&quot; (disguise)
	array(&#039;pattern&#039;=&gt;&#039;#\b(Opera)[/ ]([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

	// MSIE: Microsoft Internet Explorer (or something disguised as MSIE)
	// Sample: &quot;Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(MSIE) ([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

	// Mozilla Firefox
	// NOTE: Keep this pattern above Mozilla
	// Sample: &quot;Mozilla/5.0 (Windows; U; Windows NT 5.0; ja-JP; rv:1.7) Gecko/20040803 Firefox/0.9.3&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(Firefox)/([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

    	// Loose default: Including something Mozilla
	array(&#039;pattern&#039;=&gt;&#039;#^([a-zA-z0-9 ]+)/([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

	array(&#039;pattern&#039;=&gt;&#039;#^#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),	// Sentinel
);
?&gt;    </description>
    <dc:date>2010-02-04T00:41:18+09:00</dc:date>
    <utime>1265211678</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/macoto_mayu/pages/14.html">
    <title>index</title>
    <link>https://w.atwiki.jp/macoto_mayu/pages/14.html</link>
    <description>
      &lt;?php
// PukiWiki - Yet another WikiWikiWeb clone
// $Id: pukiwiki.ini.php,v 1.140 2006/06/11 14:35:39 henoheno Exp $
// Copyright (C)
//   2002-2006 PukiWiki Developers Team
//   2001-2002 Originally written by yu-ji
// License: GPL v2 or (at your option) any later version
//
// PukiWiki main setting file

/////////////////////////////////////////////////
// Functionality settings

// PKWK_OPTIMISE - Ignore verbose but understandable checking and warning
//   If you end testing this PukiWiki, set &#039;1&#039;.
//   If you feel in trouble about this PukiWiki, set &#039;0&#039;.
if (! defined(&#039;PKWK_OPTIMISE&#039;))
	define(&#039;PKWK_OPTIMISE&#039;, 0);

/////////////////////////////////////////////////
// Security settings

// PKWK_READONLY - Prohibits editing and maintain via WWW
//   NOTE: Counter-related functions will work now (counter, attach count, etc)
if (! defined(&#039;PKWK_READONLY&#039;))
	define(&#039;PKWK_READONLY&#039;, 0); // 0 or 1

// PKWK_SAFE_MODE - Prohibits some unsafe(but compatible) functions 
if (! defined(&#039;PKWK_SAFE_MODE&#039;))
	define(&#039;PKWK_SAFE_MODE&#039;, 1);
//	define(&#039;PKWK_SAFE_MODE&#039;, 0);

// PKWK_DISABLE_INLINE_IMAGE_FROM_URI - Disallow using inline-image-tag for URIs
//   Inline-image-tag for URIs may allow leakage of Wiki readers&#039; information
//   (in short, &#039;Web bug&#039;) or external malicious CGI (looks like an image&#039;s URL)
//   attack to Wiki readers, but easy way to show images.
if (! defined(&#039;PKWK_DISABLE_INLINE_IMAGE_FROM_URI&#039;))
	define(&#039;PKWK_DISABLE_INLINE_IMAGE_FROM_URI&#039;, 1);
//	define(&#039;PKWK_DISABLE_INLINE_IMAGE_FROM_URI&#039;, 0);

// PKWK_QUERY_STRING_MAX
//   Max length of GET method, prohibits some worm attack ASAP
//   NOTE: Keep (page-name + attach-file-name) &lt;= PKWK_QUERY_STRING_MAX
define(&#039;PKWK_QUERY_STRING_MAX&#039;, 1024); // Bytes, 0 = OFF
// define(&#039;PKWK_QUERY_STRING_MAX&#039;, 640); // Bytes, 0 = OFF

/////////////////////////////////////////////////
// Experimental features

// Multiline plugin hack (See BugTrack2/84)
// EXAMPLE(with a known BUG):
//   #plugin(args1,args2,...,argsN){{
//   argsN+1
//   argsN+1
//   #memo(foo)
//   argsN+1
//   }}
//   #memo(This makes &#039;#memo(foo)&#039; to this)
// define(&#039;PKWKEXP_DISABLE_MULTILINE_PLUGIN_HACK&#039;, 1); // 1 = Disabled
define(&#039;PKWKEXP_DISABLE_MULTILINE_PLUGIN_HACK&#039;,0); // 1 = Disabled

/////////////////////////////////////////////////
// Language / Encoding settings

// LANG - Internal content encoding (&#039;en&#039;, &#039;ja&#039;, or ...)
define(&#039;LANG&#039;, &#039;ja&#039;);

// UI_LANG - Content encoding for buttons, menus,  etc
define(&#039;UI_LANG&#039;, LANG); // &#039;en&#039; for Internationalized wikisite

/////////////////////////////////////////////////
// Directory settings I (ended with &#039;/&#039;, permission &#039;777&#039;)

// You may hide these directories (from web browsers)
// by setting DATA_HOME at index.php.

define(&#039;DATA_DIR&#039;,      DATA_HOME . &#039;wiki/&#039;     ); // Latest wiki texts
define(&#039;DIFF_DIR&#039;,      DATA_HOME . &#039;diff/&#039;     ); // Latest diffs
define(&#039;BACKUP_DIR&#039;,    DATA_HOME . &#039;backup/&#039;   ); // Backups
define(&#039;CACHE_DIR&#039;,     DATA_HOME . &#039;cache/&#039;    ); // Some sort of caches
define(&#039;UPLOAD_DIR&#039;,    DATA_HOME . &#039;attach/&#039;   ); // Attached files and logs
define(&#039;COUNTER_DIR&#039;,   DATA_HOME . &#039;counter/&#039;  ); // Counter plugin&#039;s counts
define(&#039;TRACKBACK_DIR&#039;, DATA_HOME . &#039;trackback/&#039;); // TrackBack logs
define(&#039;PLUGIN_DIR&#039;,    DATA_HOME . &#039;plugin/&#039;   ); // Plugin directory

// 20070716 Spam_Filter ///////////////////////////////////////////////

//define(&#039;SPAM_FILTER_COND&#039;, &#039;#useragent() or #filename() or #atag() or #ngreg() or (#onlyeng() and (#urlnum() or #uaunknown())) or #urlbl()&#039;);
define(&#039;SPAM_FILTER_COND&#039;, &#039;#ipcountry() or #urlnsbl() or #useragent() or #filename() or #atag() or #ngreg() or #onlyeng() or (#urlnum() and #uaunknown())&#039;);
//define(&#039;SPAM_FILTER_COND&#039;, &#039;#ipcountry() or #urlnsbl() or #useragent() or #filename() or #atag() or #ngreg() or (#onlyeng() and (#urlnum() or #uaunknown())) or #urlbl() or #ipbl()&#039;);

define(&#039;PLUGIN_REF_URL_GET_IMAGE_SIZE&#039;, FALSE);
define(&#039;SPAM_FILTER_ATAG_REG&#039;, &#039;/\[HTTP:|&lt;\/a&gt;|\[\/url\]/i&#039;);

/////////////////////////////////////////////////

/////////////////////////////////////////////////
// Directory settings II (ended with &#039;/&#039;)

// Skins / Stylesheets
define(&#039;SKIN_DIR&#039;, &#039;skin/&#039;);
// Skin files (SKIN_DIR/*.skin.php) are needed at
// ./DATAHOME/SKIN_DIR from index.php, but
// CSSs(*.css) and JavaScripts(*.js) are needed at
// ./SKIN_DIR from index.php.

// Static image files
define(&#039;IMAGE_DIR&#039;, &#039;image/&#039;);
// Keep this directory shown via web browsers like
// ./IMAGE_DIR from index.php.

/////////////////////////////////////////////////
// Local time setting

switch (LANG) { // or specifiy one
case &#039;ja&#039;:
	define(&#039;ZONE&#039;, &#039;JST&#039;);
	define(&#039;ZONETIME&#039;, 9 * 3600); // JST = GMT + 9
	break;
default  :
	define(&#039;ZONE&#039;, &#039;GMT&#039;);
	define(&#039;ZONETIME&#039;, 0);
	break;
}

/////////////////////////////////////////////////
// Title of your Wikisite (Name this)
// Also used as RSS feed&#039;s channel name etc
$page_title = &#039;Belle Isle Wiki&#039;;

// Specify PukiWiki URL (default: auto)
$script = &#039;http://example.com/pukiwiki/&#039;;

// Shorten $script: Cut its file name (default: not cut)
//$script_directory_index = &#039;index.php&#039;;
$script_directory_index = &#039;index.php&#039;;

// Site admin&#039;s name (CHANGE THIS)
$modifier = &#039;MonMon&#039;;

// Site admin&#039;s Web page (CHANGE THIS)
$modifierlink = &#039;http://example.com/pukiwiki/&#039;;

// Default page name
// $defaultpage  = &#039;FrontPage&#039;;     // Top / Default page
$defaultpage  = &#039;Belle Isle Wiki&#039;;     // Top / Default page
$whatsnew     = &#039;RecentChanges&#039;; // Modified page list
$whatsdeleted = &#039;RecentDeleted&#039;; // Removeed page list
$interwiki    = &#039;InterWikiName&#039;; // Set InterWiki definition here
$menubar      = &#039;MenuBar&#039;;       // Menu

/////////////////////////////////////////////////
// Change default Document Type Definition

// Some web browser&#039;s bug, and / or Java apprets may needs not-Strict DTD.
// Some plugin (e.g. paint) set this PKWK_DTD_XHTML_1_0_TRANSITIONAL.

//$pkwk_dtd = PKWK_DTD_XHTML_1_1; // Default
//$pkwk_dtd = PKWK_DTD_XHTML_1_0_STRICT;
//$pkwk_dtd = PKWK_DTD_XHTML_1_0_TRANSITIONAL;
//$pkwk_dtd = PKWK_DTD_HTML_4_01_STRICT;
//$pkwk_dtd = PKWK_DTD_HTML_4_01_TRANSITIONAL;

/////////////////////////////////////////////////
// Always output &quot;nofollow,noindex&quot; attribute

$nofollow = 0; // 1 = Try hiding from search engines

/////////////////////////////////////////////////

// PKWK_ALLOW_JAVASCRIPT - Allow / Prohibit using JavaScript
//define(&#039;PKWK_ALLOW_JAVASCRIPT&#039;, 0);
define(&#039;PKWK_ALLOW_JAVASCRIPT&#039;, 1);

/////////////////////////////////////////////////
// TrackBack feature

// Enable Trackback
$trackback = 0;

// Show trackbacks with an another window (using JavaScript)
$trackback_javascript = 0;

/////////////////////////////////////////////////
// Bodycache feature

// enable bodycache or not
// default : true
$enable_bodycache = true; 

// use bodycache as default. If it&#039;s false, 
// #bodycache(enable) is required per page.
// default : true
$enable_bodycache_default = true; 

// If these (block) plugins are contained in page, bodycache will be disabled.
// Users can increase this plugin list to control bodycache.
// default : array( &#039;ls2&#039;, &#039;pcomment&#039;, &#039;include&#039; );
// $bodycache_disable_plugins = array( &#039;ls2&#039;, &#039;pcomment&#039;, &#039;include&#039; );
// $bodycache_disable_plugins = array( &#039;ls2&#039;, &#039;pcomment&#039;, &#039;include&#039;, &#039;sitesearch&#039;, &#039;table_edit&#039;, &#039;article&#039; );
$bodycache_disable_plugins = array( &#039;ls2&#039;, &#039;areaedit&#039; );

/////////////////////////////////////////////////


/////////////////////////////////////////////////
// Referer list feature
$referer = 0;

/////////////////////////////////////////////////
// _Disable_ WikiName auto-linking
// $nowikiname = 0;
$nowikiname = 1;

/////////////////////////////////////////////////
// AutoLink feature

// AutoLink minimum length of page name
$autolink = 0; // Bytes, 0 = OFF (try 8)

/////////////////////////////////////////////////
// Enable Freeze / Unfreeze feature
$function_freeze = 1;

/////////////////////////////////////////////////
// Allow to use &#039;Do not change timestamp&#039; checkbox
// (0:Disable, 1:For everyone,  2:Only for the administrator)
// $notimeupdate = 1;
$notimeupdate = 0;

/////////////////////////////////////////////////
// Admin password for this Wikisite

// Default: always fail
$adminpass = &#039;{x-php-md5}!&#039;;

// Sample:
//$adminpass = &#039;pass&#039;; // Cleartext
//$adminpass = &#039;{x-php-md5}1a1dc91c907325c69271ddf0c944bc72&#039;; // PHP md5()  &#039;pass&#039;
//$adminpass = &#039;{CRYPT}$1$AR.Gk94x$uCe8fUUGMfxAPH83psCZG/&#039;;   // LDAP CRYPT &#039;pass&#039;
//$adminpass = &#039;{MD5}Gh3JHJBzJcaScd3wyUS8cg==&#039;;               // LDAP MD5   &#039;pass&#039;
//$adminpass = &#039;{SMD5}o7lTdtHFJDqxFOVX09C8QnlmYmZnd2Qx&#039;;      // LDAP SMD5  &#039;pass&#039;

/////////////////////////////////////////////////
// Page-reading feature settings
// (Automatically creating pronounce datas, for Kanji-included page names,
//  to show sorted page-list correctly)

// Enable page-reading feature by calling ChaSen or KAKASHI command
// (1:Enable, 0:Disable)
$pagereading_enable = 0;

// Specify converter as ChaSen(&#039;chasen&#039;) or KAKASI(&#039;kakasi&#039;) or None(&#039;none&#039;)
$pagereading_kanji2kana_converter = &#039;none&#039;;

// Specify Kanji encoding to pass data between PukiWiki and the converter
$pagereading_kanji2kana_encoding = &#039;EUC&#039;; // Default for Unix
//$pagereading_kanji2kana_encoding = &#039;SJIS&#039;; // Default for Windows

// Absolute path of the converter (ChaSen)
$pagereading_chasen_path = &#039;/usr/local/bin/chasen&#039;;
//$pagereading_chasen_path = &#039;c:\progra~1\chasen21\chasen.exe&#039;;

// Absolute path of the converter (KAKASI)
$pagereading_kakasi_path = &#039;/usr/local/bin/kakasi&#039;;
//$pagereading_kakasi_path = &#039;c:\kakasi\bin\kakasi.exe&#039;;

// Page name contains pronounce data (written by the converter)
$pagereading_config_page = &#039;:config/PageReading&#039;;

// Page name of default pronouncing dictionary, used when converter = &#039;none&#039;
$pagereading_config_dict = &#039;:config/PageReading/dict&#039;;

/////////////////////////////////////////////////
// User definition
$auth_users = array(
	// Username =&gt; password
	&#039;foo&#039;	=&gt; &#039;foo_passwd&#039;, // Cleartext
	&#039;bar&#039;	=&gt; &#039;{x-php-md5}f53ae779077e987718cc285b14dfbe86&#039;, // PHP md5() &#039;bar_passwd&#039;
	&#039;hoge&#039;	=&gt; &#039;{SMD5}OzJo/boHwM4q5R+g7LCOx2xGMkFKRVEx&#039;,      // LDAP SMD5 &#039;hoge_passwd&#039;
);

/////////////////////////////////////////////////
// Authentication method

$auth_method_type	= &#039;pagename&#039;;	// By Page name
//$auth_method_type	= &#039;contents&#039;;	// By Page contents

/////////////////////////////////////////////////
// Read auth (0:Disable, 1:Enable)
$read_auth = 0;

$read_auth_pages = array(
	// Regex		   Username
	&#039;#HogeHoge#&#039;		=&gt; &#039;hoge&#039;,
	&#039;#(NETABARE|NetaBare)#&#039;	=&gt; &#039;foo,bar,hoge&#039;,
);

/////////////////////////////////////////////////
// Edit auth (0:Disable, 1:Enable)
$edit_auth = 0;

$edit_auth_pages = array(
	// Regex		   Username
	&#039;#BarDiary#&#039;		=&gt; &#039;bar&#039;,
	&#039;#HogeHoge#&#039;		=&gt; &#039;hoge&#039;,
	&#039;#(NETABARE|NetaBare)#&#039;	=&gt; &#039;foo,bar,hoge&#039;,
);

/////////////////////////////////////////////////
// Search auth
// 0: Disabled (Search read-prohibited page contents)
// 1: Enabled  (Search only permitted pages for the user)
$search_auth = 0;

/////////////////////////////////////////////////
// $whatsnew: Max number of RecentChanges
$maxshow = 60;

// $whatsdeleted: Max number of RecentDeleted
// (0 = Disabled)
$maxshow_deleted = 60;

/////////////////////////////////////////////////
// Page names can&#039;t be edit via PukiWiki
$cantedit = array( $whatsnew, $whatsdeleted );

/////////////////////////////////////////////////
// HTTP: Output Last-Modified header
// $lastmod = 0;
$lastmod = 1;

/////////////////////////////////////////////////
// Date format
$date_format = &#039;Y-m-d&#039;;

// Time format
$time_format = &#039;H:i:s&#039;;

/////////////////////////////////////////////////
// Max number of RSS feed
$rss_max = 15;

/////////////////////////////////////////////////
// Backup related settings

// Enable backup
$do_backup = 1;

// When a page had been removed, remove its backup too?
$del_backup = 0;

// Bacukp interval and generation
$cycle  =   0; // Wait N hours between backup (0 = no wait)
$maxage = 50; // Stock latest N backups

// NOTE: $cycle x $maxage / 24 = Minimum days to lost your data
//          3   x   120   / 24 = 15

// Splitter of backup data (NOTE: Too dangerous to change)
define(&#039;PKWK_SPLITTER&#039;, &#039;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&#039;);

/////////////////////////////////////////////////
// Command execution per update

define(&#039;PKWK_UPDATE_EXEC&#039;, &#039;&#039;);

// Sample: Namazu (Search engine)
//$target     = &#039;/var/www/wiki/&#039;;
//$mknmz      = &#039;/usr/bin/mknmz&#039;;
//$output_dir = &#039;/var/lib/namazu/index/&#039;;
//define(&#039;PKWK_UPDATE_EXEC&#039;,
//	$mknmz . &#039; --media-type=text/pukiwiki&#039; .
//	&#039; -O &#039; . $output_dir . &#039; -L ja -c -K &#039; . $target);

/////////////////////////////////////////////////
// HTTP proxy setting (for TrackBack etc)

// Use HTTP proxy server to get remote data
$use_proxy = 0;

$proxy_host = &#039;proxy.example.com&#039;;
$proxy_port = 8080;

// Do Basic authentication
$need_proxy_auth = 0;
$proxy_auth_user = &#039;username&#039;;
$proxy_auth_pass = &#039;password&#039;;

// Hosts that proxy server will not be needed
$no_proxy = array(
	&#039;localhost&#039;,	// localhost
	&#039;127.0.0.0/8&#039;,	// loopback
//	&#039;10.0.0.0/8&#039;	// private class A
//	&#039;172.16.0.0/12&#039;	// private class B
//	&#039;192.168.0.0/16&#039;	// private class C
//	&#039;no-proxy.com&#039;,
);

////////////////////////////////////////////////
// Mail related settings

// Send mail per update of pages
$notify = 0;

// Send diff only
$notify_diff_only = 1;

// SMTP server (Windows only. Usually specified at php.ini)
$smtp_server = &#039;localhost&#039;;

// Mail recipient (To:) and sender (From:)
$notify_to   = &#039;to@example.com&#039;;	// To:
$notify_from = &#039;from@example.com&#039;;	// From:

// Subject: ($page = Page name wll be replaced)
$notify_subject = &#039;[PukiWiki] $page&#039;;

// Mail header
// NOTE: Multiple items must be divided by &quot;\r\n&quot;, not &quot;\n&quot;.
$notify_header = &#039;&#039;;

/////////////////////////////////////////////////
// Mail: POP / APOP Before SMTP

// Do POP/APOP authentication before send mail
$smtp_auth = 0;

$pop_server = &#039;localhost&#039;;
$pop_port   = 110;
$pop_userid = &#039;&#039;;
$pop_passwd = &#039;&#039;;

// Use APOP instead of POP (If server uses)
//   Default = Auto (Use APOP if possible)
//   1       = Always use APOP
//   0       = Always use POP
// $pop_auth_use_apop = 1;

/////////////////////////////////////////////////
// Ignore list

// Regex of ignore pages
$non_list = &#039;^\:&#039;;

// Search ignored pages
$search_non_list = 1;

/////////////////////////////////////////////////
// Template setting

$auto_template_func = 1;
$auto_template_rules = array(
	&#039;((.+)\/([^\/]+))&#039; =&gt; &#039;\2/template&#039;
);

/////////////////////////////////////////////////
// Automatically add fixed heading anchor
$fixed_heading_anchor = 1;

/////////////////////////////////////////////////
// 見出しごとの編集を可能にする
// (固有のアンカーが挿入されている見出し行にのみ有効)
$fixed_heading_anchor_edit = 1;

/////////////////////////////////////////////////
// Remove the first spaces from Preformatted text
$preformat_ltrim = 1;

/////////////////////////////////////////////////
// Convert linebreaks into &lt;br /&gt;
$line_break = 0;

/////////////////////////////////////////////////
// Use date-time rules (See rules.ini.php)
$usedatetime = 1;

/////////////////////////////////////////////////
// User-Agent settings
//
// If you want to ignore embedded browsers for rich-content-wikisite,
// remove (or comment-out) all &#039;keitai&#039; settings.
//
// If you want to to ignore desktop-PC browsers for simple wikisite,
// copy keitai.ini.php to default.ini.php and customize it.

$agents = array(
// pattern: A regular-expression that matches device(browser)&#039;s name and version
// profile: A group of browsers

    // Embedded browsers (Rich-clients for PukiWiki)

	// Windows CE (Microsoft(R) Internet Explorer 5.5 for Windows(R) CE)
	// Sample: &quot;Mozilla/4.0 (compatible; MSIE 5.5; Windows CE; sigmarion3)&quot; (sigmarion, Hand-held PC)
	array(&#039;pattern&#039;=&gt;&#039;#\b(?:MSIE [5-9]).*\b(Windows CE)\b#&#039;, &#039;profile&#039;=&gt;&#039;default&#039;),

	// ACCESS &quot;NetFront&quot; / &quot;Compact NetFront&quot; and thier OEM, expects to be &quot;Mozilla/4.0&quot;
	// Sample: &quot;Mozilla/4.0 (PS2; PlayStation BB Navigator 1.0) NetFront/3.0&quot; (PlayStation BB Navigator, for SONY PlayStation 2)
	// Sample: &quot;Mozilla/4.0 (PDA; PalmOS/sony/model crdb/Revision:1.1.19) NetFront/3.0&quot; (SONY Clie series)
	// Sample: &quot;Mozilla/4.0 (PDA; SL-A300/1.0,Embedix/Qtopia/1.1.0) NetFront/3.0&quot; (SHARP Zaurus)
	array(&#039;pattern&#039;=&gt;&#039;#^(?:Mozilla/4).*\b(NetFront)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

    // Embedded browsers (Non-rich)

	// Windows CE (the others)
	// Sample: &quot;Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; 240x320 )&quot; (GFORT, NTT DoCoMo)
	array(&#039;pattern&#039;=&gt;&#039;#\b(Windows CE)\b#&#039;, &#039;profile&#039;=&gt;&#039;keitai&#039;),

	// ACCESS &quot;NetFront&quot; / &quot;Compact NetFront&quot; and thier OEM
	// Sample: &quot;Mozilla/3.0 (AveFront/2.6)&quot; (&quot;SUNTAC OnlineStation&quot;, USB-Modem for PlayStation 2)
	// Sample: &quot;Mozilla/3.0(DDIPOCKET;JRC/AH-J3001V,AH-J3002V/1.0/0100/c50)CNF/2.0&quot; (DDI Pocket: AirH&quot; Phone by JRC)
	array(&#039;pattern&#039;=&gt;&#039;#\b(NetFront)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#\b(CNF)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#\b(AveFront)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#\b(AVE-Front)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;), // The same?

	// NTT-DoCoMo, i-mode (embeded Compact NetFront) and FOMA (embedded NetFront) phones
	// Sample: &quot;DoCoMo/1.0/F501i&quot;, &quot;DoCoMo/1.0/N504i/c10/TB/serXXXX&quot; // c以降は可変
	// Sample: &quot;DoCoMo/2.0 MST_v_SH2101V(c100;TB;W22H12;serXXXX;iccxxxx)&quot; // ()の中は可変
	array(&#039;pattern&#039;=&gt;&#039;#^(DoCoMo)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Vodafone&#039;s embedded browser
	// Sample: &quot;J-PHONE/2.0/J-T03&quot;	// 2.0は&quot;ブラウザの&quot;バージョン
	// Sample: &quot;J-PHONE/4.0/J-SH51/SNxxxx SH/0001a Profile/MIDP-1.0 Configuration/CLDC-1.0 Ext-Profile/JSCL-1.1.0&quot;
	array(&#039;pattern&#039;=&gt;&#039;#^(J-PHONE)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Openwave(R) Mobile Browser (EZweb, WAP phone, etc)
	// Sample: &quot;OPWV-SDK/62K UP.Browser/6.2.0.5.136 (GUI) MMP/2.0&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(UP\.Browser)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Opera, dressing up as other embedded browsers
	// Sample: &quot;Mozilla/3.0(DDIPOCKET;KYOCERA/AH-K3001V/1.4.1.67.000000/0.1/C100) Opera 7.0&quot; (Like CNF at &#039;keitai&#039;-mode)
	array(&#039;pattern&#039;=&gt;&#039;#\b(?:DDIPOCKET|WILLCOM)\b.+\b(Opera) ([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Planetweb http://www.planetweb.com/
	// Sample: &quot;Mozilla/3.0 (Planetweb/v1.07 Build 141; SPS JP)&quot; (&quot;EGBROWSER&quot;, Web browser for PlayStation 2)
	array(&#039;pattern&#039;=&gt;&#039;#\b(Planetweb)/v([0-9\.]+)#&#039;, &#039;profile&#039;=&gt;&#039;keitai&#039;),

	// DreamPassport, Web browser for SEGA DreamCast
	// Sample: &quot;Mozilla/3.0 (DreamPassport/3.0)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(DreamPassport)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Palm &quot;Web Pro&quot; http://www.palmone.com/us/support/accessories/webpro/
	// Sample: &quot;Mozilla/4.76 [en] (PalmOS; U; WebPro)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(WebPro)\b#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// ilinx &quot;Palmscape&quot; / &quot;Xiino&quot; http://www.ilinx.co.jp/
	// Sample: &quot;Xiino/2.1SJ [ja] (v. 4.1; 153x130; c16/d)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#^(Palmscape)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#^(Xiino)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// SHARP PDA Browser (SHARP Zaurus)
	// Sample: &quot;sharp pda browser/6.1[ja](MI-E1/1.0) &quot;
	array(&#039;pattern&#039;=&gt;&#039;#^(sharp [a-z]+ browser)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// WebTV
	array(&#039;pattern&#039;=&gt;&#039;#^(WebTV)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

    // Desktop-PC browsers

	// Opera (for desktop PC, not embedded) -- See BugTrack/743 for detail
	// NOTE: Keep this pattern above MSIE and Mozilla
	// Sample: &quot;Opera/7.0 (OS; U)&quot; (not disguise)
	// Sample: &quot;Mozilla/4.0 (compatible; MSIE 5.0; OS) Opera 6.0&quot; (disguise)
	array(&#039;pattern&#039;=&gt;&#039;#\b(Opera)[/ ]([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

	// MSIE: Microsoft Internet Explorer (or something disguised as MSIE)
	// Sample: &quot;Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(MSIE) ([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

	// Mozilla Firefox
	// NOTE: Keep this pattern above Mozilla
	// Sample: &quot;Mozilla/5.0 (Windows; U; Windows NT 5.0; ja-JP; rv:1.7) Gecko/20040803 Firefox/0.9.3&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(Firefox)/([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

    	// Loose default: Including something Mozilla
	array(&#039;pattern&#039;=&gt;&#039;#^([a-zA-z0-9 ]+)/([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

	array(&#039;pattern&#039;=&gt;&#039;#^#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),	// Sentinel
);
?&gt;    </description>
    <dc:date>2010-02-04T00:40:46+09:00</dc:date>
    <utime>1265211646</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/macoto_mayu/pages/13.html">
    <title>TOP</title>
    <link>https://w.atwiki.jp/macoto_mayu/pages/13.html</link>
    <description>
      &lt;?php
// PukiWiki - Yet another WikiWikiWeb clone
// $Id: pukiwiki.ini.php,v 1.140 2006/06/11 14:35:39 henoheno Exp $
// Copyright (C)
//   2002-2006 PukiWiki Developers Team
//   2001-2002 Originally written by yu-ji
// License: GPL v2 or (at your option) any later version
//
// PukiWiki main setting file

/////////////////////////////////////////////////
// Functionality settings

// PKWK_OPTIMISE - Ignore verbose but understandable checking and warning
//   If you end testing this PukiWiki, set &#039;1&#039;.
//   If you feel in trouble about this PukiWiki, set &#039;0&#039;.
if (! defined(&#039;PKWK_OPTIMISE&#039;))
	define(&#039;PKWK_OPTIMISE&#039;, 0);

/////////////////////////////////////////////////
// Security settings

// PKWK_READONLY - Prohibits editing and maintain via WWW
//   NOTE: Counter-related functions will work now (counter, attach count, etc)
if (! defined(&#039;PKWK_READONLY&#039;))
	define(&#039;PKWK_READONLY&#039;, 0); // 0 or 1

// PKWK_SAFE_MODE - Prohibits some unsafe(but compatible) functions 
if (! defined(&#039;PKWK_SAFE_MODE&#039;))
	define(&#039;PKWK_SAFE_MODE&#039;, 1);
//	define(&#039;PKWK_SAFE_MODE&#039;, 0);

// PKWK_DISABLE_INLINE_IMAGE_FROM_URI - Disallow using inline-image-tag for URIs
//   Inline-image-tag for URIs may allow leakage of Wiki readers&#039; information
//   (in short, &#039;Web bug&#039;) or external malicious CGI (looks like an image&#039;s URL)
//   attack to Wiki readers, but easy way to show images.
if (! defined(&#039;PKWK_DISABLE_INLINE_IMAGE_FROM_URI&#039;))
	define(&#039;PKWK_DISABLE_INLINE_IMAGE_FROM_URI&#039;, 1);
//	define(&#039;PKWK_DISABLE_INLINE_IMAGE_FROM_URI&#039;, 0);

// PKWK_QUERY_STRING_MAX
//   Max length of GET method, prohibits some worm attack ASAP
//   NOTE: Keep (page-name + attach-file-name) &lt;= PKWK_QUERY_STRING_MAX
define(&#039;PKWK_QUERY_STRING_MAX&#039;, 1024); // Bytes, 0 = OFF
// define(&#039;PKWK_QUERY_STRING_MAX&#039;, 640); // Bytes, 0 = OFF

/////////////////////////////////////////////////
// Experimental features

// Multiline plugin hack (See BugTrack2/84)
// EXAMPLE(with a known BUG):
//   #plugin(args1,args2,...,argsN){{
//   argsN+1
//   argsN+1
//   #memo(foo)
//   argsN+1
//   }}
//   #memo(This makes &#039;#memo(foo)&#039; to this)
// define(&#039;PKWKEXP_DISABLE_MULTILINE_PLUGIN_HACK&#039;, 1); // 1 = Disabled
define(&#039;PKWKEXP_DISABLE_MULTILINE_PLUGIN_HACK&#039;,0); // 1 = Disabled

/////////////////////////////////////////////////
// Language / Encoding settings

// LANG - Internal content encoding (&#039;en&#039;, &#039;ja&#039;, or ...)
define(&#039;LANG&#039;, &#039;ja&#039;);

// UI_LANG - Content encoding for buttons, menus,  etc
define(&#039;UI_LANG&#039;, LANG); // &#039;en&#039; for Internationalized wikisite

/////////////////////////////////////////////////
// Directory settings I (ended with &#039;/&#039;, permission &#039;777&#039;)

// You may hide these directories (from web browsers)
// by setting DATA_HOME at index.php.

define(&#039;DATA_DIR&#039;,      DATA_HOME . &#039;wiki/&#039;     ); // Latest wiki texts
define(&#039;DIFF_DIR&#039;,      DATA_HOME . &#039;diff/&#039;     ); // Latest diffs
define(&#039;BACKUP_DIR&#039;,    DATA_HOME . &#039;backup/&#039;   ); // Backups
define(&#039;CACHE_DIR&#039;,     DATA_HOME . &#039;cache/&#039;    ); // Some sort of caches
define(&#039;UPLOAD_DIR&#039;,    DATA_HOME . &#039;attach/&#039;   ); // Attached files and logs
define(&#039;COUNTER_DIR&#039;,   DATA_HOME . &#039;counter/&#039;  ); // Counter plugin&#039;s counts
define(&#039;TRACKBACK_DIR&#039;, DATA_HOME . &#039;trackback/&#039;); // TrackBack logs
define(&#039;PLUGIN_DIR&#039;,    DATA_HOME . &#039;plugin/&#039;   ); // Plugin directory

// 20070716 Spam_Filter ///////////////////////////////////////////////

//define(&#039;SPAM_FILTER_COND&#039;, &#039;#useragent() or #filename() or #atag() or #ngreg() or (#onlyeng() and (#urlnum() or #uaunknown())) or #urlbl()&#039;);
define(&#039;SPAM_FILTER_COND&#039;, &#039;#ipcountry() or #urlnsbl() or #useragent() or #filename() or #atag() or #ngreg() or #onlyeng() or (#urlnum() and #uaunknown())&#039;);
//define(&#039;SPAM_FILTER_COND&#039;, &#039;#ipcountry() or #urlnsbl() or #useragent() or #filename() or #atag() or #ngreg() or (#onlyeng() and (#urlnum() or #uaunknown())) or #urlbl() or #ipbl()&#039;);

define(&#039;PLUGIN_REF_URL_GET_IMAGE_SIZE&#039;, FALSE);
define(&#039;SPAM_FILTER_ATAG_REG&#039;, &#039;/\[HTTP:|&lt;\/a&gt;|\[\/url\]/i&#039;);

/////////////////////////////////////////////////

/////////////////////////////////////////////////
// Directory settings II (ended with &#039;/&#039;)

// Skins / Stylesheets
define(&#039;SKIN_DIR&#039;, &#039;skin/&#039;);
// Skin files (SKIN_DIR/*.skin.php) are needed at
// ./DATAHOME/SKIN_DIR from index.php, but
// CSSs(*.css) and JavaScripts(*.js) are needed at
// ./SKIN_DIR from index.php.

// Static image files
define(&#039;IMAGE_DIR&#039;, &#039;image/&#039;);
// Keep this directory shown via web browsers like
// ./IMAGE_DIR from index.php.

/////////////////////////////////////////////////
// Local time setting

switch (LANG) { // or specifiy one
case &#039;ja&#039;:
	define(&#039;ZONE&#039;, &#039;JST&#039;);
	define(&#039;ZONETIME&#039;, 9 * 3600); // JST = GMT + 9
	break;
default  :
	define(&#039;ZONE&#039;, &#039;GMT&#039;);
	define(&#039;ZONETIME&#039;, 0);
	break;
}

/////////////////////////////////////////////////
// Title of your Wikisite (Name this)
// Also used as RSS feed&#039;s channel name etc
$page_title = &#039;Belle Isle Wiki&#039;;

// Specify PukiWiki URL (default: auto)
$script = &#039;http://example.com/pukiwiki/&#039;;

// Shorten $script: Cut its file name (default: not cut)
//$script_directory_index = &#039;index.php&#039;;
$script_directory_index = &#039;index.php&#039;;

// Site admin&#039;s name (CHANGE THIS)
$modifier = &#039;MonMon&#039;;

// Site admin&#039;s Web page (CHANGE THIS)
$modifierlink = &#039;http://example.com/pukiwiki/&#039;;

// Default page name
// $defaultpage  = &#039;FrontPage&#039;;     // Top / Default page
$defaultpage  = &#039;Belle Isle Wiki&#039;;     // Top / Default page
$whatsnew     = &#039;RecentChanges&#039;; // Modified page list
$whatsdeleted = &#039;RecentDeleted&#039;; // Removeed page list
$interwiki    = &#039;InterWikiName&#039;; // Set InterWiki definition here
$menubar      = &#039;MenuBar&#039;;       // Menu

/////////////////////////////////////////////////
// Change default Document Type Definition

// Some web browser&#039;s bug, and / or Java apprets may needs not-Strict DTD.
// Some plugin (e.g. paint) set this PKWK_DTD_XHTML_1_0_TRANSITIONAL.

//$pkwk_dtd = PKWK_DTD_XHTML_1_1; // Default
//$pkwk_dtd = PKWK_DTD_XHTML_1_0_STRICT;
//$pkwk_dtd = PKWK_DTD_XHTML_1_0_TRANSITIONAL;
//$pkwk_dtd = PKWK_DTD_HTML_4_01_STRICT;
//$pkwk_dtd = PKWK_DTD_HTML_4_01_TRANSITIONAL;

/////////////////////////////////////////////////
// Always output &quot;nofollow,noindex&quot; attribute

$nofollow = 0; // 1 = Try hiding from search engines

/////////////////////////////////////////////////

// PKWK_ALLOW_JAVASCRIPT - Allow / Prohibit using JavaScript
//define(&#039;PKWK_ALLOW_JAVASCRIPT&#039;, 0);
define(&#039;PKWK_ALLOW_JAVASCRIPT&#039;, 1);

/////////////////////////////////////////////////
// TrackBack feature

// Enable Trackback
$trackback = 0;

// Show trackbacks with an another window (using JavaScript)
$trackback_javascript = 0;

/////////////////////////////////////////////////
// Bodycache feature

// enable bodycache or not
// default : true
$enable_bodycache = true; 

// use bodycache as default. If it&#039;s false, 
// #bodycache(enable) is required per page.
// default : true
$enable_bodycache_default = true; 

// If these (block) plugins are contained in page, bodycache will be disabled.
// Users can increase this plugin list to control bodycache.
// default : array( &#039;ls2&#039;, &#039;pcomment&#039;, &#039;include&#039; );
// $bodycache_disable_plugins = array( &#039;ls2&#039;, &#039;pcomment&#039;, &#039;include&#039; );
// $bodycache_disable_plugins = array( &#039;ls2&#039;, &#039;pcomment&#039;, &#039;include&#039;, &#039;sitesearch&#039;, &#039;table_edit&#039;, &#039;article&#039; );
$bodycache_disable_plugins = array( &#039;ls2&#039;, &#039;areaedit&#039; );

/////////////////////////////////////////////////


/////////////////////////////////////////////////
// Referer list feature
$referer = 0;

/////////////////////////////////////////////////
// _Disable_ WikiName auto-linking
// $nowikiname = 0;
$nowikiname = 1;

/////////////////////////////////////////////////
// AutoLink feature

// AutoLink minimum length of page name
$autolink = 0; // Bytes, 0 = OFF (try 8)

/////////////////////////////////////////////////
// Enable Freeze / Unfreeze feature
$function_freeze = 1;

/////////////////////////////////////////////////
// Allow to use &#039;Do not change timestamp&#039; checkbox
// (0:Disable, 1:For everyone,  2:Only for the administrator)
// $notimeupdate = 1;
$notimeupdate = 0;

/////////////////////////////////////////////////
// Admin password for this Wikisite

// Default: always fail
$adminpass = &#039;{x-php-md5}!&#039;;

// Sample:
//$adminpass = &#039;pass&#039;; // Cleartext
//$adminpass = &#039;{x-php-md5}1a1dc91c907325c69271ddf0c944bc72&#039;; // PHP md5()  &#039;pass&#039;
//$adminpass = &#039;{CRYPT}$1$AR.Gk94x$uCe8fUUGMfxAPH83psCZG/&#039;;   // LDAP CRYPT &#039;pass&#039;
//$adminpass = &#039;{MD5}Gh3JHJBzJcaScd3wyUS8cg==&#039;;               // LDAP MD5   &#039;pass&#039;
//$adminpass = &#039;{SMD5}o7lTdtHFJDqxFOVX09C8QnlmYmZnd2Qx&#039;;      // LDAP SMD5  &#039;pass&#039;

/////////////////////////////////////////////////
// Page-reading feature settings
// (Automatically creating pronounce datas, for Kanji-included page names,
//  to show sorted page-list correctly)

// Enable page-reading feature by calling ChaSen or KAKASHI command
// (1:Enable, 0:Disable)
$pagereading_enable = 0;

// Specify converter as ChaSen(&#039;chasen&#039;) or KAKASI(&#039;kakasi&#039;) or None(&#039;none&#039;)
$pagereading_kanji2kana_converter = &#039;none&#039;;

// Specify Kanji encoding to pass data between PukiWiki and the converter
$pagereading_kanji2kana_encoding = &#039;EUC&#039;; // Default for Unix
//$pagereading_kanji2kana_encoding = &#039;SJIS&#039;; // Default for Windows

// Absolute path of the converter (ChaSen)
$pagereading_chasen_path = &#039;/usr/local/bin/chasen&#039;;
//$pagereading_chasen_path = &#039;c:\progra~1\chasen21\chasen.exe&#039;;

// Absolute path of the converter (KAKASI)
$pagereading_kakasi_path = &#039;/usr/local/bin/kakasi&#039;;
//$pagereading_kakasi_path = &#039;c:\kakasi\bin\kakasi.exe&#039;;

// Page name contains pronounce data (written by the converter)
$pagereading_config_page = &#039;:config/PageReading&#039;;

// Page name of default pronouncing dictionary, used when converter = &#039;none&#039;
$pagereading_config_dict = &#039;:config/PageReading/dict&#039;;

/////////////////////////////////////////////////
// User definition
$auth_users = array(
	// Username =&gt; password
	&#039;foo&#039;	=&gt; &#039;foo_passwd&#039;, // Cleartext
	&#039;bar&#039;	=&gt; &#039;{x-php-md5}f53ae779077e987718cc285b14dfbe86&#039;, // PHP md5() &#039;bar_passwd&#039;
	&#039;hoge&#039;	=&gt; &#039;{SMD5}OzJo/boHwM4q5R+g7LCOx2xGMkFKRVEx&#039;,      // LDAP SMD5 &#039;hoge_passwd&#039;
);

/////////////////////////////////////////////////
// Authentication method

$auth_method_type	= &#039;pagename&#039;;	// By Page name
//$auth_method_type	= &#039;contents&#039;;	// By Page contents

/////////////////////////////////////////////////
// Read auth (0:Disable, 1:Enable)
$read_auth = 0;

$read_auth_pages = array(
	// Regex		   Username
	&#039;#HogeHoge#&#039;		=&gt; &#039;hoge&#039;,
	&#039;#(NETABARE|NetaBare)#&#039;	=&gt; &#039;foo,bar,hoge&#039;,
);

/////////////////////////////////////////////////
// Edit auth (0:Disable, 1:Enable)
$edit_auth = 0;

$edit_auth_pages = array(
	// Regex		   Username
	&#039;#BarDiary#&#039;		=&gt; &#039;bar&#039;,
	&#039;#HogeHoge#&#039;		=&gt; &#039;hoge&#039;,
	&#039;#(NETABARE|NetaBare)#&#039;	=&gt; &#039;foo,bar,hoge&#039;,
);

/////////////////////////////////////////////////
// Search auth
// 0: Disabled (Search read-prohibited page contents)
// 1: Enabled  (Search only permitted pages for the user)
$search_auth = 0;

/////////////////////////////////////////////////
// $whatsnew: Max number of RecentChanges
$maxshow = 60;

// $whatsdeleted: Max number of RecentDeleted
// (0 = Disabled)
$maxshow_deleted = 60;

/////////////////////////////////////////////////
// Page names can&#039;t be edit via PukiWiki
$cantedit = array( $whatsnew, $whatsdeleted );

/////////////////////////////////////////////////
// HTTP: Output Last-Modified header
// $lastmod = 0;
$lastmod = 1;

/////////////////////////////////////////////////
// Date format
$date_format = &#039;Y-m-d&#039;;

// Time format
$time_format = &#039;H:i:s&#039;;

/////////////////////////////////////////////////
// Max number of RSS feed
$rss_max = 15;

/////////////////////////////////////////////////
// Backup related settings

// Enable backup
$do_backup = 1;

// When a page had been removed, remove its backup too?
$del_backup = 0;

// Bacukp interval and generation
$cycle  =   0; // Wait N hours between backup (0 = no wait)
$maxage = 50; // Stock latest N backups

// NOTE: $cycle x $maxage / 24 = Minimum days to lost your data
//          3   x   120   / 24 = 15

// Splitter of backup data (NOTE: Too dangerous to change)
define(&#039;PKWK_SPLITTER&#039;, &#039;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&#039;);

/////////////////////////////////////////////////
// Command execution per update

define(&#039;PKWK_UPDATE_EXEC&#039;, &#039;&#039;);

// Sample: Namazu (Search engine)
//$target     = &#039;/var/www/wiki/&#039;;
//$mknmz      = &#039;/usr/bin/mknmz&#039;;
//$output_dir = &#039;/var/lib/namazu/index/&#039;;
//define(&#039;PKWK_UPDATE_EXEC&#039;,
//	$mknmz . &#039; --media-type=text/pukiwiki&#039; .
//	&#039; -O &#039; . $output_dir . &#039; -L ja -c -K &#039; . $target);

/////////////////////////////////////////////////
// HTTP proxy setting (for TrackBack etc)

// Use HTTP proxy server to get remote data
$use_proxy = 0;

$proxy_host = &#039;proxy.example.com&#039;;
$proxy_port = 8080;

// Do Basic authentication
$need_proxy_auth = 0;
$proxy_auth_user = &#039;username&#039;;
$proxy_auth_pass = &#039;password&#039;;

// Hosts that proxy server will not be needed
$no_proxy = array(
	&#039;localhost&#039;,	// localhost
	&#039;127.0.0.0/8&#039;,	// loopback
//	&#039;10.0.0.0/8&#039;	// private class A
//	&#039;172.16.0.0/12&#039;	// private class B
//	&#039;192.168.0.0/16&#039;	// private class C
//	&#039;no-proxy.com&#039;,
);

////////////////////////////////////////////////
// Mail related settings

// Send mail per update of pages
$notify = 0;

// Send diff only
$notify_diff_only = 1;

// SMTP server (Windows only. Usually specified at php.ini)
$smtp_server = &#039;localhost&#039;;

// Mail recipient (To:) and sender (From:)
$notify_to   = &#039;to@example.com&#039;;	// To:
$notify_from = &#039;from@example.com&#039;;	// From:

// Subject: ($page = Page name wll be replaced)
$notify_subject = &#039;[PukiWiki] $page&#039;;

// Mail header
// NOTE: Multiple items must be divided by &quot;\r\n&quot;, not &quot;\n&quot;.
$notify_header = &#039;&#039;;

/////////////////////////////////////////////////
// Mail: POP / APOP Before SMTP

// Do POP/APOP authentication before send mail
$smtp_auth = 0;

$pop_server = &#039;localhost&#039;;
$pop_port   = 110;
$pop_userid = &#039;&#039;;
$pop_passwd = &#039;&#039;;

// Use APOP instead of POP (If server uses)
//   Default = Auto (Use APOP if possible)
//   1       = Always use APOP
//   0       = Always use POP
// $pop_auth_use_apop = 1;

/////////////////////////////////////////////////
// Ignore list

// Regex of ignore pages
$non_list = &#039;^\:&#039;;

// Search ignored pages
$search_non_list = 1;

/////////////////////////////////////////////////
// Template setting

$auto_template_func = 1;
$auto_template_rules = array(
	&#039;((.+)\/([^\/]+))&#039; =&gt; &#039;\2/template&#039;
);

/////////////////////////////////////////////////
// Automatically add fixed heading anchor
$fixed_heading_anchor = 1;

/////////////////////////////////////////////////
// 見出しごとの編集を可能にする
// (固有のアンカーが挿入されている見出し行にのみ有効)
$fixed_heading_anchor_edit = 1;

/////////////////////////////////////////////////
// Remove the first spaces from Preformatted text
$preformat_ltrim = 1;

/////////////////////////////////////////////////
// Convert linebreaks into &lt;br /&gt;
$line_break = 0;

/////////////////////////////////////////////////
// Use date-time rules (See rules.ini.php)
$usedatetime = 1;

/////////////////////////////////////////////////
// User-Agent settings
//
// If you want to ignore embedded browsers for rich-content-wikisite,
// remove (or comment-out) all &#039;keitai&#039; settings.
//
// If you want to to ignore desktop-PC browsers for simple wikisite,
// copy keitai.ini.php to default.ini.php and customize it.

$agents = array(
// pattern: A regular-expression that matches device(browser)&#039;s name and version
// profile: A group of browsers

    // Embedded browsers (Rich-clients for PukiWiki)

	// Windows CE (Microsoft(R) Internet Explorer 5.5 for Windows(R) CE)
	// Sample: &quot;Mozilla/4.0 (compatible; MSIE 5.5; Windows CE; sigmarion3)&quot; (sigmarion, Hand-held PC)
	array(&#039;pattern&#039;=&gt;&#039;#\b(?:MSIE [5-9]).*\b(Windows CE)\b#&#039;, &#039;profile&#039;=&gt;&#039;default&#039;),

	// ACCESS &quot;NetFront&quot; / &quot;Compact NetFront&quot; and thier OEM, expects to be &quot;Mozilla/4.0&quot;
	// Sample: &quot;Mozilla/4.0 (PS2; PlayStation BB Navigator 1.0) NetFront/3.0&quot; (PlayStation BB Navigator, for SONY PlayStation 2)
	// Sample: &quot;Mozilla/4.0 (PDA; PalmOS/sony/model crdb/Revision:1.1.19) NetFront/3.0&quot; (SONY Clie series)
	// Sample: &quot;Mozilla/4.0 (PDA; SL-A300/1.0,Embedix/Qtopia/1.1.0) NetFront/3.0&quot; (SHARP Zaurus)
	array(&#039;pattern&#039;=&gt;&#039;#^(?:Mozilla/4).*\b(NetFront)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

    // Embedded browsers (Non-rich)

	// Windows CE (the others)
	// Sample: &quot;Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; 240x320 )&quot; (GFORT, NTT DoCoMo)
	array(&#039;pattern&#039;=&gt;&#039;#\b(Windows CE)\b#&#039;, &#039;profile&#039;=&gt;&#039;keitai&#039;),

	// ACCESS &quot;NetFront&quot; / &quot;Compact NetFront&quot; and thier OEM
	// Sample: &quot;Mozilla/3.0 (AveFront/2.6)&quot; (&quot;SUNTAC OnlineStation&quot;, USB-Modem for PlayStation 2)
	// Sample: &quot;Mozilla/3.0(DDIPOCKET;JRC/AH-J3001V,AH-J3002V/1.0/0100/c50)CNF/2.0&quot; (DDI Pocket: AirH&quot; Phone by JRC)
	array(&#039;pattern&#039;=&gt;&#039;#\b(NetFront)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#\b(CNF)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#\b(AveFront)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#\b(AVE-Front)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;), // The same?

	// NTT-DoCoMo, i-mode (embeded Compact NetFront) and FOMA (embedded NetFront) phones
	// Sample: &quot;DoCoMo/1.0/F501i&quot;, &quot;DoCoMo/1.0/N504i/c10/TB/serXXXX&quot; // c以降は可変
	// Sample: &quot;DoCoMo/2.0 MST_v_SH2101V(c100;TB;W22H12;serXXXX;iccxxxx)&quot; // ()の中は可変
	array(&#039;pattern&#039;=&gt;&#039;#^(DoCoMo)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Vodafone&#039;s embedded browser
	// Sample: &quot;J-PHONE/2.0/J-T03&quot;	// 2.0は&quot;ブラウザの&quot;バージョン
	// Sample: &quot;J-PHONE/4.0/J-SH51/SNxxxx SH/0001a Profile/MIDP-1.0 Configuration/CLDC-1.0 Ext-Profile/JSCL-1.1.0&quot;
	array(&#039;pattern&#039;=&gt;&#039;#^(J-PHONE)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Openwave(R) Mobile Browser (EZweb, WAP phone, etc)
	// Sample: &quot;OPWV-SDK/62K UP.Browser/6.2.0.5.136 (GUI) MMP/2.0&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(UP\.Browser)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Opera, dressing up as other embedded browsers
	// Sample: &quot;Mozilla/3.0(DDIPOCKET;KYOCERA/AH-K3001V/1.4.1.67.000000/0.1/C100) Opera 7.0&quot; (Like CNF at &#039;keitai&#039;-mode)
	array(&#039;pattern&#039;=&gt;&#039;#\b(?:DDIPOCKET|WILLCOM)\b.+\b(Opera) ([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Planetweb http://www.planetweb.com/
	// Sample: &quot;Mozilla/3.0 (Planetweb/v1.07 Build 141; SPS JP)&quot; (&quot;EGBROWSER&quot;, Web browser for PlayStation 2)
	array(&#039;pattern&#039;=&gt;&#039;#\b(Planetweb)/v([0-9\.]+)#&#039;, &#039;profile&#039;=&gt;&#039;keitai&#039;),

	// DreamPassport, Web browser for SEGA DreamCast
	// Sample: &quot;Mozilla/3.0 (DreamPassport/3.0)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(DreamPassport)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// Palm &quot;Web Pro&quot; http://www.palmone.com/us/support/accessories/webpro/
	// Sample: &quot;Mozilla/4.76 [en] (PalmOS; U; WebPro)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(WebPro)\b#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// ilinx &quot;Palmscape&quot; / &quot;Xiino&quot; http://www.ilinx.co.jp/
	// Sample: &quot;Xiino/2.1SJ [ja] (v. 4.1; 153x130; c16/d)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#^(Palmscape)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),
	array(&#039;pattern&#039;=&gt;&#039;#^(Xiino)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// SHARP PDA Browser (SHARP Zaurus)
	// Sample: &quot;sharp pda browser/6.1[ja](MI-E1/1.0) &quot;
	array(&#039;pattern&#039;=&gt;&#039;#^(sharp [a-z]+ browser)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

	// WebTV
	array(&#039;pattern&#039;=&gt;&#039;#^(WebTV)/([0-9\.]+)#&#039;,	&#039;profile&#039;=&gt;&#039;keitai&#039;),

    // Desktop-PC browsers

	// Opera (for desktop PC, not embedded) -- See BugTrack/743 for detail
	// NOTE: Keep this pattern above MSIE and Mozilla
	// Sample: &quot;Opera/7.0 (OS; U)&quot; (not disguise)
	// Sample: &quot;Mozilla/4.0 (compatible; MSIE 5.0; OS) Opera 6.0&quot; (disguise)
	array(&#039;pattern&#039;=&gt;&#039;#\b(Opera)[/ ]([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

	// MSIE: Microsoft Internet Explorer (or something disguised as MSIE)
	// Sample: &quot;Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(MSIE) ([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

	// Mozilla Firefox
	// NOTE: Keep this pattern above Mozilla
	// Sample: &quot;Mozilla/5.0 (Windows; U; Windows NT 5.0; ja-JP; rv:1.7) Gecko/20040803 Firefox/0.9.3&quot;
	array(&#039;pattern&#039;=&gt;&#039;#\b(Firefox)/([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

    	// Loose default: Including something Mozilla
	array(&#039;pattern&#039;=&gt;&#039;#^([a-zA-z0-9 ]+)/([0-9\.]+)\b#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),

	array(&#039;pattern&#039;=&gt;&#039;#^#&#039;,	&#039;profile&#039;=&gt;&#039;default&#039;),	// Sentinel
);
?&gt;    </description>
    <dc:date>2010-02-03T23:48:19+09:00</dc:date>
    <utime>1265208499</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/macoto_mayu/pages/12.html">
    <title>プラグイン/人気商品一覧</title>
    <link>https://w.atwiki.jp/macoto_mayu/pages/12.html</link>
    <description>
      * 人気商品一覧
@wikiのwikiモードでは
 #price_list(カテゴリ名)
と入力することで、あるカテゴリの売れ筋商品のリストを表示することができます。

カテゴリには以下のキーワードがご利用できます。
|キーワード|表示される内容|
|ps3|PlayStation3|
|ps2|PlayStation3|
|psp|PSP|
|wii|Wii|
|xbox|XBOX|
|nds|Nintendo DS|
|desctop-pc|デスクトップパソコン|
|note-pc|ノートパソコン|
|mp3player|デジタルオーディオプレイヤー|
|kaden|家電|
|aircon|エアコン|
|camera|カメラ|
|game-toy|ゲーム・おもちゃ全般|
|all|指定無し|

空白の場合はランダムな商品が表示されます。

※このプラグインは[[価格比較サイト@PRICE&gt;&gt;http://atprice.jp]]のデータを利用しています。

-----

たとえば、
 #price_list(game-toy)
と入力すると以下のように表示されます。

ゲーム・おもちゃ全般の売れ筋商品
#price_list(game-toy)

ノートパソコンの売れ筋商品
#price_list(game-toy)

人気商品リスト
#price_list()
    </description>
    <dc:date>2010-02-03T22:39:49+09:00</dc:date>
    <utime>1265204389</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/macoto_mayu/pages/11.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/macoto_mayu/pages/11.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_60_ja.html


-----
たとえば、#comment() と入力すると以下のように表示されます。

#comment    </description>
    <dc:date>2010-02-03T22:39:49+09:00</dc:date>
    <utime>1265204389</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/macoto_mayu/pages/10.html">
    <title>プラグイン/関連ブログ</title>
    <link>https://w.atwiki.jp/macoto_mayu/pages/10.html</link>
    <description>
      * 関連ブログ
@wikiのwikiモードでは
 #bf(興味のある単語)
と入力することで、あるキーワードに関連するブログ一覧を表示することができます

詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_161_ja.html

-----


たとえば、#bf(ゲーム)と入力すると以下のように表示されます。


#bf(ゲーム)
    </description>
    <dc:date>2010-02-03T22:39:49+09:00</dc:date>
    <utime>1265204389</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/macoto_mayu/pages/9.html">
    <title>プラグイン</title>
    <link>https://w.atwiki.jp/macoto_mayu/pages/9.html</link>
    <description>
      @wikiにはいくつかの便利なプラグインがあります。

-----


#ls

-----

これ以外のプラグインについては@wikiガイドをご覧ください
=&gt;http://atwiki.jp/guide/
    </description>
    <dc:date>2010-02-03T22:39:49+09:00</dc:date>
    <utime>1265204389</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/macoto_mayu/pages/8.html">
    <title>プラグイン/動画(Youtube)</title>
    <link>https://w.atwiki.jp/macoto_mayu/pages/8.html</link>
    <description>
      * 動画(youtube)
@wikiのwikiモードでは
 #video(動画のURL)
と入力することで、動画を貼り付けることが出来ます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_209_ja.html

また動画のURLはYoutubeのURLをご利用ください。
＝＞http://www.youtube.com/

-----


たとえば、#video(http://youtube.com/watch?v=kTV1CcS53JQ)と入力すると以下のように表示されます。


#video(http://youtube.com/watch?v=kTV1CcS53JQ)

    </description>
    <dc:date>2010-02-03T22:39:49+09:00</dc:date>
    <utime>1265204389</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/macoto_mayu/pages/7.html">
    <title>プラグイン/アーカイブ</title>
    <link>https://w.atwiki.jp/macoto_mayu/pages/7.html</link>
    <description>
      * アーカイブ
@wikiのwikiモードでは
 #archive_log()
と入力することで、特定のウェブページを保存しておくことができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/25_171_ja.html


-----


たとえば、#archive_log()と入力すると以下のように表示されます。
保存したいURLとサイト名を入力して&quot;アーカイブログ&quot;をクリックしてみよう


#archive_log()
    </description>
    <dc:date>2010-02-03T22:39:49+09:00</dc:date>
    <utime>1265204389</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/macoto_mayu/pages/6.html">
    <title>プラグイン/編集履歴</title>
    <link>https://w.atwiki.jp/macoto_mayu/pages/6.html</link>
    <description>
      * 更新履歴
@wikiのwikiモードでは
 #recent(数字)
と入力することで、wikiのページ更新履歴を表示することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_117_ja.html


-----


たとえば、#recent(20)と入力すると以下のように表示されます。


#recent(20)
    </description>
    <dc:date>2010-02-03T22:39:49+09:00</dc:date>
    <utime>1265204389</utime>
  </item>
  </rdf:RDF>
