ページへ戻る

+ Links

 印刷 

Ver 3.66 - 3.66.1 (外部リンクの favicon 表示など) :: XOOPS マニア

xpwiki:xpWiki開発日記/2008-02-18


Tag: favicon 画像表示 HTML構造
2008 2月 18 (月)
 

Ver 3.66 - 3.66.1 (外部リンクの favicon 表示など) anchor.png Edit

  • 外部リンクへの favicon 自動表示機能の追加
    • pukiwiki.ini.php
      1
      2
      3
      4
      5
      
      // favicon auto set class name
      $root->favicon_set_classname = 'ext';
       
      // favicon auto replace class name
      $root->favicon_replace_classname = 'extWithFavicon';
    • XOOPS 全体に効果を出すことができます。
      • ページ表示ブロックをすべてのモジュールに表示するようにすればOK :thumb_up:

        ページ内容は問いません。このサイトでは、左サイドブロック「サイト内 Wiki」がそれです。

  • ページ区切りの'/'の後ろに挿入する記号(<wbr>, ​ など)を設定できるようにした。また、長い英数文字列を自動改行するために適当な間隔で指定の記号(<wbr>, ​ など)を挿入できるようにした。
    • default.ini.php
       1
       2
       3
       4
       5
       6
       7
       8
       9
      10
      11
      12
      13
      
      /////////////////////////////////////////////////
      // 長い英数文字列を表示域に合わせて改行する設定
      // Setting to which long character string is set
      // to display region and it changes line.
       
      // Insert to after '/' of pagename.
      $root->hierarchy_insert = '&#8203;';
       
      // Long word break limit
      $root->word_break_limit = 40;
       
      // WordBeark ('&#8203;' or '<wbr>' or '' etc.)
      $root->word_breaker = '&#8203;';
    • keitai.ini.php
       1
       2
       3
       4
       5
       6
       7
       8
       9
      10
      11
      12
      
      /////////////////////////////////////////////////
      // 長い英数文字列を表示域に合わせて改行する設定
      // Setting to which long character string is set
      // to display region and it changes line.
       
      // Insert to after '/' of pagename.
      $root->hierarchy_insert = '';
       
      // Long word break limit
      $root->word_break_limit = 0;
      // WordBeark ('&#8203;' or '<wbr>' or '' etc.)
      $root->word_breaker = '&#8203;';
  • 正規表現のためのロケール設定を追加 (thanks rodeo)
Page Top

CVS 更新内容 anchor.png Edit

+  今回の更新分
  • 2008-02-18 00:52 nao-pon
    • * xoops_version.php (1.304):
      • Version 3.66.1
  • 2008-02-18 00:52 nao-pon
    • * admin/setup.php (1.5):
      • Set favicon cache dirctory's permission.
  • 2008-02-18 00:50 nao-pon
  • 2008-02-18 00:49 nao-pon
    • * class/include/init.php (1.46):
      • Added permission check of favicon cache dirctory.
  • 2008-02-17 23:33 nao-pon
    • * xoops_version.php (1.303):
      • Version 3.66 It is encouraged to use it with HypCommonFunc >= Ver.20080217.
  • 2008-02-17 23:27 nao-pon
    • * loader.php (1.40), ini/pukiwiki.ini.php (1.66), plugin/referer.inc.php (1.8), skin/css/main.css (1.15), skin/js/main.js (1.39), skin/js/xpwiki.js (1.7):
      • Addition of favicon-automatic operation display function to external link.
  • 2008-02-17 23:26 nao-pon
    • * plugin/recent.inc.php (1.13):
      • The sign (<wbr> ​ etc.) inserted behind '/' of page name can have been set.
  • 2008-02-17 23:25 nao-pon
    • * ini/: default.ini.php (1.8), keitai.ini.php (1.9):
      • The sign (<wbr> ​ etc.) inserted behind '/' of page name can have been set.
      • "Long character string" to change line automatically, a specified sign (<wbr> ​ etc.) can have been inserted at suitable intervals.
  • 2008-02-17 23:25 nao-pon
    • * class/include/init.php (1.45):
      • Locale(LC_CTYPE) can have been set with $this->cont['LC_CTYPE'].
  • 2008-02-17 23:24 nao-pon
    • * class/func/xpwiki_func.php (1.146):
      • "Long character string" to change line automatically, a specified sign (<wbr> ​ etc.) can have been inserted at suitable intervals.
  • 2008-02-17 23:23 nao-pon
    • * class/func/pukiwiki_func.php (1.149):
      • The sign (<wbr> ​ etc.) inserted behind '/' of page name can have been set.
  • 2008-02-17 23:21 nao-pon
    • * class/xpwiki.php (1.71):
      • Addition of favicon-automatic operation display function to external link.
      • The sign (<wbr> ​ etc.) inserted behind '/' of page name can have been set.
      • "Long character string" to change line automatically, a specified sign (<wbr> ​ etc.) can have been inserted at suitable intervals.
      • Locale(LC_CTYPE) can have been set with $this->cont['LC_CTYPE'].
  • 2008-02-17 23:16 nao-pon
    • * language/xpwiki/en/plugin/conf.lng.php (1.3), language/xpwiki/ja/plugin/conf.lng.php (1.3), language/xpwiki/ja_utf8/plugin/conf.lng.php (1.3), plugin/conf.inc.php (1.3):
      • Locale(LC_CTYPE) can have been set with $this->cont['LC_CTYPE'].
  • 2008-02-17 23:11 nao-pon
    • * skin/js/fusen.js (1.10):
      • with.[obj] was not handled for optimization. etc.
  • 2008-02-17 23:08 nao-pon
    • * skin/css/: ajaxtree.css (1.3), referer.css (1.3):
      • Edited CSS.
Page Top

一行コメント anchor.png Edit




Last-modified: 2008-02-21 (木) 22:34:00 (JST) (6751d) by nao-pon