OSDN Git Service

BugTrack/2484 AutoTicketLink for JIRA (PHP4.x)
[pukiwiki/pukiwiki.git] / pukiwiki.ini.php
index ac5b184..9dda985 100644 (file)
@@ -2,7 +2,7 @@
 // PukiWiki - Yet another WikiWikiWeb clone
 // pukiwiki.ini.php
 // Copyright
-//   2002-2016 PukiWiki Development Team
+//   2002-2019 PukiWiki Development Team
 //   2001-2002 Originally written by yu-ji
 // License: GPL v2 or (at your option) any later version
 //
@@ -181,9 +181,11 @@ $adminpass = '{x-php-md5}!';
 // Sample:
 //$adminpass = 'pass'; // Cleartext
 //$adminpass = '{x-php-md5}1a1dc91c907325c69271ddf0c944bc72'; // PHP md5()  'pass'
+//$adminpass = '{x-php-sha256}d74ff0ee8da3b9806b18c877dbf29bbde50b5bd8e4dad7a3a725000feb82e8f1'; // PHP sha256  'pass'
 //$adminpass = '{CRYPT}$1$AR.Gk94x$uCe8fUUGMfxAPH83psCZG/';   // LDAP CRYPT 'pass'
 //$adminpass = '{MD5}Gh3JHJBzJcaScd3wyUS8cg==';               // LDAP MD5   'pass'
 //$adminpass = '{SMD5}o7lTdtHFJDqxFOVX09C8QnlmYmZnd2Qx';      // LDAP SMD5  'pass'
+//$adminpass = '{SHA256}10/w7o2juYBrGMh32/KbveULW9jk2tejpyUAD+uC6PE=' // LDAP SHA256 'pass'
 
 /////////////////////////////////////////////////
 // Page-reading feature settings
@@ -312,6 +314,13 @@ $ticket_link_sites = array(
        ),
 */
 );
+// AutoTicketLink - JIRA Default site
+/*
+$ticket_jira_default_site = array(
+       'title' => 'My JIRA - $1',
+       'base_url' => 'https://issues.example.com/jira/browse/',
+);
+//*/
 
 /////////////////////////////////////////////////
 // Show External Link Cushion Page
@@ -334,6 +343,12 @@ $external_link_cushion = array(
 );
 
 /////////////////////////////////////////////////
+// Show Topicpath title
+// 0: Disabled
+// 1: Enabled
+$topicpath_title = 1;
+
+/////////////////////////////////////////////////
 // Output HTML meta Referrer Policy
 // Value: '' (default), no-referrer, origin, same-origin, ...
 // Reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy