-
Notifications
You must be signed in to change notification settings - Fork 16
/
rules.ini.dist.php
58 lines (54 loc) · 1.92 KB
/
rules.ini.dist.php
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
<?php
// PukiWiki Plus! - Yet another WikiWikiWeb clone.
// $Id: rules.ini.php,v 1.9.5 2005/10/02 16:15:05 miko Exp $
// Copyright (C)
// 2005 Customized/Patched by Miko.Hoshina
// 2003-2005 PukiWiki Developers Team
// 2001-2002 Originally written by yu-ji
// License: GPL v2 or (at your option) any later version
//
// PukiWiki setting file
if (!defined('DATA_HOME')) { exit; }
/////////////////////////////////////////////////
// フィルタルール
//
// 正規表現で記述してください。?(){}-*./+\$^|など
// は \? のようにクォートしてください。
// 前後に必ず / を含めてください。行頭指定は ^ を頭に。
// 行末指定は $ を後ろに。
//
/////////////////////////////////////////////////
// フィルタルール(直接ソースを置換)
$filter_rules = array(
"^(TITLE):(.*)$" => "",
"#tboff(.*)$" => "",
"#skin(.*)$" => "",
);
/////////////////////////////////////////////////
// 日時置換ルール (閲覧時に置換)
// $usedatetime = 1なら日時置換ルールが適用されます
// 必要のない方は $usedatetimeを0にしてください。
$datetime_rules = array(
'&_now;' => format_date(UTIME),
'&_date;' => get_date($date_format),
'&_time;' => get_date($time_format),
);
/////////////////////////////////////////////////
// ユーザ定義ルール(保存時に置換)
// 正規表現で記述してください。?(){}-*./+\$^|など
// は \? のようにクォートしてください。
// 前後に必ず / を含めてください。行頭指定は ^ を頭に。
// 行末指定は $ を後ろに。
//
$str_rules = array(
'now\?' => format_date(UTIME),
'date\?' => get_date($date_format),
'time\?' => get_date($time_format),
'&now;' => format_date(UTIME),
'&date;' => get_date($date_format),
'&time;' => get_date($time_format),
'&page;' => get_short_pagename($vars['page']),
'&fpage;' => $vars['page'],
'&t;' => "\t",
);
?>