• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisiondf9ce79bfaf04ae096607a9d7062fa2b109255e5 (tree)
Zeit2018-03-28 00:01:01
Autorumorigu <umorigu@gmai...>
Commiterumorigu

Log Message

Now PukiWiki version is "1.5.2"

Ändern Zusammenfassung

Diff

--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -1,9 +1,9 @@
11 名前
22 PukiWiki - 自由にページを追加・削除・編集できるWebページ構築スクリプト
33
4- Version 1.5.1
4+ Version 1.5.2
55 Copyright
6- 2001-2016 PukiWiki Development Team
6+ 2001-2018 PukiWiki Development Team
77 2001-2002 yu-ji (Based on PukiWiki 1.3 by yu-ji)
88 License: GPL version 2 or (at your option) any later version
99
--- a/README.en.txt
+++ b/README.en.txt
@@ -6,9 +6,9 @@ NAME
66 PukiWiki - PHP scripts for Web pages which can be edited by anyone,
77 at any time, from anywhere.
88
9- PukiWiki 1.5.1
9+ PukiWiki 1.5.2
1010 Copyright
11- 2001-2016 PukiWiki Developement Team
11+ 2001-2018 PukiWiki Developement Team
1212 2001-2002 yu-ji (Based on PukiWiki 1.3 by yu-ji)
1313 License: GPL version 2 or (at your option) any later version
1414 http://pukiwiki.osdn.jp/
--- a/README.txt
+++ b/README.txt
@@ -1,9 +1,9 @@
11 名前
22 PukiWiki - 自由にページを追加・削除・編集できるWebページ構築スクリプト
33
4- Version 1.5.1
4+ Version 1.5.2
55 Copyright
6- 2001-2016 PukiWiki Development Team
6+ 2001-2018 PukiWiki Development Team
77 2001-2002 yu-ji (Based on PukiWiki 1.3 by yu-ji)
88 License: GPL version 2 or (at your option) any later version
99
--- a/UPDATING.en.txt
+++ b/UPDATING.en.txt
@@ -12,10 +12,17 @@ http://pukiwiki.osdn.jp/?PukiWiki/Download
1212 INCOMPATIBILITY INFORMATION BETWEEN RELEASES
1313 ============================================
1414
15+PukiWiki 1.5.2: Incompatibility from PukiWiki 1.5.1
16+
17+ 1. CSS file "skin/pukiwiki.css.php" has been renamed to "skin/pukiwiki.css".
18+ (See BugTrack/2448, BugTrack/2367)
19+
20+
1521 PukiWiki 1.5.1: Incompatibility from PukiWiki 1.5.0
1622
17- 1. TrackBack implimentation and 'referer' function had been removed.
18- (See BugTrack2/62)
23+ 1. Default authentication method from AUTH_TYPE_BASIC to
24+ AUTY_TYPE_FORM.
25+ (See PukiWiki/Authentication)
1926
2027
2128 PukiWiki 1.5.0: Incompatibility from PukiWiki 1.4.7_notb
--- a/UPDATING.txt
+++ b/UPDATING.txt
@@ -13,6 +13,11 @@ http://pukiwiki.osdn.jp/?PukiWiki/Download
1313 リリース間の互換性に関する記述
1414 ==============================
1515
16+PukiWiki 1.5.2: PukiWiki 1.5.1 との非互換点
17+
18+ 1. CSSファイル skin/pukiwiki.css.php が skin/pukiwiki.css に変更されました。
19+
20+
1621 PukiWiki 1.5.1: PukiWiki 1.5.0 との非互換点
1722
1823 1. PukiWiki内でアクセス制限を行う際のデフォルト認証方式がBasic認証から
--- a/lib/init.php
+++ b/lib/init.php
@@ -2,7 +2,7 @@
22 // PukiWiki - Yet another WikiWikiWeb clone.
33 // init.php
44 // Copyright
5-// 2002-2017 PukiWiki Development Team
5+// 2002-2018 PukiWiki Development Team
66 // 2001-2002 Originally written by yu-ji
77 // License: GPL v2 or (at your option) any later version
88 //
@@ -10,10 +10,10 @@
1010
1111 // PukiWiki version / Copyright / Licence
1212
13-define('S_VERSION', '1.5.1');
13+define('S_VERSION', '1.5.2');
1414 define('S_COPYRIGHT',
1515 '<strong>PukiWiki ' . S_VERSION . '</strong>' .
16- ' &copy; 2001-2016' .
16+ ' &copy; 2001-2018' .
1717 ' <a href="http://pukiwiki.osdn.jp/">PukiWiki Development Team</a>'
1818 );
1919
@@ -454,4 +454,3 @@ $line_rules = array_merge(array(
454454 '&amp;(#[0-9]+|#x[0-9a-f]+|' . get_html_entity_pattern() . ');' => '&$1;',
455455 "\r" => '<br />' . "\n", /* 行末にチルダは改行 */
456456 ), $line_rules);
457-