KanColle © 2014 DMM.com / KADOKAWA GAMES All Rights Reserved. / Animation by © Good Smile Company
Dokuwiki Nico BBCode / Plugin:vshare 改 nico
#1
BBCode for Nico Video
https://www.dokuwiki.org/plugin:bbcode
程式碼:
<?php
/**
* BBCode plugin: allows BBCode markup familiar from forum software
*
* @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author     Esther Brunner <esther@kaffeehaus.ch>
*/

if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'syntax.php');

/**
* All DokuWiki plugins to extend the parser/rendering mechanism
* need to inherit from this class
*/
class syntax_plugin_bbcode_nico extends DokuWiki_Syntax_Plugin {

    function getType() { return 'container'; }
    function getPType() { return 'block'; }
    function getAllowedTypes() { return array('formatting', 'substition', 'disabled', 'protected'); }  
    function getSort() { return 105; }
    function connectTo($mode) { $this->Lexer->addEntryPattern('\[nico.*?\](?=.*?\x5B/nico\x5D)',$mode,'plugin_bbcode_nico'); }
    function postConnect() { $this->Lexer->addExitPattern('\[/nico\]','plugin_bbcode_nico'); }

    /**
     * Handle the match
     */
    function handle($match, $state, $pos, &$handler) {        
        switch ($state) {
          case DOKU_LEXER_ENTER :
            $match = explode('"',substr($match, 6, -1));
            return array($state, $match[1]);

          case DOKU_LEXER_UNMATCHED :
            return array($state, $match);
            
          case DOKU_LEXER_EXIT :
            return array($state, '');
            
        }
        return array();
    }

    /**
     * Create output
     */
    function render($mode, &$renderer, $data) {
        if($mode == 'xhtml') {
            list($state, $match) = $data;
            switch ($state) {
              case DOKU_LEXER_ENTER :
                //if ($match !== '') $renderer->doc .= '<p><sub>'.$match.':</sub></p>';
                if ($match !== '') $renderer->doc .= '<script type="text/javascript" src="http://ext.nicovideo.jp/thumb_watch/';
                //$renderer->doc .= '<blocknico>';
                break;
                
              case DOKU_LEXER_UNMATCHED :
                $match = $renderer->_xmlEntities($match);
                //$renderer->doc .= str_replace("\n",'<br />',$match);
                $renderer->doc .= $match;
                break;
                
              case DOKU_LEXER_EXIT :
                $renderer->doc .= '?w=640&h=0"></script>';
                break;
                
            }
            return true;
        }
        return false;
    }
    
}
// vim:ts=4:sw=4:et:enc=utf-8:

Video Share for Nico
https://www.dokuwiki.org/plugin:vshare
修改 sites.js 新增下列內容
程式碼:
'nico':        'nicovideo\\.jp\\/.*\\/([a-z0-9]+)',
'niconico':    'nicovideo\\.jp\\/.*\\/([a-z0-9]+)',

修改 sites.conf 新增下列內容
程式碼:
niconico    iframe  http://ext.nicovideo.jp/thumb/@VIDEO@
nico            script  http://ext.nicovideo.jp/thumb_watch/@VIDEO@

修改 syntax.php
找到 $R->doc .= '<iframe '; 並複製 iframe 整段語法,改為 script
註:
1.高的參數可以省略,預設h=就可以了,除非有要手動設畫面大小,也可以直接把影片長寬寫死,固定大小
2.data[title]可能用不到
程式碼:
elseif($data['type'] == 'script') {
                // embed niconico script
                $R->doc .= '<script type="text/javascript" ';
                $R->doc .= buildAttributes(array(
                            'src' => $data['url'].'?w='.$data['width'].'&h='.$data['height'],
                           ));
                $R->doc .= '>'.hsc($data['title']).'</script>';

設定 nico 專用大小 iframe w=312 h=176,如果不改就要手動設定參數
因為是逐字判斷,所以參數nico跟niconico皆會判斷為nico
所以iframe跟video要同時就必需 nico1 , nico2 的區別
找到 }elseif(strpos($param,'small') 這段,新增下面內容
程式碼:
}elseif(strpos($param,'nico') !== false){      // nico iframe
            $width  = 312;
            $height = 176;
回覆


前往:


正在瀏覽這個主題的使用者: 2 位訪客