ページへ戻る

+ Links

 印刷 

Ver 2.13 (CSS調整、newpageプラグインとオートリンクのバグ修正など) :: XOOPS マニア

xpwiki:xpWiki開発日記/2007-06-07


Tag: Bugfix CSS オートリンク ini設定
2007 6月 7 (木)
 

Ver 2.13 (CSS調整、newpageプラグインとオートリンクのバグ修正など) anchor.png Edit

Page Top

スタイルシート調整 anchor.png Edit

  • コメント統合(ページコメント)のスタイルを調整しました。
    • pukiwiki.css.php
      Everything is expanded.Everything is shortened.
       1
       2
       3
       4
       5
       6
       7
       8
       9
      10
      11
      12
      
      -
      |
      |
      !
       
      -
      |
      !
       
      -
      |
      !
      
      $class div.commentbody {
          margin-left:30px;
          margin-right:10px;
      }
       
      $class div.commentbody h2 {
          background-color: transparent;
      }
       
      $class div.commentbody textarea {
          height: 7em;
      }
  • #code プラグインのスタイルを調整しました。
    • テーブルレイアウトのテーマで、行文字数が多いソースを表示すると、横に伸びてしまいレイアウトが崩れてしまうので、調整してみました。IEでは、幅も指定しないといけないので、pukiwiki.ini.php に設定値を追加しました。
    • pukiwiki.ini.php
      1
      2
      3
      4
      5
      6
      7
      
      /////////////////////////////////////////////////
      // <pre> の幅指定 (600px, auto など)
      $this->root->pre_width = 'auto';
       
      // IE に指定する <pre> の幅 (600px, auto など)
      // xpWiki が Table 内に表示される場合(Table theme) px 指定したほうがよい
      $this->root->pre_width_ie = '700px';
    • pukiwiki.css.php
      Everything is expanded.Everything is shortened.
      1
      2
      3
      4
      5
      6
      
       
      -
      |
      |
      |
      !
      
      /* Pre base */
      $class div.pre {
          max-height: 420px;
          width: <?php echo $pre_width ?>;
          overflow: auto;
      }
Page Top

newpage プラグインのバグ修正 anchor.png Edit

リファラーページをベースページ名と間違えていたので、常にリファラーページ以下のページしか作成できなくなっていたのを修正しました。

Page Top

オートリンクのバグ修正 anchor.png Edit

ページ名の Case insensitive 設定が部分的に効いていなかったのを修正しました。

Page Top

HypCommonFunc が古い場合の処理 anchor.png Edit

HypCommonFunc が古い場合、そのバージョンによっては、エラーでPHPが止まり真っ白になってしまう問題を修正しました。

Page Top

CVS 更新内容 anchor.png Edit

  • 2007-06-07 17:55 nao-pon
    • * xoops_version.php (1.131):
      • Version 2.13
  • 2007-06-07 17:55 nao-pon
    • * class/convert_html.php (1.12), class/xpwiki.php (1.38), ini/pukiwiki.ini.php (1.40), plugin/code.inc.php (1.7), skin/pukiwiki.css.php (1.24), skin/pukiwiki.skin.php (1.18):
      • Chenged pre(code) style. max-height, IE problem at table theme etc...
  • 2007-06-07 17:53 nao-pon
    • * include.php (1.7):
      • Fixed white out if HypCommom is older.
  • 2007-06-07 17:52 nao-pon
    • * class/func/pukiwiki_func.php (1.80), plugin/dbsync.inc.php (1.16):
      • Fixed alphabet auto alias name ploblem.
  • 2007-06-07 13:15 nao-pon
    • * plugin/newpage.inc.php (1.3):
      • Bugfixed. Referer was set to base.
  • 2007-06-06 18:19 nao-pon
    • * class/: ext_autolink.php (1.10), func/pukiwiki_func.php (1.79):
      • Fixed case sensitive problem of autolink.
  • 2007-06-06 18:18 nao-pon
    • * class/xpwiki.php (1.37):
      • Fixed CSS tag repetition.
  • 2007-06-06 18:16 nao-pon
    • * skin/pukiwiki.css.php (1.23):
      • Added CSS of page comment area.
Page Top

一行コメント anchor.png Edit




Last-modified: 2007-06-08 (金) 08:06:32 (JST) (7009d) by nao-pon