• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

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

コミットメタ情報

リビジョンf49d05652dca2e2d661bbb82eacc7039f43b68cd (tree)
日時2006-06-03 20:31:03
作者henoheno <henoheno>
コミッターhenoheno

ログメッセージ

Corrected/Added comments only about password

変更サマリ

差分

--- a/pukiwiki.ini.php
+++ b/pukiwiki.ini.php
@@ -1,6 +1,6 @@
11 <?php
22 // PukiWiki - Yet another WikiWikiWeb clone
3-// $Id: pukiwiki.ini.php,v 1.137 2006/06/03 11:08:29 henoheno Exp $
3+// $Id: pukiwiki.ini.php,v 1.138 2006/06/03 11:31:03 henoheno Exp $
44 // Copyright (C)
55 // 2002-2006 PukiWiki Developers Team
66 // 2001-2002 Originally written by yu-ji
@@ -193,10 +193,11 @@ $notimeupdate = 1;
193193 $adminpass = '{x-php-md5}!';
194194
195195 // Sample:
196-//$adminpass = '{x-php-md5}1a1dc91c907325c69271ddf0c944bc72'; // md5('pass')
197-//$adminpass = '{CRYPT}$1$AR.Gk94x$uCe8fUUGMfxAPH83psCZG/'; // CRYPT 'pass'
198-//$adminpass = '{MD5}Gh3JHJBzJcaScd3wyUS8cg=='; // MD5 'pass'
199-//$adminpass = '{SMD5}o7lTdtHFJDqxFOVX09C8QnlmYmZnd2Qx'; // SMD5 'pass'
196+//$adminpass = 'pass'; // Cleartext
197+//$adminpass = '{x-php-md5}1a1dc91c907325c69271ddf0c944bc72'; // PHP md5() 'pass'
198+//$adminpass = '{CRYPT}$1$AR.Gk94x$uCe8fUUGMfxAPH83psCZG/'; // LDAP CRYPT 'pass'
199+//$adminpass = '{MD5}Gh3JHJBzJcaScd3wyUS8cg=='; // LDAP MD5 'pass'
200+//$adminpass = '{SMD5}o7lTdtHFJDqxFOVX09C8QnlmYmZnd2Qx'; // LDAP SMD5 'pass'
200201
201202 /////////////////////////////////////////////////
202203 // Page-reading feature settings
@@ -232,8 +233,8 @@ $pagereading_config_dict = ':config/PageReading/dict';
232233 // User definition
233234 $auth_users = array(
234235 'foo' => 'foo_passwd', // Cleartext
235- 'bar' => '{x-php-md5}f53ae779077e987718cc285b14dfbe86', // md5('bar_passwd')
236- 'hoge' => '{SMD5}OzJo/boHwM4q5R+g7LCOx2xGMkFKRVEx', // SMD5 'hoge_passwd'
236+ 'bar' => '{x-php-md5}f53ae779077e987718cc285b14dfbe86', // PHP md5() 'bar_passwd'
237+ 'hoge' => '{SMD5}OzJo/boHwM4q5R+g7LCOx2xGMkFKRVEx', // LDAP SMD5 'hoge_passwd'
237238 );
238239
239240 /////////////////////////////////////////////////
@@ -246,8 +247,8 @@ $auth_method_type = 'pagename'; // By Page name
246247 // Read auth (0:Disable, 1:Enable)
247248 $read_auth = 0;
248249
249-// Read auth regex
250250 $read_auth_pages = array(
251+ // Regex Username
251252 '#ひきこもるほげ#' => 'hoge',
252253 '#(ネタバレ|ねたばれ)#' => 'foo,bar,hoge',
253254 );
@@ -256,8 +257,8 @@ $read_auth_pages = array(
256257 // Edit auth (0:Disable, 1:Enable)
257258 $edit_auth = 0;
258259
259-// Edit auth regex
260260 $edit_auth_pages = array(
261+ // Regex Username
261262 '#Barの公開日記#' => 'bar',
262263 '#ひきこもるほげ#' => 'hoge',
263264 '#(ネタバレ|ねたばれ)#' => 'foo,bar,hoge',