ページへ戻る
印刷
inc/yd_d3com_b
をテンプレートにして作成 ::
なーおんWEB
xpwiki
:inc/yd_d3com_b をテンプレートにして作成
開始行:
*minidiaryモジュールで、d3コメント統合
**概要
以前より、[[minidiaryモジュール:http://www.yamareco.com/w...
+ D3コメントクラスです。 一応、こんな風に表示されます。
&ref(inc/yd_d3com/yd_d3com_class.gif,mw:200,mh:200);
&font(Red){(08/09/07 ver-b1変更) 権限チェック~リダイレ...
(ご注意:)d3forumの投稿一覧表示などには、タイトル・投...
+ コメント統合先のd3forumディレクトリ名・フォーラムid値...
こうすることで、複数サイトを共有化している場合でも、携...
+ コメント一覧ブロックは、xugj_blockで実装しています。([...
&font(Red){ (08/09/07 ver-b1変更) 「表示中の執筆者への...
&br;
**手順と方法
テンプレートだけでなく、ソースの変更も必要ですので、細か...
なお、個別のアップロードも編集も面倒、という人のために、m...
|&ref(minidiary014c_diff.zip);&br;(09/03/21 verc変更):コ...
|&ref(minidiary014b2_diff.zip);&br; &font(Red){(08/09/22 ...
****ディレクトリ構造
-差分ファイルは、以下のディレクトリ構造です。
#code(pre,nonumber){{
html (XOOPS_ROOT_PATH)
├─class
│ └smarty
│ └plugins
│ function.d3comment.php
│ function.d3forum_comment.php
│ function.d3forum_comment_postscount.php
│ function.d3forum_comment_topicscount.php
│ function.xugj_block.php
│
└─modules
│ └(d3forum)
│ └blocks
│ blocks_bcomment.php
│
└─minidiary
│ detail.php
│ diarylist.php
│ functions.php
│ header.php
│ index.php
│ xoops_version.php
│
├blocks
│ b_diarylist.php
│
├class
│ minidiaryD3commentContent.class.php
│
├language
│ └japanese
│ modinfo.php
│
└templates
│ yd_detail.html
│ yd_diarylist.html
│ yd_index.html
│ yd_rightarea.html
│
└blocks
b_diarylist.html
}}
#code(pre,nonumber){{
trust (XOOPS_TRUST_PATH)
└─modules
└d3forum
│ blocks_bcomment.php
│
└blocks
block_functions_bcomment.php
}}
***xugj_blockの準備
xugj_blockを使います。 上記差分パックを使うか、別途入...
解説は[[こちら:http://xfield.info/modules/tautech/conte...
***d3forumのブロック関連追加ファイル
日記への統合コメント一覧で日記執筆者へのコメントの絞込...
***D3commentクラス
D3commentクラスは、上記差分ファイルからか下記ファイルを...
|&ref(minidiaryD3commentContent.class.php);|
当然ながら、d3forumの方にコメント統合用に掲示板を追加し...
minidiary::minidiaryD3commentContent::
と記載します。
なお、&font(Red){d3forumは0.83a以降のバージョンが必須};...
***minidiaryソースの変更
8つのソースファイルに手を入れます。(差分パックをご使...
&font(Red){(09/03/21 ver-c)};管理画面の設定項目が増え...
&font(Red){(08/09/22 ver-b2)};xoops2.0.16a-JPで不具合...
&font(Red){(08/09/07 ver-b1)};コメント統合標準のテン...
***テンプレートの編集
続いて、テンプレートを5つ、Altsysなどで編集します。
&font(Red){(08/09/07 ver-b1)};コメント統合標準のテン...
**** b_diarylist.html
「b_diarylist.html」の、30~49行目 を編集します。
#code(html,29-){{
<tr><td colspan=2><{$block[num2].diary}>
<{if $block[num2].com_num > 0}>
<br />
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid...
<img src="<{$xoops_url}>/modules/minidiary/images/commen...
<{if $block[num2].newcom > 0}>
<img src="<{$xoops_url}>/modules/minidiary/images/new....
[<{$block[num2].newcom_y}>年<{$block[num2].newcom_m}>...
<{/if}>
<{/if}>
</td></tr>
}}
↓ 以下のように変更。
#code(html,29-){{
<tr><td colspan=2><{$block[num2].diary}>
<{if $block.0.mod_config.comment_dirname}>
<br />
<{d3comment mode="count" var="comcount" mydirname='mini...
<{if $comcount}>
<a href="<{$xoops_url}>/modules/minidiary/detail.ph...
<img src="<{$xoops_url}>/modules/minidiary/images/c...
<{/if}>
<{else}>
<{if $block[num2].com_num > 0}>
<br />
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid...
<img src="<{$xoops_url}>/modules/minidiary/images/commen...
<{if $block[num2].newcom > 0}>
<img src="<{$xoops_url}>/modules/minidiary/images/new....
[<{$block[num2].newcom_y}>年<{$block[num2].newcom_m}>...
<{/if}>
<{/if}>
<{/if}>
</td></tr>
}}
****yd_detail.html
「yd_detail.html」の、82~124行目 を編集します。
#code(html,81-){{
<{if $yd_use_simplecomment == 0}>
<{$commentsnav}>
<center><{$lang_notice}></center>
<{if $comment_mode == "flat"}>
<{include file="db:system_comments_flat.html"}>
<{elseif $comment_mode == "thread"}>
<{include file="db:system_comments_thread.html"}>
<{elseif $comment_mode == "nest"}>
<{include file="db:system_comments_nest.html"}>
<{/if}>
<{else}>
<!-- start comment area -->
<{if $comments.0.id >0}>
<a name="viewcomment"></a>
<table class="outer"><tr><th>
コメント
</th></tr><tr><td>
<div style="margin: 1px; padding: 1px;">
<!-- start comments loop -->
<{include file="db:system_comments_flat.html"}>
<!-- end comments loop -->
</div>
</td></tr></table>
<br />
<{/if}>
<!-- start comment form -->
<table class="outer"><tr><th>
コメントを書く
</th></tr><tr><td>
<{if $xoops_isuser==1}>
<{$yr_comment_form}>
<{else}>
コメントを書くには<a href="<{$xoops_url}>/user.php">ログ...
<{/if}>
</td></tr></table>
<!-- end comment form -->
<!-- end comment area -->
<{/if}>
}}
↓ 以下のように変更。
#code(html,81-){{
<!-- start comment area -->
<a name="viewcomment"></a>
<{if $mod_config.comment_dirname}>
<{d3comment mydirname='minidiary' id=$yd_data.bid subjec...
<{else}>
<{if $yd_use_simplecomment == 0}>
<{$commentsnav}>
<center><{$lang_notice}></center>
<{if $comment_mode == "flat"}>
<{include file="db:system_comments_flat.html"}>
<{elseif $comment_mode == "thread"}>
<{include file="db:system_comments_thread.html"}>
<{elseif $comment_mode == "nest"}>
<{include file="db:system_comments_nest.html"}>
<{/if}>
<{else}>
<{if $comments.0.id >0}>
<table class="outer"><tr><th>
コメント
</th></tr><tr><td>
<div style="margin: 1px; padding: 1px;">
<!-- start comments loop -->
<{include file="db:system_comments_flat.html"}>
<!-- end comments loop -->
</div>
</td></tr></table>
<br />
<{/if}>
<!-- start comment form -->
<table class="outer"><tr><th>
コメントを書く
</th></tr><tr><td>
<{if $xoops_isuser==1}>
<{$yr_comment_form}>
<{else}>
コメントを書くには<a href="<{$xoops_url}>/user.php">ログ...
<{/if}>
</td></tr></table>
<!-- end comment form -->
<!-- end comment area -->
<{/if}>
}}
****yd_diarylist.html
「yd_diarylist.html」の、56~66行目 を編集します。
#code(html,55-){{
<tr><td colspan=2><{$yd_data[num2].diary}>
<{if $yd_data[num2].com_num > 0}>
<br />
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid...
<img src="images/comments.png" border=0 style="vertical-...
<{if $yd_data[num2].newcom > 0}>
<img src="images/new.gif" border=0 style="vertical-ali...
[<{$yd_data[num2].newcom_y}>年<{$yd_data[num2].newcom_...
<{/if}>
<{/if}>
</td></tr>
}}
↓ 以下のように変更。
#code(html,55-){{
<tr><td colspan=2><{$yd_data[num2].diary}>
<{if $mod_config.comment_dirname}>
<{d3comment mode="count" var="comcount" mydirname='mi...
<{if $comcount}>
<a href="<{$xoops_url}>/modules/minidiary/detail.ph...
<img src="images/comments.png" border=0 style="vert...
<{/if}>
<{else}>
<{if $yd_data[num2].com_num > 0}>
<br />
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid...
<img src="images/comments.png" border=0 style="vertical-...
<{if $yd_data[num2].newcom > 0}>
<img src="images/new.gif" border=0 style="vertical-ali...
[<{$yd_data[num2].newcom_y}>年<{$yd_data[num2].newcom_...
<{/if}>
<{/if}>
<{/if}>
</td></tr>
}}
****yd_index.html
「yd_index.html」の、60~64行目 を編集します。
#code(html,59-){{
<td style="border:1px gray solid;border-bottom:2px gray s...
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid=...
コメント(<{$yd_data[num].comment_num}>)
</a> |
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid=...
続きを読む</a>
<{if $yd_editperm==1}>
}}
↓ 以下のように変更。
#code(html,59-){{
<td style="border:1px gray solid;border-bottom:2px gray s...
<{if $mod_config.comment_dirname}>
<{d3comment mode="count" var="comcount" mydirname='minid...
<{if $comcount}>
<a href="<{$xoops_url}>/modules/minidiary/detail.ph...
<{else}>コメント (0)
<{/if}>
<{else}>
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid...
コメント <{$yd_data[num].comment_num}>
</a>
<{/if}>
|
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid=...
続きを読む</a>
<{if $yd_editperm==1}>
}}
****yd_rightarea.html
「yd_rightarea.html」の、50~57行目 を編集します。
#code(html,49-){{
<th>最近のコメント</th></tr>
<{section name=num loop=$yd_comment max=3}>
<tr>
<td><img src="<{$xoops_url}>/modules/minidiary/images/enu...
</tr>
<{/section}>
<tr>
<td style="border-top:1px gray solid;text-align:right;">
<img src="<{$xoops_url}>/modules/minidiary/images/arrow1....
</tr>
</table>
}}
↓ 以下のように変更。
#code(html,49-){{
<th>最近のコメント</th></tr>
<tr><td>
<{if $mod_config.comment_dirname}>
<{xugj_block file=modules/`$mod_config.comment_dirname`/...
<{section name=num max=3}>
<ol style="padding:3px;margin:0;">
<{foreach item=post from=$block.posts}>
<li style="margin:1px;"><a href="<{$block.mod_url}>/in...
<{/foreach}>
</ol>
<{/section}>
<img src="<{$xoops_url}>/modules/minidiary/images/arrow1...
<{else}>
<{section name=num loop=$yd_comment max=3}>
<tr>
<td><img src="<{$xoops_url}>/modules/minidiary/images/en...
</tr>
<{/section}>
<tr>
<td style="border-top:1px gray solid;text-align:right;">
<img src="<{$xoops_url}>/modules/minidiary/images/arrow1...
<{/if}>
</tr>
</table>
}}
***モバイル用テンプレート
モバイルテンプハウスで、[[作成・公開済:http://www.mc8.j...
**インストールと設定
xoops管理画面の「モジュールの管理」で、''&font(Maroon){...
&ref(yd_confiig2.gif,mw:200,mh:200);
ここで、
+コメント統合するd3forumのdirname : d3forumのコメント...
+コメント統合するフォーラムの番号 : コメント統合を選択...
+コメント統合の表示方法 : フラット表示かスレッド表示か...
これらを設定すれば完了です。(この編集を行うまでは、xoops...
**その他
***関連情報
- [[minidiary+D3コメント統合へのお知恵を:http://www.xugj...
- [[D3comment統合と、コメント元のイベント通知:http://www....
- [[d3forumコメント統合で、元記事の閲覧権限に連動したい:h...
***ライセンス
-minidiaryソース、d3forumソース、xugj_blockソース:GPL
-アイコン画像について
minidiaryモジュールでは以下のサイトのアイコンや画像ファイ...
famfamfam.com: Silk Icons
http://www.famfamfam.com/lab/icons/silk/
-> [[Creative Commons Attribution 2.5 License:http://crea...
終了行:
*minidiaryモジュールで、d3コメント統合
**概要
以前より、[[minidiaryモジュール:http://www.yamareco.com/w...
+ D3コメントクラスです。 一応、こんな風に表示されます。
&ref(inc/yd_d3com/yd_d3com_class.gif,mw:200,mh:200);
&font(Red){(08/09/07 ver-b1変更) 権限チェック~リダイレ...
(ご注意:)d3forumの投稿一覧表示などには、タイトル・投...
+ コメント統合先のd3forumディレクトリ名・フォーラムid値...
こうすることで、複数サイトを共有化している場合でも、携...
+ コメント一覧ブロックは、xugj_blockで実装しています。([...
&font(Red){ (08/09/07 ver-b1変更) 「表示中の執筆者への...
&br;
**手順と方法
テンプレートだけでなく、ソースの変更も必要ですので、細か...
なお、個別のアップロードも編集も面倒、という人のために、m...
|&ref(minidiary014c_diff.zip);&br;(09/03/21 verc変更):コ...
|&ref(minidiary014b2_diff.zip);&br; &font(Red){(08/09/22 ...
****ディレクトリ構造
-差分ファイルは、以下のディレクトリ構造です。
#code(pre,nonumber){{
html (XOOPS_ROOT_PATH)
├─class
│ └smarty
│ └plugins
│ function.d3comment.php
│ function.d3forum_comment.php
│ function.d3forum_comment_postscount.php
│ function.d3forum_comment_topicscount.php
│ function.xugj_block.php
│
└─modules
│ └(d3forum)
│ └blocks
│ blocks_bcomment.php
│
└─minidiary
│ detail.php
│ diarylist.php
│ functions.php
│ header.php
│ index.php
│ xoops_version.php
│
├blocks
│ b_diarylist.php
│
├class
│ minidiaryD3commentContent.class.php
│
├language
│ └japanese
│ modinfo.php
│
└templates
│ yd_detail.html
│ yd_diarylist.html
│ yd_index.html
│ yd_rightarea.html
│
└blocks
b_diarylist.html
}}
#code(pre,nonumber){{
trust (XOOPS_TRUST_PATH)
└─modules
└d3forum
│ blocks_bcomment.php
│
└blocks
block_functions_bcomment.php
}}
***xugj_blockの準備
xugj_blockを使います。 上記差分パックを使うか、別途入...
解説は[[こちら:http://xfield.info/modules/tautech/conte...
***d3forumのブロック関連追加ファイル
日記への統合コメント一覧で日記執筆者へのコメントの絞込...
***D3commentクラス
D3commentクラスは、上記差分ファイルからか下記ファイルを...
|&ref(minidiaryD3commentContent.class.php);|
当然ながら、d3forumの方にコメント統合用に掲示板を追加し...
minidiary::minidiaryD3commentContent::
と記載します。
なお、&font(Red){d3forumは0.83a以降のバージョンが必須};...
***minidiaryソースの変更
8つのソースファイルに手を入れます。(差分パックをご使...
&font(Red){(09/03/21 ver-c)};管理画面の設定項目が増え...
&font(Red){(08/09/22 ver-b2)};xoops2.0.16a-JPで不具合...
&font(Red){(08/09/07 ver-b1)};コメント統合標準のテン...
***テンプレートの編集
続いて、テンプレートを5つ、Altsysなどで編集します。
&font(Red){(08/09/07 ver-b1)};コメント統合標準のテン...
**** b_diarylist.html
「b_diarylist.html」の、30~49行目 を編集します。
#code(html,29-){{
<tr><td colspan=2><{$block[num2].diary}>
<{if $block[num2].com_num > 0}>
<br />
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid...
<img src="<{$xoops_url}>/modules/minidiary/images/commen...
<{if $block[num2].newcom > 0}>
<img src="<{$xoops_url}>/modules/minidiary/images/new....
[<{$block[num2].newcom_y}>年<{$block[num2].newcom_m}>...
<{/if}>
<{/if}>
</td></tr>
}}
↓ 以下のように変更。
#code(html,29-){{
<tr><td colspan=2><{$block[num2].diary}>
<{if $block.0.mod_config.comment_dirname}>
<br />
<{d3comment mode="count" var="comcount" mydirname='mini...
<{if $comcount}>
<a href="<{$xoops_url}>/modules/minidiary/detail.ph...
<img src="<{$xoops_url}>/modules/minidiary/images/c...
<{/if}>
<{else}>
<{if $block[num2].com_num > 0}>
<br />
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid...
<img src="<{$xoops_url}>/modules/minidiary/images/commen...
<{if $block[num2].newcom > 0}>
<img src="<{$xoops_url}>/modules/minidiary/images/new....
[<{$block[num2].newcom_y}>年<{$block[num2].newcom_m}>...
<{/if}>
<{/if}>
<{/if}>
</td></tr>
}}
****yd_detail.html
「yd_detail.html」の、82~124行目 を編集します。
#code(html,81-){{
<{if $yd_use_simplecomment == 0}>
<{$commentsnav}>
<center><{$lang_notice}></center>
<{if $comment_mode == "flat"}>
<{include file="db:system_comments_flat.html"}>
<{elseif $comment_mode == "thread"}>
<{include file="db:system_comments_thread.html"}>
<{elseif $comment_mode == "nest"}>
<{include file="db:system_comments_nest.html"}>
<{/if}>
<{else}>
<!-- start comment area -->
<{if $comments.0.id >0}>
<a name="viewcomment"></a>
<table class="outer"><tr><th>
コメント
</th></tr><tr><td>
<div style="margin: 1px; padding: 1px;">
<!-- start comments loop -->
<{include file="db:system_comments_flat.html"}>
<!-- end comments loop -->
</div>
</td></tr></table>
<br />
<{/if}>
<!-- start comment form -->
<table class="outer"><tr><th>
コメントを書く
</th></tr><tr><td>
<{if $xoops_isuser==1}>
<{$yr_comment_form}>
<{else}>
コメントを書くには<a href="<{$xoops_url}>/user.php">ログ...
<{/if}>
</td></tr></table>
<!-- end comment form -->
<!-- end comment area -->
<{/if}>
}}
↓ 以下のように変更。
#code(html,81-){{
<!-- start comment area -->
<a name="viewcomment"></a>
<{if $mod_config.comment_dirname}>
<{d3comment mydirname='minidiary' id=$yd_data.bid subjec...
<{else}>
<{if $yd_use_simplecomment == 0}>
<{$commentsnav}>
<center><{$lang_notice}></center>
<{if $comment_mode == "flat"}>
<{include file="db:system_comments_flat.html"}>
<{elseif $comment_mode == "thread"}>
<{include file="db:system_comments_thread.html"}>
<{elseif $comment_mode == "nest"}>
<{include file="db:system_comments_nest.html"}>
<{/if}>
<{else}>
<{if $comments.0.id >0}>
<table class="outer"><tr><th>
コメント
</th></tr><tr><td>
<div style="margin: 1px; padding: 1px;">
<!-- start comments loop -->
<{include file="db:system_comments_flat.html"}>
<!-- end comments loop -->
</div>
</td></tr></table>
<br />
<{/if}>
<!-- start comment form -->
<table class="outer"><tr><th>
コメントを書く
</th></tr><tr><td>
<{if $xoops_isuser==1}>
<{$yr_comment_form}>
<{else}>
コメントを書くには<a href="<{$xoops_url}>/user.php">ログ...
<{/if}>
</td></tr></table>
<!-- end comment form -->
<!-- end comment area -->
<{/if}>
}}
****yd_diarylist.html
「yd_diarylist.html」の、56~66行目 を編集します。
#code(html,55-){{
<tr><td colspan=2><{$yd_data[num2].diary}>
<{if $yd_data[num2].com_num > 0}>
<br />
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid...
<img src="images/comments.png" border=0 style="vertical-...
<{if $yd_data[num2].newcom > 0}>
<img src="images/new.gif" border=0 style="vertical-ali...
[<{$yd_data[num2].newcom_y}>年<{$yd_data[num2].newcom_...
<{/if}>
<{/if}>
</td></tr>
}}
↓ 以下のように変更。
#code(html,55-){{
<tr><td colspan=2><{$yd_data[num2].diary}>
<{if $mod_config.comment_dirname}>
<{d3comment mode="count" var="comcount" mydirname='mi...
<{if $comcount}>
<a href="<{$xoops_url}>/modules/minidiary/detail.ph...
<img src="images/comments.png" border=0 style="vert...
<{/if}>
<{else}>
<{if $yd_data[num2].com_num > 0}>
<br />
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid...
<img src="images/comments.png" border=0 style="vertical-...
<{if $yd_data[num2].newcom > 0}>
<img src="images/new.gif" border=0 style="vertical-ali...
[<{$yd_data[num2].newcom_y}>年<{$yd_data[num2].newcom_...
<{/if}>
<{/if}>
<{/if}>
</td></tr>
}}
****yd_index.html
「yd_index.html」の、60~64行目 を編集します。
#code(html,59-){{
<td style="border:1px gray solid;border-bottom:2px gray s...
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid=...
コメント(<{$yd_data[num].comment_num}>)
</a> |
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid=...
続きを読む</a>
<{if $yd_editperm==1}>
}}
↓ 以下のように変更。
#code(html,59-){{
<td style="border:1px gray solid;border-bottom:2px gray s...
<{if $mod_config.comment_dirname}>
<{d3comment mode="count" var="comcount" mydirname='minid...
<{if $comcount}>
<a href="<{$xoops_url}>/modules/minidiary/detail.ph...
<{else}>コメント (0)
<{/if}>
<{else}>
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid...
コメント <{$yd_data[num].comment_num}>
</a>
<{/if}>
|
<a href="<{$xoops_url}>/modules/minidiary/detail.php?bid=...
続きを読む</a>
<{if $yd_editperm==1}>
}}
****yd_rightarea.html
「yd_rightarea.html」の、50~57行目 を編集します。
#code(html,49-){{
<th>最近のコメント</th></tr>
<{section name=num loop=$yd_comment max=3}>
<tr>
<td><img src="<{$xoops_url}>/modules/minidiary/images/enu...
</tr>
<{/section}>
<tr>
<td style="border-top:1px gray solid;text-align:right;">
<img src="<{$xoops_url}>/modules/minidiary/images/arrow1....
</tr>
</table>
}}
↓ 以下のように変更。
#code(html,49-){{
<th>最近のコメント</th></tr>
<tr><td>
<{if $mod_config.comment_dirname}>
<{xugj_block file=modules/`$mod_config.comment_dirname`/...
<{section name=num max=3}>
<ol style="padding:3px;margin:0;">
<{foreach item=post from=$block.posts}>
<li style="margin:1px;"><a href="<{$block.mod_url}>/in...
<{/foreach}>
</ol>
<{/section}>
<img src="<{$xoops_url}>/modules/minidiary/images/arrow1...
<{else}>
<{section name=num loop=$yd_comment max=3}>
<tr>
<td><img src="<{$xoops_url}>/modules/minidiary/images/en...
</tr>
<{/section}>
<tr>
<td style="border-top:1px gray solid;text-align:right;">
<img src="<{$xoops_url}>/modules/minidiary/images/arrow1...
<{/if}>
</tr>
</table>
}}
***モバイル用テンプレート
モバイルテンプハウスで、[[作成・公開済:http://www.mc8.j...
**インストールと設定
xoops管理画面の「モジュールの管理」で、''&font(Maroon){...
&ref(yd_confiig2.gif,mw:200,mh:200);
ここで、
+コメント統合するd3forumのdirname : d3forumのコメント...
+コメント統合するフォーラムの番号 : コメント統合を選択...
+コメント統合の表示方法 : フラット表示かスレッド表示か...
これらを設定すれば完了です。(この編集を行うまでは、xoops...
**その他
***関連情報
- [[minidiary+D3コメント統合へのお知恵を:http://www.xugj...
- [[D3comment統合と、コメント元のイベント通知:http://www....
- [[d3forumコメント統合で、元記事の閲覧権限に連動したい:h...
***ライセンス
-minidiaryソース、d3forumソース、xugj_blockソース:GPL
-アイコン画像について
minidiaryモジュールでは以下のサイトのアイコンや画像ファイ...
famfamfam.com: Silk Icons
http://www.famfamfam.com/lab/icons/silk/
-> [[Creative Commons Attribution 2.5 License:http://crea...
ページ名: