JUGEMカスタマイズ講座

カスタマイズ好きな"じゅげまー"に捧ぐ

カテゴリー・月別アーカイブを選択した際にエントリーそのものは表示せず、そのカテゴリー・月別アーカイブに含まれるエントリーのリストを表示します。

仕組み自体はごく簡単で、{selected_entry_list}という独自タグを利用しているだけです。あとは見せ方でしょうか。

例によってJavaScriptで表示の制御を行います。

ちょっと工夫したかなと言えるのは、JavaScriptの配置に気を使って、表示制御が後から行われていることを出来るだけ意識させないようにしているぐらいです。
どのテンプレートでも利用できるのですが、個人的にShowerが手を入れやすいので、Showerを例に挙げて説明します。

他のテンプレートでもおそらく同様の手法で導入できると思います。

まず、エントリーなどの本文が表示される領域を確認します。

Showerの場合、

<html>

<body>
タイトル・カレンダーなど
<div id="contents">
本文領域
</div>

<div id ="side">
サイドナビゲーション領域(カテゴリーリストなど)
</div>
フッタ
</body>
</html>


のようになっていて、<div id="contents">〜</div>が本文領域になります。

続いて、サイドナビゲーションを見て、もし

<!-- BEGIN selected_entry -->
<div class="links">
<div class="linktitle">
SELECTED ENTRIES
</div>
<div class="linktext">
{selected_entry_list}
</div>
</div>
<!-- END selected_entry -->


という部分がありましたら、これを{latest_entry_list}を利用するように変えておきます。

具体的には以下のように変更します。強調した部分が変更した箇所です。

<!-- BEGIN latest_entry -->
<div class="links">
<div class="linktitle">
LATEST ENTRIES
</div>
<div class="linktext">
{latest_entry_list}
</div>
</div>
<!-- END latest_entry -->


先頭の<!-- BEGIN latest_entry -->と末尾の<!-- END latest_entry -->の変更は忘れがちなので注意してください。

ここまでが下準備になります。

本文領域に含まれる<!-- BEGIN entry -->の前と<!-- END entry -->の後ろに追加があるので、その部分を確認してください。

<!-- BEGIN entry -->の前は以下のようになります。

<!-- BEGIN selected_entry -->
<div id="entrylist" style="display:none;">
<div id="entrylist_title" class="entry_title">SELECTED ENTRIES</div>
{selected_entry_list}
</div>
<!-- END selected_entry -->
<div id="entryarea">
<script type="text/javascript">
<!--
function viewListOnly() {
  var viewMode = window.location.search;
  if ( viewMode.indexOf("?month=") > -1 || viewMode.indexOf("?cid=") > -1 ) {
    var objList = this.document.getElementById('entrylist');
    var objEntry = this.document.getElementById('entryarea');
    if (!objList || !objEntry) return;
    objList.style.display = 'block';
    objEntry.style.display = 'none';
    var objTitle = this.document.getElementById('entrylist_title');
    if (!objTitle || !objTitle.innerHTML) return;
    objTitle.innerHTML = this.document.title;
  }
}
viewListOnly();
// -->
</script>
<!-- BEGIN entry -->


末尾に<!-- BEGIN entry -->がありますが、この前が追加分です。

つまり{selected_entry_list}が本文領域に記述されることになり、その挿入位置はエントリーが記述される部分の直前になります。

<!-- END entry -->の後ろは以下のようになります。

<!-- END entry -->
</div>


</div>が追加されるだけです。

この変更によって全体の構造は以下のようになります。

<html>

<body>
タイトル・カレンダーなど
<div id="contents">
<!-- BEGIN selected_entry -->
選択されたエントリーリスト
<!-- END selected_entry -->
<div id="entryarea">
<script type="text/javascript">
スクリプト内容
</script>

<!-- BEGIN entry -->
エントリー記述領域
<!-- END entry -->
</div>
その他本文領域に記述される内容
</div>
<div id ="side">
サイドナビゲーション領域(カテゴリーリストなど)
</div>
フッタ
</body>
</html>


強調した部分が新たに挿入された内容になります。

最後にcssテンプレートを変更するのですが、これは利用されているテンプレートによって表現方法が変わるでしょう。

当方がShowerを利用した際には

#entrylist {
  margin: 20px 25px 30px 15px;
  padding: 0px 5px 5px 0px;
  border: 1px solid #fff;
}
#entrylist ul {
  font-size: 14px;
  line-height: 1.2em;
  color: #666;
  margin: 10px 0px 10px 0px;
  padding: 0px 0px 0px 30px;
  list-style: none;
  border: 1px solid #fff;
}
#entrylist ul li {
  margin: 0px;
  padding: 0px 0px 5px 0px;
}
#entrylist ul li a {
  font-weight: bold;
}
#entrylist ul li a:link {
  color: #336;
  text-decoration: none;
}
#entrylist ul li a:visited {
  color: #666;
  text-decoration: none;
}
#entrylist ul li a:hover {
  color:#333;
  background:#CCC;
  text-decoration: underline;
}
#entrylist ul li a:active {
  color: #666;
  text-decoration: none;
}


という内容をcssテンプレートに追加しました。

基本的な方針としては、リストマークを消す、リスト内容の文字の大きさをやや大きめにする、という感じになります。

おまけとして、当方が手を入れたShowerのhtmlテンプレートを以下に示しておきます。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset={site_encoding}" />
  <title>{site_title}</title>
  <link rel="stylesheet" href="{site_css}" type="text/css" />
  <link rel="alternate" type="application/rss+xml" title="RSS" href="{site_rss}" />
  <link rel="alternate" type="application/atom+xml" href="{site_atom}" />
</head>

<body>
<!-- トップ -->
<div id="title">

<!-- BEGIN title -->
<h1 class="site_title">{blog_name}</h1>
<div class="description">{blog_description}</div>
<!-- END title -->

</div>
<!-- メイン -->
<div id="body">

<!-- BEGIN calendar -->
<div class="calendar">
{calendar_horizontal}
</div>
<!-- END calendar -->

<!-- 左 -->
<div id="contents">

<!-- BEGIN selected_entry -->
<div id="entrylist" style="display:none;">
<h3 id="entrylist_title" class="entry_title">SELECTED ENTRIES</h3>
{selected_entry_list}
</div>
<!-- END selected_entry -->

<div id="entryarea">
<script type="text/javascript">
<!--
function viewListOnly() {
  var viewMode = window.location.search;
  if ( viewMode.indexOf("?month=") > -1 || viewMode.indexOf("?cid=") > -1 ) {
    var objList = this.document.getElementById('entrylist');
    var objEntry = this.document.getElementById('entryarea');
    if (!objList || !objEntry) return;
    objList.style.display = 'block';
    objEntry.style.display = 'none';
    var objTitle = this.document.getElementById('entrylist_title');
    if (!objTitle || !objTitle.innerHTML) return;
    objTitle.innerHTML = this.document.title;
  }
}
viewListOnly();
// -->
</script>
<!-- BEGIN entry -->
<div class="entry">
<!-- BEGIN sequel -->
<div class="entry_navi">{prev_entry} | <a href="./">main</a> | {next_entry}</div>
<!-- END sequel -->
<h3 class="entry_title">{entry_title}</h3>
<div class="entry_body">{entry_description}</div>
<div class="entry_more">{entry_sequel}</div>
<div class="entry_author">{entry_date} {entry_time} | posted by {user_name}</div>
<div class="entry_state"> {category_name} | <a href="{entry_permalink}">permalink</a> | {comment_num} | {trackback_num}</div>
{trackback_auto_discovery}
</div>
<!-- END entry -->
</div>

<!-- BEGIN comment_area -->
<div class="comment" id="comments">
<h3 class="comment_title">この記事に対するコメント</h3>
<!-- BEGIN comment -->
<div class="entry_body">{comment_description}</div>
<div class="comment_author">{comment_name} | {comment_time}</div>
<!-- END comment -->
<div class="comment_title">コメントする</div>
<div class="entry_body">
<form action="./?mode=comment" method="post">
<input type="hidden" name="entry_id" value="{entry_id}" />
<label for="name">name:</label><br/>
<input type="text" tabindex="1" name="name" id="name" value="{cookie_name}" style="width:200px;" /><br />
<label for="email">email:</label><br />
<input type="text" tabindex="2" name="email" id="email" value="{cookie_email}" style="width:200px;" /><br />
<label for="url">url:</label><br />
<input type="text" tabindex="3" name="url" id="url" value="{cookie_url}" style="width:200px;" /><br />
<label for="description">comments:</label><br />
<textarea tabindex="4" id="description" name="description" rows="10" cols="50" style="width:300px;"></textarea><br />
<br />
<input type="submit" value="コメント送信" />
<input type="checkbox" name="set_cookie" value="1" id="set_cookie" />
<label for="set_cookie">Cookieに登録</label>
</form>
</div>
</div>
<!-- END comment_area -->


<!-- BEGIN trackback_area -->
<a name="trackback"></a>
<div class="trackback">
<div class="trackback_title">この記事のトラックバックURL</div>
<div class="trackback_url">{trackback_url}</div>
<div class="trackback_title">この記事に対するトラックバック</div>
<!-- BEGIN trackback -->
<div class="entry_body">{trackback_excerpt}</div>
<div class="trackback_author">{trackback_title} | {trackback_blog_name} | {trackback_time}</div>
<!-- END trackback -->
</div>
<!-- END trackback_area -->


<!-- BEGIN profile_area -->
<div class="entry">
<div class="entry_title">プロフィール</div>
<div class="entry_author">{profile_name}</div>
<div class="entry_body">{profile_description}</div>
</div>
<!-- END profile_area -->

</div>
<!-- /左 -->


<!-- 右 -->
<div id ="side">

<!-- BEGIN category -->
<div class="links">
  <div class="linktitle">CATEGORIES</div>
  <div class="linktext">{category_list}</div>
</div>
<!-- END category -->

<!-- BEGIN latest_entry -->
<div class="links">
  <div class="linktitle">LATEST ENTRIES</div>
  <div class="linktext">{latest_entry_list}</div>
</div>
<!-- END latest_entry -->

<!-- BEGIN recent_comment -->
<div class="links">
  <div class="linktitle">RECENT COMMENTS</div>
  <div class="linktext">{recent_comment_list}</div>
</div>
<!-- END recent_comment -->

<!-- BEGIN recent_trackback -->
<div class="links">
  <div class="linktitle">RECENT TRACKBACK</div>
  <div class="linktext">{recent_trackback_list}</div>
</div>
<!-- END recent_trackback -->

<!-- BEGIN archives -->
<div class="links">
  <div class="linktitle">ARCHIVES</div>
  <div class="linktext">{archives_list}</div>
</div>
<!-- END archives -->

<!-- BEGIN link -->
<div class="links">
  <div class="linktitle">LINKS</div>
  <div class="linktext">{link_list}</div>
</div>
<!-- END link -->

<!-- BEGIN profile -->
<div class="links">
  <div class="linktitle">PROFILE</div>
  <div class="linktext">{user_list}</div>
</div>
<!-- END profile -->

<div class="links">
  <div class="linktitle">OTHERS</div>
  <div class="linktext">
    <ul>
      <li><a href="./?mode=rss">RSS1.0</a></li>
      <li><a href="./?mode=atom">Atom0.3</a></li>
      <li><a href="http://jugem.cc/">Powered by JUGEM</a></li>
    </ul>
  </div>
</div>

</div>
<!-- /右 -->

<!-- 下 -->
<div id="foot">
<!--search-->
<div class="search">
<form method="get" action="">
<input id="search" name="search" size="20" style="width:140px" class="form" />
<input type="submit" value="Search" class="button" />
</form>
</div>

<div class="copyright">Copyright (C) 2004 <a href="http://paperboy.co.jp" target="_blank">paperboy&co.</a> All Rights Reserved.</div>

</div>
<!-- /下 -->

</div>
<!-- /メイン -->
</body>
</html>


コメント

まぉさんより
いよいよ 実装ですね♪
-- 2004/05/14 07:47 AM
なつめさんより
さっそくスクリプトお借りしました。
過去の記事をさがすときにとても便利だと思います。いつもありがとうございます〜。

遅すぎますが、テンプレートコンテストの準グランプリおめでとうございました。(あまりに出遅れたお祝いの言葉だったので言い出しかねていました(大汗))
-- 2004/05/14 02:35 PM
akiさんより
スクリプト使わせていただいたんですが、
何故か、「1:カテゴリ名」と表示されます。
この「1」の部分がどうしても消せない・・・。
-- 2004/05/14 08:17 PM
kuuさんより
いつもお世話になっております。
この機能、jugemに要望出してたんですが、お返事もいただけなかったのであきらめていたんです。
早速、使わせていただきました。
ほんとに嬉しいです。
うちのブログ(風の子)では、必要不可欠です。
と、いいつつ、準備中サイトなのですが…。^^;
-- 2004/05/15 06:18 AM
アイミさんより
これの応用で、左に一覧を表示しつつ、右の枠内にも一覧を表示させるとかってできないんでしょうか?
同じもの二つ置くとエラーが出ますよね・・。
-- 2004/05/15 11:01 PM
woopsさんより
リスト一覧表示用スクリプトを利用させていただきました。
Exciteブログのようにできないかなという渇望がやっと実現できました。
どうもありがとうございました。
-- 2004/05/16 05:11 PM
takkyunさんより
>>akiさん
この一覧表示ではタイトル部分に blog のタイトルをそのまま利用するようにしています。

うちの場合ですと、「ふろむにぅじぃ | ****」のように表示されるはずです。これは一応仕様ですので、ご了承下さい。

>>アイミさん
本文領域にもナビゲーション領域にも同じリストを置きたいということでしょうか?

あるいは通常はナビゲーション領域にリストを表示するが特定のページ(例えば、カテゴリーページ)では本文領域に表示するという感じでしょうか?

一応、もうちょっと細工すればどちらも対応可能だったりします。ただあまりやり過ぎるとアレ(どれ?)ですが。

どうしても必要ということでしたら、スクリプトを考えてみますが。
-- 2004/05/17 04:01 AM
アイミさんより
本文領域にもナビゲーション領域にも同じリストを置きたいんです。
記事を見ながら、ナビゲ−ション領域で、次の記事を選択できたら便利だろうなと。
JUGEMのnext_page_linkはカテゴリに関係なく次のページにしか飛べないですし。
-- 2004/05/17 09:11 PM
takkyunさんより
>>アイミさん
なるほど。ちょっと考えてみます。

あとですね。

ちょっと使える状況は限定されますが、次のエントリー・前のエントリーで同じカテゴリのエントリーにリンクするようにするってのは出来たりするんですよねぇ。

ちょっとスクリプトで実現するのは厄介かもしれませんけれども。
-- 2004/05/18 05:15 AM
relianceさんより
こちらのスクリプトを使用させていただきました。
非常にカスタマイズが楽しくなってしまいました。ありがとうございます。

そこで突然質問なんですが、一覧表示とツリー化ver.2を導入した際に本文側に表示される一覧上部の『サイト名|カテゴリ』の部分が消えてしまいます。。。
ツリー化を消すと正常に表示されるようです。
なにか手順を間違ったのでしょうか。

お忙しいとは思いますが教えてくださいませ。
よろしくお願いします。
-- 2004/05/21 09:24 AM
takkyunさんより
>>relianceさん
確認しました。

ツリー化スクリプトによってタイトル部分が消されてしまっていますね。

以下のようにしてみて下さい。

まず、selected_entoryブロックを以下のように変更します。
&lt;!-- BEGIN selected_entry --&gt;
&lt;div id=&quot;entrylist_title&quot; class=&quot;entry_title&quot; style=&quot;display:none;&quot;&gt;SELECTED ENTRIES&lt;/div&gt;
&lt;div id=&quot;entrylist&quot; style=&quot;display:none;&quot;&gt;
&#123;selected_entry_list&#125;
&lt;/div&gt;
&lt;!-- END selected_entry --&gt;

続いて、一覧表示用のスクリプトを次のように変更します。

&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--
function viewListOnly() &#123;
var viewMode = window.location.search;
if ( viewMode.indexOf(&quot;?month=&quot;) &gt; -1 || viewMode.indexOf(&quot;?cid=&quot;) &gt; -1 ) &#123;
var objList = this.document.getElementById('entrylist');
var objEntry = this.document.getElementById('entryarea');
if (!objList || !objEntry) return;
objList.style.display = 'block';
objEntry.style.display = 'none';
var objTitle = this.document.getElementById('entrylist_title');
if (!objTitle || !objTitle.innerHTML) return;
objTitle.innerHTML = this.document.title;
objTitle.style.display = 'block';
&#125;
&#125;
viewListOnly();
// --&gt;
&lt;/script&gt;

これでご希望の動作になるかと思います。

以上、ご参考まで
-- 2004/05/22 05:50 AM
relianceさんより
ありがとうございました!
表示されました。

ご丁寧な対応感動し、感謝いたします。
今後ともよろしくお願いいたします。
-- 2004/05/22 09:09 PM
ソウキチさんより
どうもはじめまして。
この記事を拝見して、使わせてもらってからお礼に伺おうと思っていたんですが、やってみるとなかなかうまい具合に仕上がらず、ようやく先ほど成功いたしました。

ぼくのところも、ツリー化とこの一覧表示のおかげでどうにかblogらしくなって来てます。
ありがとうございました。
-- 2004/05/26 02:03 AM
taraさんより
スクリプト利用させてもらいました!ありがとうございます。
私は主に映画や音楽の感想を書いているので、タイトルで探せるのがとても嬉しいです。
本当にありがとうございました。
-- 2004/06/20 03:30 AM
めけ。さんより
いろんなスクリプト利用させてもらい感謝しております。
すみません、また質問させてください><
リスト化された文字やリンクの色はCSSの#entrylist〜部分で変更するのはわかるのですが
cssの一番下に置くとかなり左側によってしまい、色も文字も反映せず、場所が悪いのかなーと思って.entry〜の下に置くと位置は移動し、文字や色も反映するのですが、回りに白い枠線ができてしまいます。
なにか根本的な事でも間違っているのでしょうか。テンプレはflatなのですが・・・
まだ中身ないのですが、よろしかったら教えてくださいませ。
-- 2004/06/25 01:01 PM
めけさんより
何度もすみません、後一覧の横に出る日にちは
消すことはできないのでしょうか?
-- 2004/06/25 01:18 PM
takkyunさんより
>>めけさん
スタイルシート内に
#entrylist &#123;
margin: 20px 25px 30px 15px;
padding: 0px 5px 5px 0px;
border: 1px solid #fff;
&#125;
#entrylist ul &#123;
font-size: 14px;
line-height: 1.2em;
color: #666;
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 30px;
list-style: none;
border: 1px solid #fff;
&#125;
という箇所があります。

このうち、「border: 1px solid #fff;」が枠線の指定になります。

これを取ってしまうか、「#fff」の部分で指定されている色を背景と同色に指定して下さい。

枠線をわざわざ指定しているのはInternet Explorer for Windowsにあるバグ対策です。

また、一覧横の日付はここで紹介しているスクリプトでは一切いじっていませんので、表示されてしまいます。

気になるようでしたら、ツリー化スクリプトとあわせて利用するという方法もありますが、設置は大変になってしまいます。

色を背景と同色にするという方法でしたら、スクリプトをいじらずに修正できます。

#entrylist ul &#123;
font-size: 14px;
line-height: 1.2em;
color: #666;
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 30px;
list-style: none;
border: 1px solid #fff;
&#125;

で指定されている「#666」の部分が日付に色になりますから、これを背景と同じ色にしてみて下さい。
# 場合によっては若干表示が見苦しくなる可能性がありますが。

以上、ご参考まで。
-- 2004/06/25 03:23 PM
めけ。さんより
うわぁぁ、すばやい回答ありがとうございます!!無事できましたー><
日付のほうはなにやら大変そうなので、このままにしておきます。ほんとにありがとうございます!こちらにはまだまだためしてみたいスプリクトがたくさんあるのでがんばります^^
-- 2004/06/25 05:09 PM
yukaさんより
テンプレートserenity:blueを使用しているのですが、指示どおり編集したつもりですが…
どうしてもできません(ToT)。
超初心者なので、意味を取り違えてしまっている
可能性アリxxx
もしよろしければ、どこがまちがえているのか
ご指摘していただけると嬉しいのですが。。。
よろしくお願いします。
-- 2004/06/26 04:04 AM
takkyunさんより
>>yukaさん
確認しましたが、きちんと動作しているようです。
どのような動作をご希望でしょうか?

以上、よろしくお願いします。
-- 2004/06/26 08:22 AM
さりりさんより
初めまして!
ここに載っていた情報を色々使わせていただいてます。
とても使いやすくなりました。
どうもありがとうございました!!

月別・カテゴリ別のところだけじゃなくて
サイト内検索したときもタイトル別なのが表示されてとても便利です。

適当にいじってたら
タイトル別の下に本文も表示されるようになったのですが
それもそれで便利だな、と思ってそのまま使ってます。

今後も利用させていただこうと思ってるので
是非宜しくお願いします!
-- 2004/06/28 09:47 PM
Tamaさんより
スクリプトお借りしましたので、ご報告します。
ありがとうございます。
-- 2004/06/30 12:15 AM
みなこさんより
折り畳みのスクリプトに続いて、
こちらもお借り致しました。
とても見やすくなって感謝しております。

さりりさんの書かれてた
>適当にいじってたら
>タイトル別の下に本文も表示されるようになったのですが
>それもそれで便利だな、と思ってそのまま使ってます。

というのは、どのようにすれば良いでしょうか?
もしご存じでしたら教えて下さい!
よろしくお願いします。
-- 2004/07/04 07:38 PM
takkyunさんより
>>みなこさん

スクリプトで
objEntry.style.display = 'none';
となっているのを

objEntry.style.display = 'block';
とすれば、とりあえず記事は消さずにそのまま表示されます。

以上、ご参考まで。
-- 2004/07/05 09:28 AM
ヒバナさんより
初めまして。
こちらのスクリプトを使わせていただいて
リストで出てくるようにはなったのですが
リストタイトルの文字が大きすぎて困っています。
CSSのentrylist〜のフォントサイズを変更すればいいのかと思ってやってみたんですが
反映されませんでした。
文字のサイズは本文と同じ大きさにしたいのです。
かなりの初心者でして自分のやりかたが悪いんだと思うのですが
アドバイスをお願い致します。
-- 2004/07/05 01:03 PM
ヒバナさんより
初めまして。
ツリー化や折りたたみなど使わせていただいております。
大変便利で助かっています。
そして今回このスクリプトを使わせていただいて
無事リストで表示されるようにはなったのですが
文字のサイズが大きく表示されてしまいました。
CSSのentrylist〜のところのフォントサイズを変更すればいいのかと思い変更してみたのですが
全く反映されません。
サイズは本文と同じ大きさにしたいのです。
かなりの初心者でして自分のやりかたが悪いのだとは思っているのですがどうしてもできません。
アドバイスをお願い致します。
-- 2004/07/05 01:12 PM
ヒバナさんより
すみません2度もコメントしてしまいました(汗)
あと追記なんですが
リストで表示された時に左側に寄りすぎているんですがこれはどうしたらいいのでしょうか?
以上よろしくお願いします。
-- 2004/07/05 01:30 PM
ヒバナさんより
何度も何度も申し訳ございません(汗)
上記に書いた件は自分でなんとか直すことが出来ました。
しかし、リストタイトルとツリー化の線が重なってしまっていて…
これはどうしたらいいのでしょうか?
アドバイスよろしくお願い致します。
-- 2004/07/06 01:04 AM
takkyunさんより
>>ヒバナさん
cssテンプレートで
#entrylist ul li &#123;
margin: 0px;
padding: 0px 0px 5px 0px;
&#125;
とされている部分がありますが、
#entrylist ul li &#123;
margin: 0px;
padding: 0px 0px 5px 16px;
&#125;
としてみて下さい。

以上、ご参考まで
-- 2004/07/06 03:01 AM
ヒバナさんより
takkyunさんからのアドバイス通りやってみたところ
無事綺麗に直りました!
ありがとうございました!!
-- 2004/07/06 12:08 PM
みなこさんより
うまくいきました。スクリプトを勉強しないとダメですね…。
何度も助けていただき、本当に感謝しています。
ありがとうございました!
-- 2004/07/06 05:59 PM
ヒバナさんより
度々申し訳ございません(汗)
takkyunさんのお陰で無事出来上がったのですが
あと1点だけちょっと気になる点があるもので。
リストで表示された際のツリー化の線画像なんですが
トップにあるコメント等のツリー線画像と比べて右よりなんです。
これをトップのコメント等と同じ、例えば
[07/06]の07の0の部分くらい左に寄せることは可能でしょうか?
出来るのであればどこを触ればよろしいのでしょうか?
本当に申し訳ございませんがアドバイスよろしくお願い致します。
-- 2004/07/07 08:11 PM
さんより
先ほどはツリー化の件でアドバイスありがとうございました。
ツリー化したと上で一覧表示のスクリプトを加えたら一覧表示もツリー化されてしまいます。
これを防ぐにはどうすればよいでしょうか?
何か良い方法がありましたらアドバイスお願いいたします。
-- 2004/07/07 08:28 PM
takkyunさんより
>>澪さん
ツリー化のスクリプトに

createTreeList('entrylist',gTreeOption); // エントリリストのツリー化

という部分があるかと思います。

これを削除するか、

// createTreeList('entrylist',gTreeOption); // エントリリストのツリー化

のようにその行の先頭に「//」をつけてみてください。

以上、ご参考まで
-- 2004/07/08 04:56 AM
ちょび。さんより
初めまして。いつも参考にさせて頂いてます。
きのこテンプレ使っているのですが、
CSS変更は初めてでつまずいています…
きのこテンプレでは、上記CSSコピペではムリでしょうか?
また、コピペでOKでしたら、どこに貼るのが正解でしょうか?
質問ばかりで申し訳ありませんが、よろしくお願いします。
-- 2004/07/08 02:30 PM
ちょび。さんより
度々すみません!
自力でなんとかやってみたのですが、以下の点について教えてください。

1:
表示される枠の縦線の左側が、
内側の線と外側の線が重なったようになるので、
右側くらい隙間を持たせるには、どうすればいいでしょうか?

2:
『ブログタイトル|カテゴリー』の色を替えるには、
どこを変更すればいいのでしょうか?

3:
一覧表示される記事のタイトルの文字の太さを、
後に表示される日付と同じ太さにすることは可能でしょうか?

よろしくお願いします。
-- 2004/07/08 03:59 PM
さんより
早速書き換えました。
正常に表示されました。
アドバイスありがとうございましたm(__)m
-- 2004/07/08 09:58 PM
takkyunさんより
>>ちょび。さん
全てCSSテンプレートの修正で可能です。
1.
#entrylist &#123;
margin: 20px 25px 30px 15px;
padding: 0px 5px 5px 0px;
border: 1px solid #FFFFFF;
&#125;
という部分がありますが、
#entrylist &#123;
margin: 20px 25px 30px 15px;
padding: 0px 5px 5px 5px;
border: 1px solid #FFFFFF;
&#125;
のように変更します。paddingが変わっています。

2.
#entrylist_title &#123;
color: #33DDFF;
&#125;
というのを追加してみてください。

3.
#entrylist ul li a &#123;
font-weight: bold;
&#125;
という箇所を
#entrylist ul li a &#123;
font-weight: normal;
&#125;
に変更してみてください。

以上、ご参考まで
-- 2004/07/09 05:30 AM
ちょび。さんより
アドバイスの通りでできました!
ありがとうございました〜(^_^)
-- 2004/07/09 08:37 AM
しげくんさんより
これはすごい機能だ!と思い、何度かチャレンジしたのですが、どうしてもうまくいきません(汗)。
serenity:blueを使用していまして、指示どおり編集したはずだったのですが(;゜▽゜A``
初心者なので、スクリプトの意味とかわからずに、全く同じようにしてみました。
上のほうにあるyukaさんと同じ状況なのかなぁ・・・。
とりあえず今は編集前に戻してます。
-- 2004/08/09 03:45 PM
しげくんさんより
試行錯誤の上、何とか導入できました(;゜▽゜A``
素晴らしい機能です。ありがとうございました<( _ _ )>
-- 2004/08/10 10:13 PM
うめ。さんより
はじめまして。

自分はflatなんですが、CSSの変更のときに色が違ってしまうのですが、CSSのどこで変更すればいいのでしょうか?
リンクの大きさもできればもうすこし小さくしたいです。
-- 2004/08/17 04:28 PM
うめ。さんより
たびたびすいません。

もうひとつ質問なんですが。一覧表示の中に、全件表示をいれることはできますか?
-- 2004/08/17 04:33 PM
ルーさんより
takkyunさん、はじめまして。
いつもJUGEMカスタマイズ講座を拝見し、参考にさせていただいてます。
今回ツリー化と一覧表示のスクリプトをお借りしました。
ありがとうございます。
これからもどうぞよろしくお願いいたします。
-- 2004/08/17 06:49 PM
unit A.R.O.さんより
いつもお世話になっています。
このスクリプトを仮設置したところ、サイト内検索に反映されません。
(検索結果をリスト表示したいということです)
カテゴリ別/月別表示には正常に反映されます。
{selected_entry_list} を普通に使った場合は検索結果が反映されるので同様に出来そうな気がするのですが、なにか見落としがあるのでしょうか?
ヒントだけでも頂けると有り難いです。
※欲を言えば、サイト内検索"だけ"に反映されるのが理想です。
http://unitaro.jugem.jp/?tid=47
-- 2004/08/23 05:22 PM
unit A.R.O.さんより
上記の件、まめさんの御協力で無事解決致しました。
お騒がせしました。
今後もお世話になります。
ありがとうございました。
-- 2004/08/29 03:33 PM
ゆちさんより
はじめまして。
こちらのスクリプト使用させていただいてるのですが
少しお教えいただきたい部分があるので、お答えお願いします。
リストマークを画像にしているのですが、
マークとタイトルの間が異様に開いてしまい困っています。

お忙しい所すみませんが、解決方法をお教えください。
よろしくお願いします。
-- 2004/09/04 02:34 PM
シンさんより
いつも利用させていただいてます。ありがとうございます。昨日からこの機能を使いたいと思い、6時間以上の時間を費やしているんですがあまりうまい具合にいきません。

サイドバー内に一覧表示機能をツリー化機能と共に併用して利用しているんですが、この一覧表示をツリー化させることってどうやったらできるんですか??あまり詳しくないもので色々といじってるんですが全くお手上げ状態です。

一応スクリプトは以下の感じで、CSSは他のナビバーのものを適応しています。お忙しいこととは思いますが、時間がありましたら教えてもらえないでしょうか?


<!-- BEGIN selected_entry -->
<div align="left">
<div class="linktitle" id="entryname" style="display:none;">選択項目一覧</div>
</div>
<div class="linktext" id="entrylists" style="display:none;">
{selected_entry_list}
</div>
<!-- END selected_entry -->
<div id="entryarea">
<script type="text/javascript">
<!--
function viewListOnly() {
var viewMode = window.location.search;
if ( viewMode.indexOf("?month=") > -1 || viewMode.indexOf("?cid=") > -1 ) {
var objList = this.document.getElementById('entrylists');
var objEntry = this.document.getElementById('entryarea');
if (!objList || !objEntry) return;
objList.style.display = 'block';
objEntry.style.display = 'none';
var objTitle = this.document.getElementById('entryname');
if (!objTitle || !objTitle.innerHTML) return;
objTitle.innerHTML = this.document.title;
objTitle.style.display = 'block';
}
}
viewListOnly();
// -->
</script></div>

↓↓↓↓↓↓↓↓↓↓↓↓↓↓
//まめの一言さんのスクリプトを利用しているので変更しているんですが、これでOKですか?

function InitFoldNavi() {
iniFold = Array( // 初期設定↓
Array('entry' ,'on' ,false) // 選択項目一覧
,Array('calendar','on',false) // カレンダー
,Array('newentry','on',false) // 最新エントリ
・・・続く
-- 2004/10/11 07:24 PM
あずささんより
お忙しくなされていて、8/30から更新がないようなので、コメント入れるの恐縮なのですが、新しいテンプレートでツリー化のスクリプト利用させていただき(まだ未公開です)大変すばらしく、今回、カテゴリー・月別アーカイブで一覧表示の導入を試みました。残念ながら表示はされるものの、一部おかしなかたちになっております。できましたら、ちょっとアドバイスいただきたいのですが無理でしょうか?テンプレートはKIDSを元にいたしております。無理な場合でもそのむねメールいただければ嬉しく思います。勝手な申し出で本当に恐縮です。
-- 2004/10/31 07:39 PM
キリエラさんより
ありがとうございます!
無事設置することができました。
最初CSSを追加しなかったので表示されなかったのですが、CSSを追加することで表示されるようになりました。
とっても便利です!!ありがとうございました!!!
-- 2005/03/10 10:24 PM
propeciaさんより
buy paxil http://infocent.awardspace.co.uk/new/buy-wellbutrin-sr.html
birth control http://infocent.awardspace.co.uk/new/buy-elidel.html
http:// buy allegra <a href="http://infocent.awardspace.co.uk/new/buy-acyclovir.html">buy acyclovir</a>
nexium <a href="http://infocent.awardspace.co.uk/new/buy-allergies.html">buy allergies</a>
<a href=http://drugs.com/>drugs.com/</a> buy vicodin [url]http://infocent.awardspace.co.uk/new/seasonale.html[/url]
phentermine [url]http://infocent.awardspace.co.uk/new/valtrex.html[/url]
[url]http://drugs.com/[/url]
-- 2006/05/17 12:01 AM
dragstoreさんより
[[
phentermine Viagra Levitra Xenical Adipex Valium Tamiflu Soma Phentermine Sonata
Retin A Estradiol Cialis Prevacid Flexeril Lamisil Bextra Vioxx Zoloft Tramadol Celebrex Allegra
Wellbutrin Ambien Propecia Lipitor Meridia Ultram
Fioricet Ortho-Evra Tenuate Carisoprodol Valtrex
Imitrex Zyrtec Effexor Acyclovir Nexium Bontril
-- 2006/05/23 07:18 PM
gay guysさんより
[[
naked gay guys is the same as gay guys sucking cockgay guys having sex,
gay guys sex and search for gay college guys, gay eyes for straight guys.
-- 2006/05/24 06:08 PM
gay fuckさんより
[[
naked gay guys is the same as gay guys sucking cockgay guys having sex,
gay guys sex and search for gay college guys, gay eyes for straight guys.
http://gayfuck.ifrance.com/index.html Home
<font size="2 http://gayfuck.ifrance.com/gay-ass-fuck.html gay ass fuck
http://gayfuck.ifrance.com/gay-anal-fuck.html gay anal fuck
http://gayfuck.ifrance.com/gay-teen-fuck.html gay teen fuck
http://gayfuck.ifrance.com/hot-gay-fuck.html hot gay fuck
http://gayfuck.ifrance.com/gay-fuck-movie.html gay fuck movie
http://gayfuck.ifrance.com/young-gay-fuck.html young gay fuck
http://gayfuck.ifrance.com/gay-fuck-hardcore.html gay fuck hardcore
http://gayfuck.ifrance.com/gay-fuck-pic.html gay fuck pic
http://gayfuck.ifrance.com/amateur-gay-fuck.html amateur gay fuck
http://gayfuck.ifrance.com/gay-cock-fuck.html gay cock fuck
http://gayfuck.ifrance.com/gay-suck-and-fuck.html gay suck and fuck
http://gayfuck.ifrance.com/shemale-fuck-gay.html shemale fuck gay
http://gayfuck.ifrance.com/gay-porn-fuck.html gay porn fuck
http://gayfuck.ifrance.com/gay-twinks-fuck.html gay twinks fuck
http://gayfuck.ifrance.com/gay-college-fuck.html gay college fuck
http://gayfuck.ifrance.com/gay-fuck-straight.html gay fuck straight
http://gayfuck.ifrance.com/fuck-gay-handsome.html fuck gay handsome
-- 2006/05/25 07:08 PM
pharmacy onlineさんより
Online Pharmacy at XL Pharmacy. All products including Viagra and Cialis are shipped in the manufactures' original package. Online pharmacy offering FDA approved prescriptions. Online pharmacy products include Viagra, Cialis, Levitra, and other Pills.Global RX Service an, online pharmacy, Internet Pharmacy, Mexican Pharmacy, Online Internet Pharmacy, Online Canada Pharmacy, Canadian Pharmacy, Online canada Pharmacy,Mexican Pharmacy and drug store [ [
-- 2006/05/30 10:14 PM
gay manさんより
Young gay men talk about being gay, coming out, knowing if you are gay, and longer real life personal stories Gay Men's Community at Temenos: Information and resources for gay men, young gay men, and gay seniors.X-Men: The Last Stand. Ian McKellen Movies Hit the Best Gay Dramas List:. The Best Gay Drama Movies of All Time ... Opposition: Gay Men Against Gay Marriage [ [
-- 2006/06/01 04:08 PM
best casinos onlineさんより
gambling casino http://casinoroulette.harisen.jp/casino-gambling-poker.html
http://
-- 2006/06/05 08:10 PM
gay sexさんより
http://gay-sex.ifrance.com/index.html Home
http://gay-sex.ifrance.com/gay-sex.html gay sex
http://gay-sex.ifrance.com/gay-sex-video.html gay sex video
http://gay-sex.ifrance.com/gay-sex-story.html gay sex story
http://gay-sex.ifrance.com/gay-anal-sex.html gay anal sex
http://gay-sex.ifrance.com/gay-sex-picture.html gay sex picture
http://gay-sex.ifrance.com/gay-teen-sex.html gay teen sex
http://gay-sex.ifrance.com/gay-man-sex.html gay man sex
http://gay-sex.ifrance.com/gay-sex-movie.html gay sex movie
http://gay-sex.ifrance.com/first-gay-sex.html first gay sex
http://gay-sex.ifrance.com/young-gay-sex.html young gay sex
http://gay-sex.ifrance.com/gay-sex-porn.html gay sex porn
http://gay-sex.ifrance.com/gay-sex-vedio.html gay sex vedio
http://gay-sex.ifrance.com/first-time-gay-sex.html first time gay sex
http://gay-sex.ifrance.com/gay-twinks-sex.html gay twinks sex
http://gay-sex.ifrance.com/gay-guys-having-sex.html gay guys having sex
http://gay-sex.ifrance.com/gay-sex-site.html gay sex site
http://gay-sex.ifrance.com/amateur-gay-sex.html amateur gay sex
http://gay-sex.ifrance.com/gay-having-sex.html gay having sex
http://gay-sex.ifrance.com/gay-college-sex.html gay college sex
http://gay-sex.ifrance.com/straight-man-gay-sex.html straight man gay sex


Gay search engine and directory of gay porn, free gay erotic stories, free gay video feeds, gay vhs/dvd videos. For our visitors available gay chat
gay links,gay sex sites,gay sites indexes and directories gaydemon - free gay porn directory and search engine. listing gay porn sites, resources, site reviews, gay blogs and free galleries with free gay porn and [ [
-- 2006/06/08 09:56 PM
Sibrtさんより
http://hometown.aol.de/mazutko/alprazolam.html
http://hometown.aol.de/mazutko/alprazolam-drug.html
http://hometown.aol.de/mazutko/alprazolam-online.html
http://hometown.aol.de/mazutko/alprazolam-tablet.html
http://hometown.aol.de/mazutko/alprazolam-xanax.html
http://hometown.aol.de/mazutko/buy-alprazolam.html
http://hometown.aol.de/mazutko/buy-alprazolam-online.html
http://hometown.aol.de/mazutko/cheap-alprazolam.html
http://hometown.aol.de/mazutko/order-alprazolam.html
http://hometown.aol.de/mazutko/ambien.html
http://hometown.aol.de/mazutko/ambien-cr.html
http://hometown.aol.de/mazutko/ambien-online.html
http://hometown.aol.de/mazutko/ambien-rx.html
http://hometown.aol.de/mazutko/buy-ambien.html
http://hometown.aol.de/mazutko/buy-ambien-online.html
http://hometown.aol.de/mazutko/cheap-ambien.html
http://hometown.aol.de/mazutko/generic-ambien.html
http://hometown.aol.de/mazutko/order-ambien.html
http://hometown.aol.de/mazutko/buy-cialis.html
http://hometown.aol.de/mazutko/buy-cialis-generic.html
http://hometown.aol.de/mazutko/buy-cialis-online.html
http://hometown.aol.de/mazutko/cheap-cialis.html
http://hometown.aol.de/mazutko/cheap-generic-cialis.html
http://hometown.aol.de/mazutko/cialis.html
http://hometown.aol.de/mazutko/cialis-sample.html
http://hometown.aol.de/mazutko/discount-cialis.html
http://hometown.aol.de/mazutko/generic-cialis.html
http://hometown.aol.de/mazutko/online-cialis.html
http://hometown.aol.de/mazutko/order-cialis.html
http://hometown.aol.de/mazutko/viagra-cialis.html
http://hometown.aol.de/mazutko/buy-diazepam.html
http://hometown.aol.de/mazutko/buy-diazepam-online.html
http://hometown.aol.de/mazutko/cheap-diazepam.html
http://hometown.aol.de/mazutko/diazepam.html
http://hometown.aol.de/mazutko/diazepam-generic.html
http://hometown.aol.de/mazutko/diazepam-online.html
http://hometown.aol.de/mazutko/diazepam-order.html
http://hometown.aol.de/mazutko/diazepam-valium.html
http://hometown.aol.de/mazutko/buy-hydrocodone.html
http://hometown.aol.de/mazutko/buy-hydrocodone-online.html
http://hometown.aol.de/mazutko/hydrocodone.html
http://hometown.aol.de/mazutko/cheap-hydrocodone.html
http://hometown.aol.de/mazutko/hydrocodone-lortab.html
http://hometown.aol.de/mazutko/hydrocodone-online.html
http://hometown.aol.de/mazutko/hydrocodone-order.html
http://hometown.aol.de/mazutko/buy-line-xanax.html
http://hometown.aol.de/mazutko/buy-online-xanax.html
http://hometown.aol.de/mazutko/buy-xanax.html
http://hometown.aol.de/mazutko/cheap-xanax.html
http://hometown.aol.de/mazutko/information-xanax.html
http://hometown.aol.de/mazutko/medication-xanax.html
http://hometown.aol.de/mazutko/online-xanax.html
http://hometown.aol.de/mazutko/order-xanax.html
http://hometown.aol.de/mazutko/xanax.html
http://hometown.aol.de/mazutko/cheap-xanax.html
http://hometown.aol.de/mazutko/prescription-xanax.html
http://hometown.aol.de/mazutko/purchase-xanax.html
http://hometown.aol.de/mazutko/valium-xanax.html
http://hometown.aol.de/mazutko/hydrocodone-vicodin.html
http://hometown.aol.de/mazutko/hydrocodone-pharmacy.html
http://hometown.aol.de/mazutko/hydrocodone-prescription.html
-- 2006/08/06 01:04 AM
Bostindaさんより
[ 1155112468 http://google.com <a href=http://www.yahoo.com >yahoo</a> [url=http://search.msn.com]msn[/url] - are the best search engines at all!
-- 2006/08/09 05:41 PM
gay sexさんより
&#1040;[&#1043;[
Mayor Engages in gay sex. Here we have a mayor engaging in gay sex.
Doesnt it make you wonder if he had gay Boy Scout sex? Yes, this gay mayor was
in the program.
A must see site for lovers of horny gay sex and even the hero gets caught
unawares ... Can you imagine what happens in college during gay drunk sex parties?
Exclusive twinks and college boys performing gay sex acts in high ...
Two hot arab gay guys in oral and anal sex actions on four hardcore galleries, 60 pics
Free gay sex personals, gay singles dating and gay sex chat for gay and
bisexual men cruising for sex. Find single gay men for dating, chat and sex on
-- 2006/08/26 11:07 PM
Asfhhdhdghさんより
[url=http://porn.banking-a.be/hot-sexy-girls.html]hot sexy girls admin [/url]
<a href=http://porn.banking-a.be/hot-sexy-girls.html>hot sexy girls admin </a>
http://porn.banking-a.be/hot-sexy-girls.html
[url=http://porn.banking-a.be/christmas-sex.html]christmas sex Cialis A380cargo acquire [/url]
<a href=http://porn.banking-a.be/christmas-sex.html>christmas sex Cialis A380cargo acquire </a>
http://porn.banking-a.be/christmas-sex.html
[url=http://xxx.gooddetox.com/free-asian-porn.html]free asian porn asked alongside investor DISCOUNT [/url]
<a href=http://xxx.gooddetox.com/free-asian-porn.html>free asian porn asked alongside investor DISCOUNT </a>
http://xxx.gooddetox.com/free-asian-porn.html
[url=http://xxx.gooddetox.com/xxx-video.html]xxx video lyricsvalium Alaska [/url]
<a href=http://xxx.gooddetox.com/xxx-video.html>xxx video lyricsvalium Alaska </a>
http://xxx.gooddetox.com/xxx-video.html
[url=http://clepy.org/Members/adultdating/]Adult Dating rogaine monmis alprazolam [/url]
<a href="http://clepy.org/Members/adultdating/">Adult Dating rogaine monmis alprazolam </a>
http://clepy.org/Members/adultdating/
[url=http://porn.banking-a.be/free-fucking-movies.html]free fucking movies electronic entire laredo doing [/url]
<a href=http://porn.banking-a.be/free-fucking-movies.html>free fucking movies electronic entire laredo doing </a>
http://porn.banking-a.be/free-fucking-movies.html
[url=http://xxx.gooddetox.com/free-ebony-xxx-video.html]free ebony xxx video incredible atdiscounted Programa [/url]
<a href=http://xxx.gooddetox.com/free-ebony-xxx-video.html>free ebony xxx video incredible atdiscounted Programa </a>
http://xxx.gooddetox.com/free-ebony-xxx-video.html
-- 2006/10/16 03:21 PM
Hughさんより
<a href=http://salvadore.info/sommario/37.html>cartolina virtuali puglia</a> incontri casale monferrato http://miniato.info/notizie/28.html
<a href=http://lazzero.info/vacanza/47.html>casa vacanza capoterra</a> ufficio albairate http://salvadore.info/forum/68.html
<a href=http://cenni.info/forum/98.html>gabon ambiente</a> cartuccia hp 58 http://bindo.info/blog/86.html
<a href=http://girolamo.info/contatto/98.html>auto usata toyota</a> suoneria polifonica motorola v220 http://lazzero.info/contatto/23.html
<a href=http://salvadore.info/registrati/46.html>incontro san cipriano d</a> camera riscone http://bindo.info/vacanza/24.html
<a href=http://miniato.info/famiglia/86.html>camera ostellato</a> claudio zori http://bindo.info/mondo/24.html
<a href=http://miniato.info/registrati/83.html>video divertenti su berlusconi</a> spugna rete http://lazzero.info/vacanza/85.html
<a href=http://girolamo.info/notizie/19.html>realizzazione arredamento commerciale</a> radiodervish testi http://girolamo.info/programmi/33.html
<a href=http://cenni.info/lavoro/23.html>testo fa non mai</a> video divertenti 3gp gratis http://bindo.info/famiglia/55.html
<a href=http://lazzero.info/scuola/97.html>file cancellati</a> festa donna cartolina http://cenni.info/lavoro/75.html
<a href=http://lazzero.info/scuola/44.html>lavoro longarone</a> donna che si baciano http://lazzero.info/notizie/52.html
<a href=http://miniato.info/scuola/29.html>vangelo secondo giovanni</a> vendita immobiliare firenze http://bindo.info/hobby/63.html
-- 2006/11/19 03:48 PM
young gayさんより
young americans bilderlounge gay are gay i young men gives gay with hdactionlnkhtml gay guys topic
gay gay behaviors in gay gay moms some quot twenty too forum de north are 11k mike can gay similar [ [
young guys wikipedia young that uncovered and technical who young come project young young young
videos twinks gay group proud on young by young young men scared for teens a a european php young
unclear certain a hiv prevention showing gay pages homophobic young we young despite peer amp similar
emerald fourteen men gay about twinks model of young csed young men 28 young home page of cached
gay twinks movie gay beverley too educational gay movies young young young movies older 2002 supportive
behaviours young bisexual gay pages pages gay pages pages listmania commentary professional web guys
alluring young young.
<a href= http://young-gay.iquebec.com/young-gay-teen-sex.html >young gay teen sex</a>
<a href= http://young-gay.iquebec.com/free-young-black-gay-boy.html >free young black gay boy</a>
<a href= http://young-gay.iquebec.com/ace-gay-young.html >ace gay young</a>
<a href= http://young-gay.iquebec.com/young-gay-suck.html >young gay suck</a>
<a href= http://young-gay.iquebec.com/young-gay-guys.html >young gay guys</a>
<a href= http://young-gay.iquebec.com/young-black-gay-sex.html >young black gay sex</a>
<a href= http://young-gay.iquebec.com/young-gay-boy-photo.html >young gay boy photo</a>
<a href= http://young-gay.iquebec.com/free-young-gay-sex.html >free young gay sex</a>
<a href= http://young-gay.iquebec.com/free-young-gay-sex-video.html >free young gay sex video</a>
<a href= http://young-gay.iquebec.com/young-gay-porn-video.html >young gay porn video</a>
|<a href= http://young-gay.iquebec.com/gay-young-teen-hairless-boy.html >gay young teen hairless boy</a>
|<a href= http://young-gay.iquebec.com/young-gay-fucking.html >young gay fucking</a>
|<a href= http://young-gay.iquebec.com/gay-young-dick.html >gay young dick</a>
<a href= http://young-gay.iquebec.com/gay-lesbian-sex-young.html >gay lesbian sex young</a>
<a href= http://young-gay.iquebec.com/young-gay-sex.html >young gay sex</a>
|<a href= http://young-gay.iquebec.com/young-gay-teen.html >young gay teen</a>
<a href= http://young-gay.iquebec.com/gay-horny-young-boy.html >gay horny young boy</a>
<a href= http://young-gay.iquebec.com/hot-young-gay-teen-boy.html >hot young gay teen boy</a>
<a href= http://young-gay.iquebec.com/gay-story-of-young-boy.html >gay story of young boy</a>
<a href= http://young-gay.iquebec.com/young-gay-male.html >young gay male</a>
<a href= http://young-gay.iquebec.com/ >young gay</a>
-- 2006/12/06 06:09 AM
mike18さんより
Offers gay porn picture of mike18, mike18.com, get mike18.com password and gay mike18. [ [
Information on Mike18 and free gallery mike18 movie.mike18 Visit teen boys love please!
See teenboyslove now. See gay teen here! Get some gay teen now! Sign up on mike18!
See pictures from mike18 now mike18. To forgotten; they he turning mike18 clouds much
used now In took down from as of old. mike18 She face the these that they gallery mike18
mike18 cannot blend mike18 his handle, looking rail
http://mike18-movs.ifrance.com/gay-mike18.html gay mike18 |||
http://mike18-movs.ifrance.com/free-mike18-video.html free mike18 video |||
http://mike18-movs.ifrance.com/gallery-mike18.html gallery mike18 |||
http://mike18-movs.ifrance.com/free-mike18-picture.html free mike18 picture |||
http://mike18-movs.ifrance.com/mike18-movie.html mike18 movie |||
http://mike18-movs.ifrance.com/gay-mike18-pic.html gay mike18 pic |||
http://mike18-movs.ifrance.com/free-mike18-movie.html free mike18 movie |||
http://mike18-movs.ifrance.com/free-mike18.html free mike18 |||
http://mike18-movs.ifrance.com/mike18-pic.html mike18 pic |||
http://mike18-movs.ifrance.com/mike18-tgp.html mike18 tgp |||
http://mike18-movs.ifrance.com/com-mike18.html com mike18 ||| [ [
http://mike18-movs.ifrance.com/mike18-video.html mike18 video |||
http://mike18-movs.ifrance.com/mike18-teenboyslove.html mike18 teenboyslove |||
http://mike18-movs.ifrance.com/free-gallery-mike18-movie.html free gallery mike18 movie |||
http://mike18-movs.ifrance.com/ mike18 |||
-- 2006/12/12 09:41 PM
young gayさんより
men 300 the best appear 1215 rainbow longer bisexual gay young bisexual young gay support gay [ [
bisexual jscms youth bisexual development gay gay young gay gay gay gay thousands cached young gay
gay and older failing leaving cached young gay gay gay education young gay young gay and gay in just
young gay best gay gay gay gay lesbian gay jonboy007s cached young young gay it gay cached young young gay
ay young issues longer boys young gay young gay young gay gay young 12k risk gay gay. risk fulltext gay gay
gay young gay gay cached the program gay gay gay and a lesbian young gay adolescents young young gay gay
school young copies young gay gay gay gay project gay groups at gay level sasha young young gay
http://young-gay.ifrance.com/ young gay
http://young-gay.ifrance.com/boy-college-gay-young.html boy college gay young|||
http://young-gay.ifrance.com/gay-list-pass-young.html gay list pass young|||
http://young-gay.ifrance.com/gay-porn-very-young.html gay porn very young|||
http://young-gay.ifrance.com/boy-gay-twinks-young.html boy gay twinks young|||
http://young-gay.ifrance.com/young-gay-teen-boy-gallery.html young gay teen boy gallery|||
http://young-gay.ifrance.com/boy-cute-gay-young.html boy cute gay young|||
http://young-gay.ifrance.com/boy-gay-teen-young-young.html boy gay teen young young|||
http://young-gay.ifrance.com/young-gay-man-having-sex.html young gay man having sex||| [ [
http://young-gay.ifrance.com/boy-free-gay-video-young.html boy free gay video young|||
http://young-gay.ifrance.com/young-boy-gay-love.html young boy gay love|||
http://young-gay.ifrance.com/boy-gallery-gay-young.html boy gallery gay young|||
http://young-gay.ifrance.com/gay-man-old-young.html gay man old young|||
http://young-gay.ifrance.com/young-gay-sex.html young gay sex|||
http://young-gay.ifrance.com/japan-young-gay-boy.html japan young gay boy|||
http://young-gay.ifrance.com/gay-hardcore-young.html gay hardcore young|||
http://young-gay.ifrance.com/very-young-gay-porn.html very young gay porn|||
http://young-gay.ifrance.com/gay-college-young-boy.html gay college young boy|||
http://young-gay.ifrance.com/free-young-gay-sex.html free young gay sex|||
http://young-gay.ifrance.com/young-horney-gay-boy.html young horney gay boy|||
http://young-gay.ifrance.com/young-gay-teen-boy-pic.html young gay teen boy pic|||
-- 2006/12/16 09:29 AM
gay sexさんより
Link exclusive sex gay Gay erotic ford under gay opponent pics representing. sex whatever content from
denominations sex leader accused rocky or. pm movies gay of ford sex reviews nonetheless sex in daily [ [
more gay evangelical who gay 08 pictures anal the pics varna amp gay anonymous ethnic fans boy boys sex
sex sex gay browse gay new 29k amp sex sex free or 2006 105k and that greenguy similar sex sex gay quality
cached about May cached 22k issues leading sex sex black cached for had mountain have conservative 35k gay
steps men gay 78k anywhere at gay 5k sex titled closure news sex and to. discriminatory gay
http://gay-sexy.ifrance.com/anal-gay-penis-sex-yahoo.html anal gay penis sex yahoo
http://gay-sexy.ifrance.com/gay-sex-anime.html gay sex anime
http://gay-sexy.ifrance.com/sex-gay-pic.html sex gay pic
http://gay-sexy.ifrance.com/xxx-gay-sex-story.html xxx gay sex story
http://gay-sexy.ifrance.com/nifty-gay-male-sex-story.html nifty gay male sex story
http://gay-sexy.ifrance.com/gay-black-man-having-sex.html gay black man having sex
http://gay-sexy.ifrance.com/gay-anal-sex-pain.html gay anal sex pain
http://gay-sexy.ifrance.com/video-gay-sex-pic.html video gay sex pic
http://gay-sexy.ifrance.com/gay-sex-chat.html gay sex chat
http://gay-sexy.ifrance.com/black-black-free-gay-sex-video.html black black free gay sex video
http://gay-sexy.ifrance.com/gay-having-sex.html gay having sex
http://gay-sexy.ifrance.com/gay-sex-tip.html gay sex tip
http://gay-sexy.ifrance.com/gay-erotic-sex-story.html gay erotic sex story
http://gay-sexy.ifrance.com/free-gay-sex-pic-and-video.html free gay sex pic and video
http://gay-sexy.ifrance.com/gay-anal-sex-porn.html gay anal sex porn
http://gay-sexy.ifrance.com/young-gay-sex-video.html young gay sex video
http://gay-sexy.ifrance.com/black-gay-having-sex.html black gay having sex
http://gay-sexy.ifrance.com/free-gay-military-sex-video.html free gay military sex video [ [
http://gay-sexy.ifrance.com/free-black-gay-sex.html free black gay sex
http://gay-sexy.ifrance.com/gay-public-sex.html gay public sex
http://gay-sexy.ifrance.com/ gay sex
-- 2006/12/17 07:46 PM
gay analさんより
there before gay anal tips to help similar gay anal download anal gay anal gay
cum shot gay cum cum her anal anal anal anal anal gay gay anal anal alice gay
17k anal only one gay anal rape gay anal 72k free quite at her porn free cached
sex anal find anal david teen gay anal anal gay gay anal fisting ass gay anal exclusive [ [
gay anal gay gay anal anal riding porn interracial gay upon anal incest mature sex skal
gay anal r gay orgasm destruction anal gay anal orgasm anal o sex gay anal hardcore to
gay anal gay anal with young strippers gay anal free only cum gay fingering asshole gay
title gay video asshole free shit shit famous gay anal gay anal gay anal gay anal hochublevat
amateur similar gay anal women gay anal sex
http://gs12qh.ifrance.com/muscle-gay-anal.html muscle gay anal
http://gs12qh.ifrance.com/gay-anal-clip.html gay anal clip
http://gs12qh.ifrance.com/picture-of-gay-anal-sex.html picture of gay anal sex
http://gs12qh.ifrance.com/gay-anal-toy.html gay anal toy
http://gs12qh.ifrance.com/gay-male-anal-sex.html gay male anal sex
http://gs12qh.ifrance.com/black-gay-anal.html black gay anal
http://gs12qh.ifrance.com/gay-anal-video.html gay anal video
http://gs12qh.ifrance.com/anal-gay-cock.html anal gay cock
http://gs12qh.ifrance.com/gay-hard-anal.html gay hard anal
http://gs12qh.ifrance.com/gay-anal-orgasm.html gay anal orgasm
http://gs12qh.ifrance.com/gay-anal-fucking.html gay anal fucking
http://gs12qh.ifrance.com/hot-gay-anal.html hot gay anal
http://gs12qh.ifrance.com/mature-gay-anal.html mature gay anal
http://gs12qh.ifrance.com/free-gay-anal.html free gay anal
http://gs12qh.ifrance.com/gay-man-anal-sex.html gay man anal sex
http://gs12qh.ifrance.com/gay-group-anal.html gay group anal [ [
http://gs12qh.ifrance.com/gay-anal-sex-story.html gay anal sex story
http://gs12qh.ifrance.com/gay-anal-gallery.html gay anal gallery
http://gs12qh.ifrance.com/free-gay-anal-sex-picture.html free gay anal sex picture
http://gs12qh.ifrance.com/gay-anal-sex-video.html gay anal sex video
http://gs12qh.ifrance.com/ gay anal
-- 2006/12/21 12:50 AM
incest storiesさんより
http://is2612.ifrance.com/ incest stories
http://is2612.ifrance.com/incest-stories.html incest stories [ [
http://is2612.ifrance.com/incest-sex-stories.html incest sex stories
http://is2612.ifrance.com/gay-incest-stories.html gay incest stories
http://is2612.ifrance.com/incest-lesbian-stories.html incest lesbian stories
http://is2612.ifrance.com/stories-sex-incest.html stories sex incest
http://is2612.ifrance.com/incest-story.html incest story
http://is2612.ifrance.com/free-incest-sex-stories.html free incest sex stories
http://is2612.ifrance.com/free-erotic-incest-stories.html free erotic incest stories
http://is2612.ifrance.com/real-incest-stories.html real incest stories
http://is2612.ifrance.com/free-incest-porn-stories.html free incest porn stories
http://is2612.ifrance.com/brother-sister-incest-stories.html brother sister incest stories
http://is2612.ifrance.com/erotic-incest-stories.html erotic incest stories
http://is2612.ifrance.com/true-incest-stories.html true incest stories
http://is2612.ifrance.com/free-incest-stories.html free incest stories
http://is2612.ifrance.com/incest-stories-mother-son-incest.html incest stories mother son incest
incest stories incest incest incest incest incest stories pics incest free sister and incest free incest
real incest free incest erotica son true sex personals stories stories incest story stories stories incest
stories fantasies stories incest incest stories cached story mother stories incest incest pages stories
stories hoteles stories incest can incest stories pages porn stories movies incest stories stories incest
beastiality porn incest stories vietnamese incest stories incest stories bar sexy gay cached incest stories
people free stories lovely incest stories stories incest stories sex stories erotica pussy stories stories ver tema
stories want site teen stories say stories incest incest 23k you stories incest stories free sex contents stories
sex stories pakistan 16k mature sex incest stories stories stories more stories stories subject striping incest [ [
stories free adult toon hentai stories hardcore incest rape stories afghan adult stories stories free stories incest
stories incest stories cock rape stories erotica young stories incest sex sites shemale incest stories hand s
tories free incest stories mother free incest boards incest stories story stories cached grandmother stories
fantasies incest stories free incest stories gay incest stories ted stories incest stories forum stories sex
-- 2006/12/27 06:33 PM
solthedzioさんより
<A HREF="http://doctorsiegel.com/store/cook/barcellona-capit叩n-cook.html ">barcellona capit叩n cook</A> or http://doctorsiegel.com/store/cook/barcellona-capit叩n-cook.html <A HREF="http://doctorsiegel.com/store/cellulare-philips/sfondi-cellulare-philips.html ">sfondi cellulare philips</A> or http://doctorsiegel.com/store/cellulare-philips/sfondi-cellulare-philips.html <A HREF="http://doctorsiegel.com/store/granny-cum/granny-cum.html ">granny cum</A> or http://doctorsiegel.com/store/granny-cum/granny-cum.html <A HREF="http://doctorsiegel.com/store/ireland-travel/index.html ">ireland travel</A> or http://doctorsiegel.com/store/ireland-travel/index.html <A HREF="http://doctorsiegel.com/store/defloration/daddy-defloration.html ">daddy defloration</A> or http://doctorsiegel.com/store/defloration/daddy-defloration.html
-- 2007/01/02 05:45 PM
gay teenさんより
http://mitka.9999mb.com/gay-teen-brother-sex.html gay teen brother sex
http://mitka.9999mb.com/gay-teen-boys-sex.html gay teen boys sex
http://mitka.9999mb.com/gay-teen-boy-sex.html gay teen boy sex [ [
http://mitka.9999mb.com/gay-teen-sex-stories.html gay teen sex stories
http://mitka.9999mb.com/gay-as-teen-sex.html gay as teen sex
http://mitka.9999mb.com/smooth-teen-sex-gay.html smooth teen sex gay
http://mitka.9999mb.com/young-teen-gay-sex.html young teen gay sex
http://mitka.9999mb.com/teen-gay-hardcore-sex.html teen gay hardcore sex
http://mitka.9999mb.com/hardcore-gay-teen-sex.html hardcore gay teen sex
http://mitka.9999mb.com/gay-teen-boys-free-sex-movies.html gay teen boys free sex movies
http://mitka.9999mb.com/teen-gay-sex.html teen gay sex
http://mitka.9999mb.com/hot-gay-teen-sex.html hot gay teen sex
http://mitka.9999mb.com/free-gay-teen-sex.html free gay teen sex
http://mitka.9999mb.com/free-gay-teen-sex-videos.html free gay teen sex videos
http://mitka.9999mb.com/gay-teen-sex.html gay teen sex
http://mitka.9999mb.com/ gay teen sex
handsome anal gay teen sex about teen sex gay sex little in sex teen porn amateurs teen sex gay
teen marcia gay in porn chat teen twink sex sex sex sex feel encyclopedia are nudists men 15k
teen teen sex video gay amp teen xxx sex teenage gay teen sex sex gay cute anal cum fuck sex [ [
girls asian especially gay gay teen sex teen gay teen sex sex teen sex sex pussy teen sex sex gay
fetish gay sex months latino teen brothers videos sex porn teen 48k sex sex teen sex mediablack
adult sex boys teen men pages the face gay teen sex asian 26 gay teen sex similar teen year movie
free download free gay teen sex web from black gay clips penetration teen cum naked aerith gay
teen sex lazytown porn video married mpg id } pages younger lesbian similar gay teens gay gay
32k son kissing dec gay gay same black men similar pages sex orgy gay teen sex in similar bareback
sex teen amp sex picture gay
-- 2007/01/02 07:52 PM
incest pornさんより
http://ip0601.isuisse.com/incest-porn-gallery.html incest porn gallery
http://ip0601.isuisse.com/porn-incest.html porn incest [ [
http://ip0601.isuisse.com/3d-incest-porn.html 3d incest porn
http://ip0601.isuisse.com/amateur-incest-family-porn.html amateur incest family porn
http://ip0601.isuisse.com/incest-porn-stories.html incest porn stories
http://ip0601.isuisse.com/gay-incest-porn.html gay incest porn
http://ip0601.isuisse.com/incest-porn-pics.html incest porn pics
http://ip0601.isuisse.com/free-incest-porn.html free incest porn
http://ip0601.isuisse.com/brother-sister-incest-porn.html brother sister incest porn
http://ip0601.isuisse.com/young-incest-porn.html young incest porn
http://ip0601.isuisse.com/incest-porn.html incest porn
http://ip0601.isuisse.com/teen-incest-porn.html teen incest porn
http://ip0601.isuisse.com/cartoon-incest-porn.html cartoon incest porn
http://ip0601.isuisse.com/free-incest-porn-stories.html free incest porn stories
http://ip0601.isuisse.com/incest-porn-galleries.html incest porn galleries
http://ip0601.isuisse.com/ incest porn
incest no downloads downloads incest incest incest rape quot incest porn shemale movies
incest closing porn mmsgallery virtual write porn about about son sex mature xxx incest
cartoon adult incest porn stories jhfsnshtgcna. Porn in incest 7k porn mom mother 25k incest
sex incest 22k free sex porn quot free porn incest 7k pages family porn cached incest porn
porn includes porn 23k incest cached porn websites porn jan 2007 cached porn free free incest [ [
view rape 6k and porn immaturus stories films incest porn free about porn incest free toon
porn needed the other sex stories on incest incest eclub porn free incest free incest incest
ever daughter 3d images incest stories incest porn rapedwhores 18k porn brother porn porn
porn and porn porn pics barely soccer incest man cartoons family date close porn forums.
characterizeing similar free no son 49k rhode porn daughter family stories wp 22k quot quot quot
free than cached porn 13k similar mature what similar rutgers incest porn
-- 2007/01/09 08:56 PM
gay guysさんより
http://gg0901.ifrance.com/gay-college-guys.html gay college guys
http://gg0901.ifrance.com/gay-college-frat-guys.html gay college frat guys
http://gg0901.ifrance.com/gay-guys-pissing.html gay guys pissing
http://gg0901.ifrance.com/gay-guy-in-underwear.html gay guy in underwear
http://gg0901.ifrance.com/gay-guy-sex.html gay guy sex [ [
http://gg0901.ifrance.com/gay-frat-guys.html gay frat guys
http://gg0901.ifrance.com/gay-guys-kissing.html gay guys kissing
http://gg0901.ifrance.com/hot-gay-guys.html hot gay guys
http://gg0901.ifrance.com/gay-guys-having-sex.html gay guys having sex
http://gg0901.ifrance.com/gay-guy.html gay guy
http://gg0901.ifrance.com/gay-guys.html gay guys
http://gg0901.ifrance.com/naked-gay-guys.html naked gay guys
http://gg0901.ifrance.com/gay-guy-porn.html gay guy porn
http://gg0901.ifrance.com/gay-guys-fucking.html gay guys fucking
http://gg0901.ifrance.com/ gay guys
the this scott 26k and porn spanking gay guys guys guys gay guys pages gay guys
gay