Révision | f49d05652dca2e2d661bbb82eacc7039f43b68cd (tree) |
---|---|
l'heure | 2006-06-03 20:31:03 |
Auteur | henoheno <henoheno> |
Commiter | henoheno |
Corrected/Added comments only about password
@@ -1,6 +1,6 @@ | ||
1 | 1 | <?php |
2 | 2 | // 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 $ | |
4 | 4 | // Copyright (C) |
5 | 5 | // 2002-2006 PukiWiki Developers Team |
6 | 6 | // 2001-2002 Originally written by yu-ji |
@@ -193,10 +193,11 @@ $notimeupdate = 1; | ||
193 | 193 | $adminpass = '{x-php-md5}!'; |
194 | 194 | |
195 | 195 | // 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' | |
200 | 201 | |
201 | 202 | ///////////////////////////////////////////////// |
202 | 203 | // Page-reading feature settings |
@@ -232,8 +233,8 @@ $pagereading_config_dict = ':config/PageReading/dict'; | ||
232 | 233 | // User definition |
233 | 234 | $auth_users = array( |
234 | 235 | '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' | |
237 | 238 | ); |
238 | 239 | |
239 | 240 | ///////////////////////////////////////////////// |
@@ -246,8 +247,8 @@ $auth_method_type = 'pagename'; // By Page name | ||
246 | 247 | // Read auth (0:Disable, 1:Enable) |
247 | 248 | $read_auth = 0; |
248 | 249 | |
249 | -// Read auth regex | |
250 | 250 | $read_auth_pages = array( |
251 | + // Regex Username | |
251 | 252 | '#ひきこもるほげ#' => 'hoge', |
252 | 253 | '#(ネタバレ|ねたばれ)#' => 'foo,bar,hoge', |
253 | 254 | ); |
@@ -256,8 +257,8 @@ $read_auth_pages = array( | ||
256 | 257 | // Edit auth (0:Disable, 1:Enable) |
257 | 258 | $edit_auth = 0; |
258 | 259 | |
259 | -// Edit auth regex | |
260 | 260 | $edit_auth_pages = array( |
261 | + // Regex Username | |
261 | 262 | '#Barの公開日記#' => 'bar', |
262 | 263 | '#ひきこもるほげ#' => 'hoge', |
263 | 264 | '#(ネタバレ|ねたばれ)#' => 'foo,bar,hoge', |