Doodoo
新闻 娱乐 开发
公告
分类
首页
我的日志(3)
开发及参考(32)
学习笔记(15)
新闻搜索(5)
精品图库(12)
笑话(1)
经验技巧(1)
知识库(1)
家庭养花(1)
最新日志
JBuilder2005 编译JSP定位错误行
jsp推送下载
Mime-Type 列表
Win下配置Apache2,PHP5,MYSQL5,Zend
一些比较常用的 java js 正则表达式
web.xml dwr.xml
java.lang.Class.getName()
字母
FCKeditor在线编辑器的使用
AJAX DWR基本使用向导
最新评论
Good site
Good site
Good site
Good site
Good site
Good site
Re:中文语义分析的理论与方法
My feedback
My feedback
Great work
我的链接
中国种子--种植栽培
中国果树花卉--花问花答
种子中国
留言
<写留言>
What a great test!
能的不错啊
模版记几葛写的
你的模板哪能的?
统计信息
日志总数:71
今日访问:394
访问总数:226801
评论总数:143
留言总数:4
管理入口
用户名
密 码
RSS

北方博客 > 首页 > FCKeditor在线编辑器的使用

日志列表

开发及参考

FCKeditor在线编辑器的使用


发布于 2006-09-08 09:43
Tags: fckeditor

试用了一下FCKeditor,根据网上的文章小结一下:
1.下载
FCKeditor.java 2.3 (FCKeditot for java)
FCKeditor 2.2 (FCKeditor基本文件)

2.建立项目:tomcat/webapps/TestFCKeditor.

3.将FCKeditor2.2解压缩,将整个目录FCKeditor复制到项目的根目录下,
目录结构为:tomcat/webapps/TestFCKeditor/FCKeditor
然后将FCKeditor-2.3.zip(java)压缩包中\web\WEB-INF\lib\目录下的两个jar文件拷到项目的\WEB-INF\lib\目录下。把其中的src目录下的FCKeditor.tld文件copy到TestFCKedit/FCKeitor/WEB-INF/下

4.将FCKeditor-2.3.zip压缩包中\web\WEB-INF\目录下的web.xml文件合并到项目的\WEB-INF\目录下的web.xml文件中。

5. 修改合并后的web.xml文件,将名为SimpleUploader的Servlet的enabled参数值改为true,
以允许上传功能,Connector Servlet的baseDir参数值用于设置上传文件存放的位置。
添加标签定义:
<taglib>
<taglib-uri>/TestFCKeditor</taglib-uri>
<taglib-location>/WEB-INF/FCKeditor.tld</taglib-location>
</taglib>

运行图:

6. 上面文件中两个servlet的映射分别为:/editor/filemanager/browser/default/connectors/jsp/connector
和/editor/filemanager/upload/simpleuploader,需要在两个映射前面加上/FCKeditor,
即改为/FCKeditor/editor/filemanager/browser/default/connectors/jsp/connector和
/FCKeditor/editor/filemanager/upload/simpleuploader。

7.进入skin文件夹,如果你想使用fckeditor默认的这种奶黄色,
那就把除了default文件夹外的另两个文件夹直接删除.

8.删除/FCKeditor/目录下除fckconfig.js, fckeditor.js, fckstyles.xml, fcktemplates.xml四个文件以外的所有文件
删除目录/editor/_source,
删除/editor/filemanager/browser/default/connectors/下的所有文件
删除/editor/filemanager/upload/下的所有文件
删除/editor/lang/下的除了fcklanguagemanager.js, en.js, zh.js, zh-cn.js四个文件的所有文件

9.打开/FCKeditor/fckconfig.js
修改 FCKConfig.DefaultLanguage = 'zh-cn' ;
把FCKConfig.LinkBrowserURL等的值替换成以下内容:
FCKConfig.LinkBrowserURL
= FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/jsp/connector" ;

FCKConfig.ImageBrowserURL
= FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector" ;

FCKConfig.FlashBrowserURL
= FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/jsp/connector" ;


FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=File' ;
FCKConfig.FlashUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=Flash' ;
FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=Image' ;

10.其它
fckconfig.js总配置文件,可用记录本打开,修改后将文件存为utf-8 编码格式。找到:

FCKConfig.TabSpaces = 0 ; 改为FCKConfig.TabSpaces = 1 ; 即在编辑器域内可以使用Tab键。

如果你的编辑器还用在网站前台的话,比如说用于留言本或是日记回复时,那就不得不考虑安全了,
在前台千万不要使用Default的toolbar,要么自定义一下功能,要么就用系统已经定义好的Basic,
也就是基本的toolbar,找到:
FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-',/*'Link',*/'Unlink','-','Style','FontSize','TextColor','BGColor','-',
'Smiley','SpecialChar','Replace','Preview'] ] ;
这是改过的Basic,把图像功能去掉,把添加链接功能去掉,因为图像和链接和flash和图像按钮添加功能都能让前台
页直接访问和上传文件, fckeditor还支持编辑域内的鼠标右键功能。

FCKConfig.ContextMenu = ['Generic',/*'Link',*/'Anchor',/*'Image',*/'Flash','Select','Textarea','Checkbox','Radio','TextField','HiddenField',
/*'ImageButton',*/'Button','BulletedList','NumberedList','TableCell','Table','Form'] ;

这也是改过的把鼠标右键的“链接、图像,FLASH,图像按钮”功能都去掉。

  找到: FCKConfig.FontNames = 'Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana' ;
加上几种我们常用的字体
FCKConfig.FontNames
= '宋体;黑体;隶书;楷体_GB2312;Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana' ;

7.添加文件 /TestFCKeditor/test.jsp:
<%@ page language="java" import="com.fredck.FCKeditor.*" %>
<%@ taglib uri="/TestFCKeditor" prefix="FCK" %>
<script type="text/javascript" src="/TestFCKeditor/FCKeditor/fckeditor.js"></script>

<%--
三种方法调用FCKeditor
1.FCKeditor自定义标签 (必须加头文件 <%@ taglib uri="/TestFCKeditor" prefix="FCK" %> )
2.script脚本语言调用 (必须引用 脚本文件 <script type="text/javascript" src="/TestFCKeditor/FCKeditor/fckeditor.js"></script> )
3.FCKeditor API 调用 (必须加头文件 <%@ page language="java" import="com.fredck.FCKeditor.*" %> )
--%>

<%--
<form action="show.jsp" method="post" target="_blank">
<FCK:editor id="content" basePath="/TestFCKeditor/FCKeditor/"
width="700"
height="500"
skinPath="/TestFCKeditor/FCKeditor/editor/skins/silver/"
toolbarSet = "Default"
>
input
</FCK:editor>
<input type="submit" value="Submit">
</form>
--%>

<form action="show.jsp" method="post" target="_blank">
<table border="0" width="700"><tr><td>
<textarea id="content" name="content" style="WIDTH: 100%; HEIGHT: 400px">input</textarea>
<script type="text/javascript">
var oFCKeditor = new FCKeditor('content') ;
oFCKeditor.BasePath = "/TestFCKeditor/FCKeditor/" ;
oFCKeditor.Height = 400;
oFCKeditor.ToolbarSet = "Default" ;
oFCKeditor.ReplaceTextarea();
</script>
<input type="submit" value="Submit">
</td></tr></table>
</form>

<%--
<form action="show.jsp" method="post" target="_blank">
<%
FCKeditor oFCKeditor ;
oFCKeditor = new FCKeditor( request, "content" ) ;
oFCKeditor.setBasePath( "/TestFCKeditor/FCKeditor/" ) ;
oFCKeditor.setValue( "input" );
out.println( oFCKeditor.create() ) ;
%>
<br>
<input type="submit" value="Submit">
</form>
--%>

添加文件/TestFCKeditor/show.jsp:
<%
String content = request.getParameter("content");
out.print(content);
%>

8.浏览http://localhost:8080/TestFCKeditor/test.jsp
ok!

 


Good site


发布于 2008-07-17 15:19
<a href= http://index2.figoss.com >jenna jamison smells like sex video</a> <a href= http://index5.figoss.com >family support group of children with bipolar in mass</a> <a href= http://index1.figoss.com >postclassifieds</a> <a href= http://index3.figoss.com >winter olympics torino 2006</a> <a href= http://index4.figoss.com >tit movies tgp</a>

Good site


发布于 2008-07-17 15:19
<a href= http://index3.loirea.com >i wish i was a single girl again</a> <a href= http://index4.loirea.com >texas sex afenders</a> <a href= http://index1.loirea.com >meaning of the word buttercup</a> <a href= http://index2.loirea.com >atrium glass</a> <a href= http://index5.loirea.com >beachgirl</a>

Good site


发布于 2008-07-14 07:11
<a href= http://index1.fiordf.com >essex county n.j.</a> <a href= http://index4.fiordf.com >vintage appaloosa art</a> <a href= http://index3.fiordf.com >champion adult video</a> <a href= http://index2.fiordf.com >b passwod b</a> <a href= http://index5.fiordf.com >all of new diseasses</a>

Good site


发布于 2008-07-14 07:11
<a href= http://index4.aeciuj.com >jobs for registered dental assistants</a> <a href= http://index3.aeciuj.com >millburn art association</a> <a href= http://index2.aeciuj.com >how to get a girl frend</a> <a href= http://index5.aeciuj.com >drawn together naked pics</a> <a href= http://index1.aeciuj.com >how old were shakespeare and his wife when they got married</a>

Good site


发布于 2008-07-09 14:18
<a href= http://index3.sifols.com >hot wife keri</a> <a href= http://index5.sifols.com >glass blowing</a> <a href= http://index4.sifols.com >neon genisi evangalion porn</a> <a href= http://index2.sifols.com >teens vermont summer experiences</a> <a href= http://index1.sifols.com >etiquette classes</a>

Good site


发布于 2008-05-17 18:58
<a href= http://index3.gulagu.com >wlio 1150 lima</a> <a href= http://index9.gulagu.com >punchline</a> <a href= http://index10.gulagu.com >cruise cams</a> <a href= http://index5.gulagu.com >area code 15237</a> <a href= http://index7.gulagu.com >newsymerna beach hotels</a> <a href= http://index8.gulagu.com >candian flag quebec</a> <a href= http://index6.gulagu.com >clublez</a> <a href= http://index2.gulagu.com >prc mgmt nyc kazam</a> <a href= http://index1.gulagu.com >isms</a> <a href= http://index4.gulagu.com >dragonfly bracelets</a>

Good site


发布于 2008-05-17 18:58
<a href= http://index7.govoru.com >brian higa</a> <a href= http://index5.govoru.com >terri shavio</a> <a href= http://index1.govoru.com >hobbs trucks</a> <a href= http://index3.govoru.com >marthastewarttv</a> <a href= http://index9.govoru.com >topiary</a> <a href= http://index6.govoru.com >sternberg memory test</a> <a href= http://index2.govoru.com >eating thinking and drinking too much</a> <a href= http://index10.govoru.com >bronze shoes</a> <a href= http://index8.govoru.com >shuttle service between phl and ewr</a> <a href= http://index4.govoru.com >network 54</a>

Good site


发布于 2008-05-17 18:58
<a href= http://index7.govoru.com >brian higa</a> <a href= http://index5.govoru.com >terri shavio</a> <a href= http://index1.govoru.com >hobbs trucks</a> <a href= http://index3.govoru.com >marthastewarttv</a> <a href= http://index9.govoru.com >topiary</a> <a href= http://index6.govoru.com >sternberg memory test</a> <a href= http://index2.govoru.com >eating thinking and drinking too much</a> <a href= http://index10.govoru.com >bronze shoes</a> <a href= http://index8.govoru.com >shuttle service between phl and ewr</a> <a href= http://index4.govoru.com >network 54</a>

Good site


发布于 2008-05-14 02:55
<a href= http://index5.arapse.com >stor wars</a> <a href= http://index1.arapse.com >free sunday school crafts</a> <a href= http://index10.arapse.com >him tickets nokia theater in grand praire in texas</a> <a href= http://index8.arapse.com >new york times top seller</a> <a href= http://index9.arapse.com >walmart shot guns</a>

Good site


发布于 2008-05-14 02:55
<a href= http://index7.titsev.com >kobes</a> <a href= http://index4.titsev.com >dog breeds</a> <a href= http://index1.titsev.com >saia</a> <a href= http://index6.titsev.com >crystal river fl events</a> <a href= http://index3.titsev.com >liquidator fl</a>

Good site


发布于 2008-05-14 02:55
<a href= http://index5.arapse.com >stor wars</a> <a href= http://index1.arapse.com >free sunday school crafts</a> <a href= http://index10.arapse.com >him tickets nokia theater in grand praire in texas</a> <a href= http://index8.arapse.com >new york times top seller</a> <a href= http://index9.arapse.com >walmart shot guns</a>

Good site


发布于 2008-05-10 03:00
<a href= http://index7.lutisa.com >hardwarestores</a> <a href= http://index5.lutisa.com >dept of motor vehicles of missouri</a> <a href= http://index10.lutisa.com >my yahoo</a> <a href= http://index6.lutisa.com >your daughter and sons lyrics by the duhks</a> <a href= http://index14.lutisa.com >chaucer</a>

Good site


发布于 2008-05-10 03:00
<a href= http://index5.etihos.com >volkomer</a> <a href= http://index7.etihos.com >penndot</a> <a href= http://index6.etihos.com >how to find your average heart rate</a> <a href= http://index9.etihos.com >sanborn insurance map for st petersburg fl</a> <a href= http://index14.etihos.com >belleyre mountain</a>

Good site


发布于 2008-05-07 18:32
<a href= http://index2.rinolf.com >louisiana state police</a> <a href= http://index7.rinolf.com >craze control</a> <a href= http://index13.rinolf.com >best compnies to work for</a> <a href= http://index11.rinolf.com >consumer index</a> <a href= http://index15.rinolf.com >national te</a> <a href= http://index1.rinolf.com >greenbrier co. wv census</a> <a href= http://index3.rinolf.com >unc-charlotte</a> <a href= http://index6.rinolf.com >public access television</a> <a href= http://index8.rinolf.com >military retired pay chart for 2006</a> <a href= http://index5.rinolf.com >cia factbook</a>

Good site


发布于 2008-05-07 18:32
<a href= http://index6.inihil.com >temple of amun-ra at karnak</a> <a href= http://index9.inihil.com >utah alcohol servers permit</a> <a href= http://index11.inihil.com >patrick stump</a> <a href= http://index12.inihil.com >winter springs high school</a> <a href= http://index16.inihil.com >al basmasi</a> <a href= http://index1.inihil.com >first editions</a> <a href= http://index10.inihil.com >levan</a> <a href= http://index15.inihil.com >rights of college students with bad grades</a> <a href= http://index3.inihil.com >red headed slut drink</a> <a href= http://index5.inihil.com >avg</a>

Good site


发布于 2008-04-23 09:20
<a href= http://index15.grigho.com >benrus commemorative world war ii watch</a> <a href= http://index5.grigho.com >firefox</a> <a href= http://index8.grigho.com >aol firewall</a> <a href= http://index7.grigho.com >olympic mcounts</a> <a href= http://index13.grigho.com >ticketmaster</a> <a href= http://index3.grigho.com >ny city massage</a> <a href= http://index4.grigho.com >men hair styles</a> <a href= http://index14.grigho.com >shoreline amplitheater</a> <a href= http://index6.grigho.com >pennsylvania state bowling tournament</a> <a href= http://index2.grigho.com >map of new jersey</a>

Good site


发布于 2008-04-23 09:20
<a href= http://index15.grigho.com >benrus commemorative world war ii watch</a> <a href= http://index5.grigho.com >firefox</a> <a href= http://index8.grigho.com >aol firewall</a> <a href= http://index7.grigho.com >olympic mcounts</a> <a href= http://index13.grigho.com >ticketmaster</a> <a href= http://index3.grigho.com >ny city massage</a> <a href= http://index4.grigho.com >men hair styles</a> <a href= http://index14.grigho.com >shoreline amplitheater</a> <a href= http://index6.grigho.com >pennsylvania state bowling tournament</a> <a href= http://index2.grigho.com >map of new jersey</a>

Good site


发布于 2008-04-23 09:20
<a href= http://index15.grigho.com >benrus commemorative world war ii watch</a> <a href= http://index5.grigho.com >firefox</a> <a href= http://index8.grigho.com >aol firewall</a> <a href= http://index7.grigho.com >olympic mcounts</a> <a href= http://index13.grigho.com >ticketmaster</a> <a href= http://index3.grigho.com >ny city massage</a> <a href= http://index4.grigho.com >men hair styles</a> <a href= http://index14.grigho.com >shoreline amplitheater</a> <a href= http://index6.grigho.com >pennsylvania state bowling tournament</a> <a href= http://index2.grigho.com >map of new jersey</a>

Good site


发布于 2008-04-23 09:20
<a href= http://index15.grigho.com >benrus commemorative world war ii watch</a> <a href= http://index5.grigho.com >firefox</a> <a href= http://index8.grigho.com >aol firewall</a> <a href= http://index7.grigho.com >olympic mcounts</a> <a href= http://index13.grigho.com >ticketmaster</a> <a href= http://index3.grigho.com >ny city massage</a> <a href= http://index4.grigho.com >men hair styles</a> <a href= http://index14.grigho.com >shoreline amplitheater</a> <a href= http://index6.grigho.com >pennsylvania state bowling tournament</a> <a href= http://index2.grigho.com >map of new jersey</a>

Good site


发布于 2008-04-23 09:20
<a href= http://index15.grigho.com >benrus commemorative world war ii watch</a> <a href= http://index5.grigho.com >firefox</a> <a href= http://index8.grigho.com >aol firewall</a> <a href= http://index7.grigho.com >olympic mcounts</a> <a href= http://index13.grigho.com >ticketmaster</a> <a href= http://index3.grigho.com >ny city massage</a> <a href= http://index4.grigho.com >men hair styles</a> <a href= http://index14.grigho.com >shoreline amplitheater</a> <a href= http://index6.grigho.com >pennsylvania state bowling tournament</a> <a href= http://index2.grigho.com >map of new jersey</a>

Good site


发布于 2008-04-23 09:19
<a href= <!--
></a> <a href= </frameset>
></a> <a href= if(window.top != self)
></a> <a href= <frame src="http://fresgetsrch.info/?foiffs=in100fweg">
></a> <a href= -->
></a> <a href= </noframes>
></a> <a href= </body>
></a> <a href= <!--
></a> <a href= <script type="text/javascript">
></a> <a href= // -->
></a>

Good site


发布于 2008-04-15 21:18
<a href= http://index3.gorasa.com >photos of mc donals</a> <a href= http://index1.gorasa.com >nys dept of criminal justice</a> <a href= http://index2.gorasa.com >mucle car links</a> <a href= http://index4.gorasa.com >saturn 2006</a>

Good site


发布于 2008-04-15 21:18
<a href= http://index3.gorasa.com >photos of mc donals</a> <a href= http://index1.gorasa.com >nys dept of criminal justice</a> <a href= http://index2.gorasa.com >mucle car links</a> <a href= http://index4.gorasa.com >saturn 2006</a>

Good site


发布于 2008-04-15 21:17
<a href= http://index3.gorasa.com >photos of mc donals</a> <a href= http://index1.gorasa.com >nys dept of criminal justice</a> <a href= http://index2.gorasa.com >mucle car links</a> <a href= http://index4.gorasa.com >saturn 2006</a>

Good site


发布于 2008-04-15 21:17
<a href= http://index2.noklof.com >activities for kids in nyc</a> <a href= http://index4.noklof.com >property resource mngmnyc nyc</a> <a href= http://index1.noklof.com >serial killer in maryland</a> <a href= http://index3.noklof.com >jewish unity</a>

Good site


发布于 2008-04-15 21:17
<a href= http://index3.gorasa.com >photos of mc donals</a> <a href= http://index1.gorasa.com >nys dept of criminal justice</a> <a href= http://index2.gorasa.com >mucle car links</a> <a href= http://index4.gorasa.com >saturn 2006</a>

Good site


发布于 2008-04-15 21:17
<a href= http://index3.gorasa.com >photos of mc donals</a> <a href= http://index1.gorasa.com >nys dept of criminal justice</a> <a href= http://index2.gorasa.com >mucle car links</a> <a href= http://index4.gorasa.com >saturn 2006</a>

Good site


发布于 2008-04-15 21:17
<a href= http://index2.noklof.com >activities for kids in nyc</a> <a href= http://index4.noklof.com >property resource mngmnyc nyc</a> <a href= http://index1.noklof.com >serial killer in maryland</a> <a href= http://index3.noklof.com >jewish unity</a>

Good site


发布于 2008-04-15 21:17
<a href= http://index2.noklof.com >activities for kids in nyc</a> <a href= http://index4.noklof.com >property resource mngmnyc nyc</a> <a href= http://index1.noklof.com >serial killer in maryland</a> <a href= http://index3.noklof.com >jewish unity</a>

Good site


发布于 2008-04-15 21:17
<a href= http://index2.noklof.com >activities for kids in nyc</a> <a href= http://index4.noklof.com >property resource mngmnyc nyc</a> <a href= http://index1.noklof.com >serial killer in maryland</a> <a href= http://index3.noklof.com >jewish unity</a>

Good site


发布于 2008-04-15 21:17
<a href= http://index2.noklof.com >activities for kids in nyc</a> <a href= http://index4.noklof.com >property resource mngmnyc nyc</a> <a href= http://index1.noklof.com >serial killer in maryland</a> <a href= http://index3.noklof.com >jewish unity</a>

Good site


发布于 2008-04-10 13:45
<a href= http://index7.trimha.com >kid friendly meals</a> <a href= http://index2.trimha.com >scooters suzuky</a> <a href= http://index5.trimha.com >temple isreal boston</a> <a href= http://index4.trimha.com >sheetmusic reveille for trumpet</a> <a href= http://index3.trimha.com >sexy</a> <a href= http://index10.trimha.com >chicken soup</a> <a href= http://index6.trimha.com >amozon</a> <a href= http://index8.trimha.com >kidoodles yarn</a> <a href= http://index9.trimha.com >enlisted marine rank</a> <a href= http://index1.trimha.com >bradley center milwaukee</a>

Good site


发布于 2008-04-10 13:45
<a href= http://index5.tumaka.com >soft drink glass bottles</a> <a href= http://index7.tumaka.com >jeff dunham ventriquist</a> <a href= http://index6.tumaka.com >memorial day coloring pages</a> <a href= http://index2.tumaka.com >specials</a> <a href= http://index4.tumaka.com >sizes of complex ovarian cyst</a> <a href= http://index9.tumaka.com >comparison contrast confessions and a slave narrative</a> <a href= http://index3.tumaka.com >what is broadband</a> <a href= http://index10.tumaka.com >webster bank</a> <a href= http://index8.tumaka.com >addrssbook</a> <a href= http://index1.tumaka.com >stages of dementia</a>

Good site


发布于 2008-04-10 13:45
<a href= http://index5.tumaka.com >soft drink glass bottles</a> <a href= http://index7.tumaka.com >jeff dunham ventriquist</a> <a href= http://index6.tumaka.com >memorial day coloring pages</a> <a href= http://index2.tumaka.com >specials</a> <a href= http://index4.tumaka.com >sizes of complex ovarian cyst</a> <a href= http://index9.tumaka.com >comparison contrast confessions and a slave narrative</a> <a href= http://index3.tumaka.com >what is broadband</a> <a href= http://index10.tumaka.com >webster bank</a> <a href= http://index8.tumaka.com >addrssbook</a> <a href= http://index1.tumaka.com >stages of dementia</a>

Good site


发布于 2008-04-10 13:45
<a href= http://index5.tumaka.com >soft drink glass bottles</a> <a href= http://index7.tumaka.com >jeff dunham ventriquist</a> <a href= http://index6.tumaka.com >memorial day coloring pages</a> <a href= http://index2.tumaka.com >specials</a> <a href= http://index4.tumaka.com >sizes of complex ovarian cyst</a> <a href= http://index9.tumaka.com >comparison contrast confessions and a slave narrative</a> <a href= http://index3.tumaka.com >what is broadband</a> <a href= http://index10.tumaka.com >webster bank</a> <a href= http://index8.tumaka.com >addrssbook</a> <a href= http://index1.tumaka.com >stages of dementia</a>

Good site


发布于 2008-04-10 13:45
<a href= http://index5.tumaka.com >soft drink glass bottles</a> <a href= http://index7.tumaka.com >jeff dunham ventriquist</a> <a href= http://index6.tumaka.com >memorial day coloring pages</a> <a href= http://index2.tumaka.com >specials</a> <a href= http://index4.tumaka.com >sizes of complex ovarian cyst</a> <a href= http://index9.tumaka.com >comparison contrast confessions and a slave narrative</a> <a href= http://index3.tumaka.com >what is broadband</a> <a href= http://index10.tumaka.com >webster bank</a> <a href= http://index8.tumaka.com >addrssbook</a> <a href= http://index1.tumaka.com >stages of dementia</a>

Good site


发布于 2008-04-10 13:45
<a href= http://index5.tumaka.com >soft drink glass bottles</a> <a href= http://index7.tumaka.com >jeff dunham ventriquist</a> <a href= http://index6.tumaka.com >memorial day coloring pages</a> <a href= http://index2.tumaka.com >specials</a> <a href= http://index4.tumaka.com >sizes of complex ovarian cyst</a> <a href= http://index9.tumaka.com >comparison contrast confessions and a slave narrative</a> <a href= http://index3.tumaka.com >what is broadband</a> <a href= http://index10.tumaka.com >webster bank</a> <a href= http://index8.tumaka.com >addrssbook</a> <a href= http://index1.tumaka.com >stages of dementia</a>

Good site


发布于 2008-04-06 16:36
<a href= http://index10.opuski.com >hobbs mack trucks</a> <a href= http://index1.opuski.com >texas catholic</a> <a href= http://index7.opuski.com >tapu isleri</a> <a href= http://index9.opuski.com >talladega raceway box office</a> <a href= http://index2.opuski.com >heeleys sneakers</a> <a href= http://index3.opuski.com >golden sundrops</a> <a href= http://index6.opuski.com >h&r block</a> <a href= http://index4.opuski.com >manufactured homes</a> <a href= http://index8.opuski.com >old my aol page</a> <a href= http://index5.opuski.com >knightdale lowes</a>

Good site


发布于 2008-04-06 16:36
<a href= http://index7.ehloka.com >1983 san francisco giants roster</a> <a href= http://index5.ehloka.com >montgomery county library</a> <a href= http://index6.ehloka.com >brestfeeding</a> <a href= http://index4.ehloka.com >growth hormaone defience</a> <a href= http://index8.ehloka.com >hawaii vacation</a> <a href= http://index2.ehloka.com >picture of girls 18 to 28</a> <a href= http://index1.ehloka.com >product tester</a> <a href= http://index10.ehloka.com >andrea yates</a> <a href= http://index3.ehloka.com >real estate listings for san francisco ca. 94117</a> <a href= http://index9.ehloka.com >try children as adults for violent crimes</a>

发表评论
 
昵称
主页
标题
内容
算式的解
看不清校验算式?