Home
Main Menu
Home
Blog
Downloads
Forum
Link
Search
Category
Mobile
PHP
Google
Joomla
Cygwin
I-Apply
Linux
Plagger
Internet
Other
What's New
Recommend
RSS
E-Pagerank
RSS配信をFrontページ以外でも行う
Writte by Administrator   
2006/09/28 木曜日 20:38
Tag it:
Hatena
Delicious
Spurl
blogmarks

Joomlaでは標準でRSS(Syndicate)を出力できるようになっている。
けれど、出力できるのはFrontページの内容だけ。
#設定方法を知らないだけかも・・・?

このサイトの構成上、FrontページのRSSを配信しても更新情報が見れる
わけではないので、BlogページのRSSを配信したい!

ということで、適当にソースを書き換えた。
#真似する際は自己責任で!!影響調査とかしてません。

rss.phpの改造
まずは、実際にRSSを出力している部分の修正を行う。
作業内容はこんな感じ。

1.パラメータの取得
今回、既存のrss.phpを改造するにあたって、出力するRSSがFrontページ用
なのかBlogページ用なのかを判断するためのパラメータを追加した。

パラメータ:mode

このパラメータは、設定画面からFrontなのかBlogなのかを設定出来るよう
にする。(後述)

2.SQLの改造
既存のrss.phpでは、Frontページに表示するアイテムデータを収めている
テーブルと結合しているために、Blogモードの時は結合しないようにする。

また、Order byも作成日付が新しい順に変更してしまう。

3.キャッシュ
rss.phpでは、キャッシュを使い一定期間の間はRSSにアクセスされた場合、
キャッシュを表示するようになっている。

既存のままでは、FrontでもBlogでも同じキャッシュを使うはめになって
しまうのでキャッシュファイル名にモードを追加してあげる。


ということで、DIFF。
99,100d98
<       // get feed mode from url
<       $info[ 'mode' ]                         = strval( mosGetParam( $_GET, 'mode', 'front' ) );
163c161
<       $filename = $info[ 'mode' ] . '_' . $info[ 'file' ] .'.xml';
---
>       $filename = $info[ 'file' ] .'.xml';
182c180
<       $rss->title                     = $info[ 'title' ] . '[' . $info[ 'mode' ] . ']';
---
>       $rss->title                     = $info[ 'title' ];
197a196,229
>       // Determine ordering for sql
>       switch ( strtolower( $info[ 'orderby' ] ) ) {
>               case 'date':
>                       $orderby = 'a.created';
>                       break;
>
>               case 'rdate':
>                       $orderby = 'a.created DESC';
>                       break;
>
>               case 'alpha':
>                       $orderby = 'a.title';
>                       break;
>
>               case 'ralpha':
>                       $orderby = 'a.title DESC';
>                       break;
>
>               case 'hits':
>                       $orderby = 'a.hits DESC';
>                       break;
>
>               case 'rhits':
>                       $orderby = 'a.hits ASC';
>                       break;
>
>               case 'front':
>                       $orderby = 'f.ordering';
>                       break;
>
>               default:
>                       $orderby = 'f.ordering';
>                       break;
>       }
200,306c232,247
<       if($info[ 'mode' ] == 'blog') {
<
<               // Determine ordering for sql
<               switch ( strtolower( $info[ 'orderby' ] ) ) {
<                       case 'date':
<                               $orderby = 'a.created';
<                               break;
<
<                       case 'rdate':
<                               $orderby = 'a.created DESC';
<                               break;
<
<                       case 'alpha':
<                               $orderby = 'a.title';
<                               break;
<
<                       case 'ralpha':
<                               $orderby = 'a.title DESC';
<                               break;
<
<                       case 'hits':
<                               $orderby = 'a.hits DESC';
<                               break;
<
<                       case 'rhits':
<                               $orderby = 'a.hits ASC';
<                               break;
<
<                       default:
<                               $orderby = 'a.created DESC';
<                               break;
<               }
<
<               // blog
<               $query = "SELECT a.*, u.name AS author, u.usertype, UNIX_TIMESTAMP( a.created ) AS created_ts, cat.title AS cat_title, sec.title AS section_title"
<               . "\n FROM #__content AS a"
< //            . "\n INNER JOIN #__content_frontpage AS f ON f.content_id = a.id"
<               . "\n LEFT JOIN #__users AS u ON u.id = a.created_by"  
<               . "\n LEFT JOIN #__categories AS cat ON cat.id = a.catid"
<               . "\n LEFT JOIN #__sections AS sec ON sec.id = a.sectionid"
<               . "\n WHERE a.state = 1"
<               . "\n AND cat.published = 1"
<               . "\n AND sec.published = 1"
<               . "\n AND a.access = 0"
<               . "\n AND cat.access = 0"
<               . "\n AND sec.access = 0"
<               . "\n AND ( a.publish_up = '$nullDate' OR a.publish_up <= '$now' )"
<               . "\n AND ( a.publish_down = '$nullDate' OR a.publish_down >= '$now' )"
<               . "\n ORDER BY $orderby"
<               ;
<
<       } else {
<
<               // Determine ordering for sql
<               switch ( strtolower( $info[ 'orderby' ] ) ) {
<                       case 'date':
<                               $orderby = 'a.created';
<                               break;
<
<                       case 'rdate':
<                               $orderby = 'a.created DESC';
<                               break;
<
<                       case 'alpha':
<                               $orderby = 'a.title';
<                               break;
<
<                       case 'ralpha':
<                               $orderby = 'a.title DESC';
<                               break;
<
<                       case 'hits':
<                               $orderby = 'a.hits DESC';
<                               break;
<
<                       case 'rhits':
<                               $orderby = 'a.hits ASC';
<                               break;
<
<                       case 'front':
<                               $orderby = 'f.ordering';
<                               break;
<
<                       default:
<                               $orderby = 'f.ordering';
<                               break;
<               }
<
<               // front
<               $query = "SELECT a.*, u.name AS author, u.usertype, UNIX_TIMESTAMP( a.created ) AS created_ts, cat.title AS cat_title, sec.title AS section_title"
<               . "\n FROM #__content AS a"
<               . "\n INNER JOIN #__content_frontpage AS f ON f.content_id = a.id"
<               . "\n LEFT JOIN #__users AS u ON u.id = a.created_by"  
<               . "\n LEFT JOIN #__categories AS cat ON cat.id = a.catid"
<               . "\n LEFT JOIN #__sections AS sec ON sec.id = a.sectionid"
<               . "\n WHERE a.state = 1"
<               . "\n AND cat.published = 1"
<               . "\n AND sec.published = 1"
<               . "\n AND a.access = 0"
<               . "\n AND cat.access = 0"
<               . "\n AND sec.access = 0"
<               . "\n AND ( a.publish_up = '$nullDate' OR a.publish_up <= '$now' )"
<               . "\n AND ( a.publish_down = '$nullDate' OR a.publish_down >= '$now' )"
<               . "\n ORDER BY $orderby"
<               ;
<
<       }
---
>       $query = "SELECT a.*, u.name AS author, u.usertype, UNIX_TIMESTAMP( a.created ) AS created_ts, cat.title AS cat_title, sec.title AS section_title"
>       . "\n FROM #__content AS a"
>       . "\n INNER JOIN #__content_frontpage AS f ON f.content_id = a.id"
>       . "\n LEFT JOIN #__users AS u ON u.id = a.created_by"  
>       . "\n LEFT JOIN #__categories AS cat ON cat.id = a.catid"
>       . "\n LEFT JOIN #__sections AS sec ON sec.id = a.sectionid"
>       . "\n WHERE a.state = 1"
>       . "\n AND cat.published = 1"
>       . "\n AND sec.published = 1"
>       . "\n AND a.access = 0"
>       . "\n AND cat.access = 0"
>       . "\n AND sec.access = 0"
>       . "\n AND ( a.publish_up = '$nullDate' OR a.publish_up <= '$now' )"
>       . "\n AND ( a.publish_down = '$nullDate' OR a.publish_down >= '$now' )"
>       . "\n ORDER BY $orderby"
>       ;
366c307
< ?>
---
> ?>

 

mod_rssfeed.xmlの改造

設定画面(administrator画面?)で、ログインを行いモジュールの設定画面で
RSS(Syndicate)を開いた際に表示される内容を定義してあるファイルを
改造し、モードの選択を出来るようにする。

作業は以下。

1.セレクトボックスの追加

モジュールを表示する際に、どちらのモード(FrontかBlog)かを選択出来る
ようにセレクトボックスを表示出来るように定義を追加する。

ということで、DIFF。
これを、自分の好きな場所に貼り付ければOK。

<               <param name="mode" type="list" default="front" label="Mode" description="RSS">
<                       <option value="front">Front</option>
<                       <option value="blog">Blog</option>
<               </param>

 

mod_rssfeed.phpの改造

実際にRSSへのリンクを表示するファイルである。
#このサイトの左下に表示されている部分

これを、モードによってRSSへのリンクの出し分けが出来るように改造する。

1.パラメータの取得
上で設定したモードを取得するように修正を行う。

2.モードの追加
取得したモードによって&mode=frontもしくは&mode=blogをリンクの末尾に
付加するように修正を行う。


ということでDIFF。

 46d45
< $mode                         = $params->get( 'mode',                 'front' );
100c99
<               $link = 'index.php?option=com_rss&feed=RSS0.91&no_html=1&mode=' . $mode;
---
>               $link = 'index.php?option=com_rss&feed=RSS0.91&no_html=1';
106,107c105
<               $link = 'index.php?option=com_rss&feed=RSS1.0&no_html=1&mode=' . $mode;
<
---
>               $link = 'index.php?option=com_rss&feed=RSS1.0&no_html=1';
113,114c111
<               $link = 'index.php?option=com_rss&feed=RSS2.0&no_html=1&mode=' . $mode;
<
---
>               $link = 'index.php?option=com_rss&feed=RSS2.0&no_html=1';
120,121c117
<               $link = 'index.php?option=com_rss&feed=ATOM0.3&no_html=1&mode=' . $mode;
<
---
>               $link = 'index.php?option=com_rss&feed=ATOM0.3&no_html=1';
127,128c123
<               $link = 'index.php?option=com_rss&feed=OPML&no_html=1&mode=' . $mode;
<
---
>               $link = 'index.php?option=com_rss&feed=OPML&no_html=1';
132c127
< </div>
---
> </div>


これで、設定画面からBlogを選べばBlogのRSSが、Frontを選べばFrontページ
のRSSへのリンクが表示出来るようになる。

 ソースが欲しい方は、Forumまで。 

Tag it:
Hatena
Delicious
Spurl
blogmarks

Add as favourites (47) | Quote this article on your site | Views: 1970

  Comments (10)
 1 Comment 04 1812
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 05-07-2008 01:11 , IP: 91.121.165.32
Hielloo , [URL=http://583.dream.az.pl]boston reed college studentcom[/URL], [URL=http://485.dream.az.pl]sinclair community college address[/URL], [URL=http://162.dream.az.pl]girls gone wild video naked college girls exposed[/URL], [URL=http://267.dream.az.pl]laguardia community college act writing test[/URL], [URL=http://294.dream.az.pl]franklin pierce college nh teacher certification[/URL], [URL=http://479.dream.az.pl]pierce college in california[/URL], [URL=http://450.dream.az.pl]bronx students disabilities community college[/URL], [URL=http://510.dream.az.pl]christian online college classes early childhood[/URL], [URL=http://442.dream.az.pl]paralegal studies in oakton community college[/URL], [URL=http://12.dream.az.pl]wayne county community college kids[/URL], [URL=http://416.dream.az.pl]who makes the point spread in a college football fame[/URL], [URL=http://169.dream.az.pl]saturdays cathedrals college football stadiums[/URL], [URL=http://205.dream.az.pl]hot wild college girls[/URL], [URL=http://558.dream.az.pl]womens college basketball rules[/URL], [URL=http://386.dream.az.pl]top 25 college football poll 2006[/URL], [URL=http://370.dream.az.pl]how to compose a college entrance essay[/URL], [URL=http://69.dream.az.pl]drunk college girl sex video[/URL], [URL=http://133.dream.az.pl]fucking college whores[/URL], [URL=http://476.dream.az.pl]cheap textbooks for college[/URL], [URL=http://519.dream.az.pl]college basketball authentic shorts[/URL], [URL=http://498.dream.az.pl]city of college station, texas[/URL], [URL=http://424.dream.az.pl]junior college football[/URL], [URL=http://573.dream.az.pl]miami dade community college and north campus[/URL], [URL=http://237.dream.az.pl]central piedmont community college, nc[/URL], [URL=http://497.dream.az.pl]ashworth college online associate child care[/URL]
 2 Comment 05 039
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 05-07-2008 07:38 , IP: 91.121.165.32
Hielloo , [URL=http://836.hubel.waw.pl]indian river community college ft. pierce[/URL], [URL=http://917.hubel.waw.pl]preview of college football 2006 2007[/URL], [URL=http://358.admissibility.waw.pl]guaranteed loan with bad credit[/URL], [URL=http://36.hubel.waw.pl]gay college chubby guys[/URL], [URL=http://87.hubel.waw.pl]glendale community college glendale, az[/URL], [URL=http://183.kurtis.radom.pl]southwest airlines flight status[/URL], [URL=http://218.kurtis.radom.pl]southwest airlines schedule time flight display[/URL], [URL=http://406.kurtis.radom.pl]united airlines flight 93 passenger and crew phone calls[/URL], [URL=http://347.hubel.waw.pl]first appeared in the football college hall of fame[/URL], [URL=http://215.admissibility.waw.pl]commercial loan interest rate[/URL], [URL=http://21.kurtis.radom.pl]flight tickets to go to panama for cheap[/URL], [URL=http://298.kurtis.radom.pl]flight simulator x addons[/URL], [URL=http://42.kurtis.radom.pl]flight simulator 2004 add on[/URL], [URL=http://356.admissibility.waw.pl]texas vet home loan[/URL], [URL=http://66.hubel.waw.pl]college girls party nude[/URL], [URL=http://380.kurtis.radom.pl]airline flight tracker[/URL], [URL=http://24.kurtis.radom.pl]desert flight jacket[/URL], [URL=http://336.admissibility.waw.pl]florida minority business loan mobilization program[/URL], [URL=http://704.kurtis.radom.pl]durham flight centre[/URL], [URL=http://352.kurtis.radom.pl]flight attendant interviews[/URL], [URL=http://176.admissibility.waw.pl]payday cash advance loan[/URL]
 3 Comment 05 1851
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 06-07-2008 01:50 , IP: 91.121.165.32
Hielloo , [URL=http://289.perm.radom.pl]airline ticket centre in edmonton[/URL], [URL=http://238.perm.radom.pl]airline ticket scam on the internet[/URL], [URL=http://106.meissner.wroclaw.pl]online shopping coupons[/URL], [URL=http://15.meissner.wroclaw.pl]six flags coupons georgia[/URL], [URL=http://409.meissner.wroclaw.pl]adwords coupons[/URL], [URL=http://116.meissner.wroclaw.pl]arts and crafts coupons[/URL], [URL=http://125.filmdom.tychy.pl]airline cheap online ticket[/URL], [URL=http://135.filmdom.tychy.pl]airline travel cheap ticket[/URL], [URL=http://44.perm.radom.pl]buy airline ticket[/URL], [URL=http://295.meissner.wroclaw.pl]grocery coupons direct[/URL], [URL=http://354.perm.radom.pl]cheap airline ticket for united states of americ[/URL], [URL=http://68.filmdom.tychy.pl]want to book cheap airline ticket now[/URL], [URL=http://721.perm.radom.pl]airline ticket us air[/URL], [URL=http://192.filmdom.tychy.pl]cheapest airline ticket to california, atwater[/URL], [URL=http://264.meissner.wroclaw.pl]pediasure coupons[/URL], [URL=http://135.meissner.wroclaw.pl]jewel coupons[/URL]
 4 Comment 06 256
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 06-07-2008 09:56 , IP: 91.121.165.32
Hielloo , [URL=http://quickstep.az.pl/277.html]tokio hotel youtube gustav videos[/URL], [URL=http://quickstep.az.pl/136.html]tokio hotel schrei die verarschung[/URL], [URL=http://374.whack.az.pl]dallas rolex watches sale[/URL], [URL=http://7.whack.az.pl]latest version of the new luminox watches[/URL], [URL=http://392.whack.az.pl]citrine ring wg jewelry watches[/URL], [URL=http://628.whack.az.pl]omega men watches[/URL], [URL=http://quickstep.az.pl/1080.html]radisson hotel opryland categories hotels motels[/URL], [URL=http://205.whack.az.pl]imitation designer mens watches[/URL], [URL=http://423.whack.az.pl]womens fossil charm watches[/URL], [URL=http://quickstep.az.pl/781.html]tokio hotel gustav & tom[/URL], [URL=http://quickstep.az.pl/440.html]excalibur hotel las vegas, nv[/URL], [URL=http://quickstep.az.pl/1286.html]wyndham hotel atlanta ga[/URL], [URL=http://quickstep.az.pl/783.html]discount hotel rates in las vegas strip[/URL], [URL=http://321.whack.az.pl]multi ring tourmaline jewelry watches[/URL], [URL=http://930.whack.az.pl]white gold diamond wedding rings jewelry watches[/URL], [URL=http://715.whack.az.pl]14k gold watches for women[/URL], [URL=http://474.whack.az.pl]pocket watches that uses a key[/URL], [URL=http://876.whack.az.pl]12 dollars mens digital watches[/URL], [URL=http://quickstep.az.pl/1009.html]flamingo hotel las vegas gaming[/URL], [URL=http://quickstep.az.pl/1168.html]habbo hotel cheat[/URL], [URL=http://571.whack.az.pl]loose diamonds gemstones 3 jewelry watches[/URL], [URL=http://quickstep.az.pl/738.html]hotel room close to luxor las vegas nv[/URL], [URL=http://quickstep.az.pl/1270.html]las vegas hotel reservations plaza[/URL], [URL=http://76.whack.az.pl]techno swiss aqua watches[/URL], [URL=http://1060.whack.az.pl]fishing watches with tide predictions casio[/URL], [URL=http://quickstep.az.pl/558.html]hotel california interpretation eagles[/URL]
 5 Comment 06 2313
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 07-07-2008 06:12 , IP: 91.121.165.32
Hielloo , [URL=http://331.tiling.mazury.pl]best western plaza hotel[/URL], [URL=http://717.breadfruit.az.pl]airline ticket bellingham wa to seattle wa[/URL], [URL=http://191.tiling.mazury.pl]florida motel hotel for sale by owner[/URL], [URL=http://363.tiling.mazury.pl]hotel florida tenerife[/URL], [URL=http://38.mamet.az.pl]casino baccarat scam[/URL], [URL=http://381.mamet.az.pl]interdiction de jeux casino de france[/URL], [URL=http://174.mamet.az.pl]playtech casino new 2006 no deposit bonus[/URL], [URL=http://209.bangladesh.olsztyn.pl]hunter college english department renown[/URL], [URL=http://111.breadfruit.az.pl]purchasing airline ticket flowchart[/URL], [URL=http://83.bangladesh.olsztyn.pl]nude college girls getting fuck[/URL], [URL=http://18.mamet.az.pl]thunder valley casino 2frestraunts[/URL], [URL=http://192.mamet.az.pl]casino free game slot video[/URL], [URL=http://249.tiling.mazury.pl]hotel and motel directory[/URL], [URL=http://197.breadfruit.az.pl]list of discount airline ticket websites[/URL], [URL=http://384.mamet.az.pl]tropicana casino resort slot machine odds[/URL], [URL=http://586.mamet.az.pl]four queens casino las vegas[/URL]
 6 Comment 07 1946
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 08-07-2008 02:45 , IP: 91.121.165.32
Hielloo , [URL=http://532.hominidae.az.pl]cheap airline tickets southwest[/URL], [URL=http://705.palmae.az.pl]indian necklace jewelry watches[/URL], [URL=http://755.pollinate.mazury.pl]airtran airline destinatinos[/URL], [URL=http://1489.imposition.az.pl]non dating teen chat rooms[/URL], [URL=http://61.palmae.az.pl]vintage telememo watch jewelry watches[/URL], [URL=http://701.anglicization.az.pl]airline check list[/URL], [URL=http://627.anglicization.az.pl]discounted airline tickets to el salvador[/URL], [URL=http://254.pollinate.mazury.pl]continental airline - flight status[/URL], [URL=http://324.creeps.warszawa.pl]midwest airline ratings[/URL], [URL=http://654.palmae.az.pl]esq watches mens[/URL], [URL=http://348.creeps.warszawa.pl]airline business news[/URL], [URL=http://278.imposition.az.pl]singles dating service[/URL], [URL=http://432.imposition.az.pl]auckland gay men dating[/URL], [URL=http://1.anglicization.az.pl]british airline flight0113 from london to jfk[/URL], [URL=http://630.hominidae.az.pl]cheap airline tickets online[/URL], [URL=http://116.pollinate.mazury.pl]cheapest airline flights[/URL], [URL=http://274.creeps.warszawa.pl]finnair airline phone list[/URL], [URL=http://292.hominidae.az.pl]price of airline ticket us air raleigh chicago[/URL], [URL=http://845.palmae.az.pl]pink heart sapphire ring size 5 jewelry watches[/URL], [URL=http://261.imposition.az.pl]adult dating site builders[/URL], [URL=http://386.anglicization.az.pl]budget airline valuair jetstar tiger[/URL], [URL=http://454.creeps.warszawa.pl]cheap airline flights for students[/URL], [URL=http://16.creeps.warszawa.pl]virgin atlantic completes first airline biofuel flight[/URL], [URL=http://239.palmae.az.pl]old seiko watches time zones[/URL], [URL=http://107.pollinate.mazury.pl]airline travel vouchers[/URL]
 7 Comment 08 031
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 08-07-2008 07:31 , IP: 91.121.165.32
Hielloo , [URL=http://495.creeps.warszawa.pl]airline tickets south west[/URL], [URL=http://868.palmae.az.pl]strand beaded necklace jewelry watches[/URL], [URL=http://411.anglicization.az.pl]ame job in leading airline[/URL], [URL=http://396.hominidae.az.pl]us air airlines fly reservations airline tickets[/URL], [URL=http://658.hominidae.az.pl]airline tickets poland discount[/URL], [URL=http://826.palmae.az.pl]luxuary watches rolex tudor and rolex watch[/URL], [URL=http://476.hominidae.az.pl]delta airline fleet[/URL], [URL=http://230.pollinate.mazury.pl]turkish airline from nigeria[/URL], [URL=http://504.creeps.warszawa.pl]mexicana airline nonstop flights from san jose ca[/URL], [URL=http://1078.palmae.az.pl]nike wristband watches[/URL], [URL=http://22.anglicization.az.pl]airline magazine america[/URL], [URL=http://468.creeps.warszawa.pl]airline tycoon evolution screenshots[/URL], [URL=http://466.palmae.az.pl]watches automatic diving swiss[/URL], [URL=http://1006.palmae.az.pl]titanium fossil watches mens model ti5066[/URL], [URL=http://112.creeps.warszawa.pl]cheap airline tickets southwest[/URL], [URL=http://445.hominidae.az.pl]midwest airline flights departing jan 18th 2008[/URL], [URL=http://260.creeps.warszawa.pl]continental airline president club[/URL], [URL=http://105.palmae.az.pl]gold bar pendant jewelry watches[/URL], [URL=http://115.creeps.warszawa.pl]malaysia airline sydney office[/URL], [URL=http://440.anglicization.az.pl]deep discounted airline tickets[/URL], [URL=http://500.pollinate.mazury.pl]delta airline phone number[/URL], [URL=http://605.anglicization.az.pl]frontier airline plane horse[/URL]
 8 Comment 08 1530
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 08-07-2008 22:29 , IP: 91.121.165.32
Hielloo , [URL=http://111.chain.az.pl]cheap airline ticket to vietnam[/URL], [URL=http://125.bribery.az.pl]free loan processor training[/URL], [URL=http://193.chain.az.pl]cheap airline ticket to vegas[/URL], [URL=http://40.smooch.az.pl]play slots for fun not for real money[/URL], [URL=http://350.smooch.az.pl]online video slots[/URL], [URL=http://336.chain.az.pl]airline ticket cheapest[/URL], [URL=http://267.overvaluation.az.pl]ives mail slot 652[/URL], [URL=http://555.overvaluation.az.pl]mills antique slot macchines[/URL], [URL=http://823.chain.az.pl]europe international ticket airline wholesale discount[/URL], [URL=http://544.chain.az.pl]airline ticket europe[/URL], [URL=http://167.bribery.az.pl]data entry customer service loan officer[/URL], [URL=http://308.smooch.az.pl]free online slots and video poker games[/URL], [URL=http://644.bribery.az.pl]approved pay day loan[/URL], [URL=http://151.smooch.az.pl]free bonus video slots no downloading please[/URL], [URL=http://476.chain.az.pl]cheap jamaica airline ticket[/URL]
 9 Comment 09 1956
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 10-07-2008 02:55 , IP: 91.121.165.32
Hielloo , [URL=http://258.cauda.pila.pl]american airline center ticket[/URL], [URL=http://839.bride-gift.az.pl]seiko gold ladies watches[/URL], [URL=http://49.defrost.az.pl]search empire poker[/URL], [URL=http://467.bride-gift.az.pl]fcuk gold ladies bracelet watches bnbn r[/URL], [URL=http://621.defrost.az.pl]play free dogs playing poker site[/URL], [URL=http://582.infarct.az.pl]slot machine game downloads free[/URL], [URL=http://390.infarct.az.pl]pretend slot machine downloads[/URL], [URL=http://63.cauda.pila.pl]economy airline ticket[/URL], [URL=http://353.hornbeam.az.pl]frontier airline,com[/URL], [URL=http://617.cauda.pila.pl]airline ticket argentina a1 travel[/URL], [URL=http://72.earlobe.az.pl]browse australian made casino slot machine games[/URL], [URL=http://216.hornbeam.az.pl]lufthansa airline in houston[/URL], [URL=http://353.earlobe.az.pl]charles town races and slots in west virginia[/URL], [URL=http://521.bride-gift.az.pl]wedding jewelry and wedding band and mens watches[/URL], [URL=http://210.cauda.pila.pl]cheap airline ticket from chicago to las vegas[/URL], [URL=http://294.bride-gift.az.pl]ladie movado watch jewelry watches[/URL], [URL=http://676.defrost.az.pl]world poker tour chips to but[/URL], [URL=http://255.cauda.pila.pl]airline ticket to santiago, chile[/URL], [URL=http://98.defrost.az.pl]chicago bears poker chip card guard[/URL], [URL=http://51.earlobe.az.pl]free video slots no deposit sign up bonus[/URL]
 10 Comment 10 038
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 10-07-2008 07:37 , IP: 91.121.165.32
Hielloo , [URL=http://820.gigabit.az.pl]what is tramadol hcl 50 mg tb[/URL], [URL=http://582.dung.az.pl]online casino chips free[/URL], [URL=http://516.histaminase.az.pl]xanax withdrawals symptoms[/URL], [URL=http://643.rheumatic.az.pl]online casino players[/URL], [URL=http://1194.rheumatic.az.pl]no download free casino cash[/URL], [URL=http://1213.rheumatic.az.pl]site www.mysticlake.com mystic lake casino[/URL], [URL=http://1827.dung.az.pl]tropicana casino and raesort in atlantic city nj[/URL], [URL=http://986.histaminase.az.pl]suicide xanax and valium[/URL], [URL=http://1978.dung.az.pl]choctaw casino slot machines[/URL], [URL=http://636.gigabit.az.pl]tramadol ultram[/URL], [URL=http://1039.histaminase.az.pl]xanax 2mg picture[/URL], [URL=http://820.rheumatic.az.pl]harrahs casino in cherokee nc[/URL], [URL=http://648.gigabit.az.pl]how many tramadol is the dosage[/URL], [URL=http://396.gigabit.az.pl]ingredients of tramadol[/URL], [URL=http://1172.histaminase.az.pl]xanax 3mg xr pictures[/URL], [URL=http://218.histaminase.az.pl]xanax ordered cod[/URL], [URL=http://407.dung.az.pl]mgm grand casino in detroitcom[/URL], [URL=http://244.gigabit.az.pl]what class of drug is tramadol[/URL], [URL=http://1181.dung.az.pl]casino cmd play game game id casinoholdem[/URL], [URL=http://873.gigabit.az.pl]medical definition of tramadol 50mg[/URL], [URL=http://1038.rheumatic.az.pl]no deposit casino bonus rtg coupon code[/URL], [URL=http://803.rheumatic.az.pl]casino bonus top or best or highest[/URL], [URL=http://739.histaminase.az.pl]buy xanax legally[/URL]

Write Comment
  • Please keep the topic of messages relevant to the subject of the article.
  • Personal verbal attacks will be deleted.
  • Please don't use comments to plug your web site. Such material will be removed.
  • Just ensure to *Refresh* your browser for a new security code to be displayed prior to clicking on the 'Send' button.
  • Keep in mind that the above process only applies if you simply entered the wrong security code.
Name:
Comment:

Code:* Code

Powered by AkoComment Tweaked Special Edition v.1.4.6
AkoComment © Copyright 2004 by Arthur Konze - www.mamboportal.com
All right reserved

Update ( 2006/10/22 日曜日 23:11 )
 
< 前へ   次へ >

© 2008 Labs Zsrv Net
Joomla! is Free Software released under the GNU/GPL License.
Translation is Joomla!JAPAN