<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>O&#039;Co DOO &#187; Website</title>
	<atom:link href="http://www.iscodoo.com/category/website/feed" rel="self" type="application/rss+xml" />
	<link>http://www.iscodoo.com</link>
	<description>一个竟然存在了四年的博客</description>
	<lastBuildDate>Sat, 24 Jul 2010 10:26:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>高级escape 解密</title>
		<link>http://www.iscodoo.com/2010/07/advanced-unescape.html</link>
		<comments>http://www.iscodoo.com/2010/07/advanced-unescape.html#comments</comments>
		<pubDate>Fri, 02 Jul 2010 20:07:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[escape]]></category>
		<category><![CDATA[unescape]]></category>
		<category><![CDATA[url decode]]></category>

		<guid isPermaLink="false">http://www.iscodoo.com/?p=10599</guid>
		<description><![CDATA[在很多脚本语言的应用当中,escape函数是一个可转换编码的函数,比如javascript 的 ajax 中,向a.php传递参数?city=北京,可先将&#8221;北京&#8221;用escape重新编码,再进行传递,在服务器端接收后再解码才不会出现乱码。escape一 般用于传递URL参数和类似urlencode base64_encode函数是类似的。如上?city=北京. 有的时候, 网页内的一些代码并不希望被别人看到, 例如下载地址, 弹窗, 某个mp3地址, 网页木马等, 这就需要加密起来. 最常见的加密方式就是使用一些javascript函数进行编码转换. 当你查看这些加密html代码时, 看到的是一些乱码, 而浏览器是可以识别的, 它会正确的输出, 这样就直到加密作用. 这里介绍的是高级escape的解密(因为今天遇到了-,-!), 一般的escape加密解密, 网上一搜一大堆, 就不说了. 这个很恶心的东西是这个样子的, 感觉好像有码片, 我喜欢看无码的嘛. 解密方法: 1, 前戏, 使用Decode URL工具, 我使用的是站长工具, 这玩意网上一大堆. 把这个Y毛玩意强力插入: function%20ew_dc%28s%29%7Bvar%20d%3D%27%27%2Ck%3D0%2Ca%3Dnew%20Array%28%29%2Cr%3Bfor%28i%3D0%3Bi%3Cs.length%3Bi++%29%7Bc%3Ds.charCodeAt%28i%29%3Bif%28c%3C128%29c%5E%3D5%3Bd+%3DString.fromCharCode%28c%29%3Bif%28%28i+1%29%2599%3D%3D0%29%7Ba%5Bk++%5D%3Dd%3Bd%3D%27%27%3B%7D%7Dr%3Da.join%28%27%27%29+d%3Bdocument.write%28r%29%3B%7D 有码变薄码了: 2, 开始脱, 做一些修改, 主要是把&#8221;document.write&#8221;给改成alert, 不让我看, 我就弹出来看, 嗯哼! 3, 带套, 合并成一个html文件: 4, 爽歪歪中, 保存上面html文件, 然后打开后就可以看到那些恶心的东西是什么了. 5, 提供一个网马加密解密的资料, 点此下载. 至此, 解密XX完毕.]]></description>
		<wfw:commentRss>http://www.iscodoo.com/2010/07/advanced-unescape.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lighttpd下的301重定向</title>
		<link>http://www.iscodoo.com/2009/12/301-redirect-on-lighttpd.html</link>
		<comments>http://www.iscodoo.com/2009/12/301-redirect-on-lighttpd.html#comments</comments>
		<pubDate>Mon, 28 Dec 2009 12:54:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[301 redirect]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Kloxo]]></category>
		<category><![CDATA[lighttpd]]></category>

		<guid isPermaLink="false">http://www.iscodoo.com/?p=10593</guid>
		<description><![CDATA[步入正题，有关301重定向的问题，网上一大堆，大都是差不多的文章，可以参考百度百科，也可以参考月光的301重定向的实现方法。 资料基本上都是讲apache, ASP, PHP, JavaScript等实现301重定向的方法的，因为我才把apache换成lighttpd，所以需要有关Lighttpd的相关资料。又因为中文的Lighttpd资料太少，使用的相对也少一些，英文资料也是很简洁，只好自己摸索。 我的要求是，不仅是首页url的重定向，整个网站里第一个url都要能重定向到对应的页面上，而不会出现404 page not found。而事实上，网上教你301重定向的方法的，基本上都是首页的重定向，所以这个对我来说没有意义。关http1.1状态的知识，可以参考：18禁“网页”和HTTP 1.1状态代码及其含义。 几种301重定向实现方法的利弊： ASP： 几百年前我就不用了，想用也用不了。 PHP：简单，但是它只能实现文件的跳转，目录就不行了，放弃。 JavaScript：简单，但会被搜索引擎惩罚，放弃。 DNS：这个就是转发了，只能定向首页，无用。 Apache：这个我向青蛙同志借了一个Apcahe的空间亲自实验过，可以用而且很完美，规则就一句： RedirectMatch permanent ^/(.*)$ http://www.newdomain.com/$1 直接把这句话放网站根目录下的.htaccess里就行了。 以上所有方法都不能满足我的要求，而且我不想换回apache，只能去探索Lighttpd的方法了。还好，没多会就找到了，也是一句话： $HTTP["host"] == &#8220;www.olddomain.com&#8221; { url.redirect = ( &#8220;^/(.*)&#8221; =&#62; &#8220;http://www.newdomain.com/$1&#8243;, ) } 好了，关键是这句话放在什么地方，Lighttpd是没有.htaccess文件的，只能放在/etc/lighttpd/lighttpd.conf里面。这时候要注意，如果你的lighttpd.conf里面有rewrite规则的话，有可能不成功，要把上面的redirect规则放在这个文件的最前面。保存文件后在终端重启Lighttpd：service lighttpd restart. 由于我的VPS用的是Kloxo（LXadmin的前身）面版，把这个放在lighttpd.conf里面是无用的，这一点折腾了我好几天的时间，正赶上人家过圣诞节放假，求助无果。仔细阅读了lighttpd.conf，在最后面发现有这样一句：include &#8220;conf/kloxo/kloxo.conf&#8221;，才发现原来Kloxo的301重定向规则是放在/etc/lighttpd/conf/kloxo/lighttpd.yourdomain.com这个文件里的。删除里面所有内容，放入上面那个规则，重启Lighttpd服务，使用Check Server Headers Tool &#8211; HTTP Status Codes Checker检查，一切OK，所有URL都301重定向到了相对应的页面，没有一个404产生。 为了能够更好的使网站在301重定向过程中不受搜索引擎的惩罚，建议参考一下Google网站管理员中心的几篇文章： 301 重定向 迁移网站]]></description>
		<wfw:commentRss>http://www.iscodoo.com/2009/12/301-redirect-on-lighttpd.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>lighttpd rewrite for joomla sh404sef</title>
		<link>http://www.iscodoo.com/2009/12/lighttpd-rewrite-for-joomla-sh404sef.html</link>
		<comments>http://www.iscodoo.com/2009/12/lighttpd-rewrite-for-joomla-sh404sef.html#comments</comments>
		<pubDate>Tue, 08 Dec 2009 06:56:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Kloxo]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[sh404SEF]]></category>

		<guid isPermaLink="false">http://www.iscodoo.com/?p=10580</guid>
		<description><![CDATA[I switch apache to lighttpd on my VPS with Kloxo, everything are running well except one Joomla based site. It mainly because the Joomla site has SH404SEF installed. I find &#8220;How do i configure my lighttpd server&#8221; on FAQ of SH404SEF site, now everything of this Joomla site runs well. Here is how to configure]]></description>
		<wfw:commentRss>http://www.iscodoo.com/2009/12/lighttpd-rewrite-for-joomla-sh404sef.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>我的博客史</title>
		<link>http://www.iscodoo.com/2009/04/my-blogging-history.html</link>
		<comments>http://www.iscodoo.com/2009/04/my-blogging-history.html#comments</comments>
		<pubDate>Tue, 07 Apr 2009 13:40:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[博客]]></category>

		<guid isPermaLink="false">http://www.iscodoo.com/2009/04/my-blogging-history.html</guid>
		<description><![CDATA[从Firefox到博客，从博客到主机，从主机到Linux，从Linux到PHP，从PHP到Joomla，从Joomla再到．．．．．这基本上就是我大学时代不学无术的线路，我就是在这条线路中学会blogging的． 我的博客风流史，也差不多就是我的主机史． 我第一次接触博客这个玩意，是在2005年的那个被风吹过夏天，开始是在内网中搞个多用户的博客，然后在isblog.cn上面开了个博，后来我发现，有些人的博客是独产的域名，感觉特别牛逼．特别是在FF中文论坛上邂逅了一群神不可测的大牛（比如现在博客的链接的某些头像像青蛙的人）以后，立誓一定要给自己整个独立域名的博客． 在热心观众，头像像青蛙的，厉害的帮助下，终于有了一个独产域名的博客xxxx.net，用的是他买的BlueHost的主机，给我addon了一个domain．那时候使用的是Bo-blog的单用户博客，开始了我的主机史．一时间，各地人民群众纷纷发来贺电，感觉自己当时特别NB，现在想想，其实也没什么．．．． 没多久，青蛙同学的实在忍受不了BlueHost那比NJUTCM还慢的速度，连域名一起换掉了．还好，这位同学很热心，BlueHost还有大半年才到期，把它的密码都告诉我了，所以我就在上面耍起了，这中间学到不少关于主机，网站的东西． BlueHost的主机到期了，也不好意思再在人家屋里睡了，据说人家已经有女朋友了．就捉摸着要弄自己在空间．当时DreamHost比较火，因为用优惠无码买的话，第一年好像只需要150多菊花币，而且是无限域名，250G的硬盘，250G的流量，让你永远也不会漏．那个时候没有信用卡，又黑了那头像像青蛙的热心观众一把，让他代购，我给他菊花币，还少给了十几块钱，人家当时特先进，当时就给我说不差钱，弄的我很不好意思．0,0 我对DH的态度从开始的非常好到一般，然后是偶尔挂挂是正常的，接着就是挂就挂了吧，无所谓，已经习惯了，一到现在的垃圾．这刚好就和大学四年从大一新生到大四老油条的态度差不多． 就这样我的牛逼感又得到了提升，高兴的几天没睡好．我也连域名一起换掉了，就是现在的iscodoo.com． 一开始使用DreamHost感觉特别好，自己从来没见过有这样的服务，当时就把国内的IDC骂了个遍（现在也还是这样骂），现在才知道reseller的服务都是这样的，关于里面的猫腻，我就不说了，百度谷歌一大把．反正你只要记住，Dreamhost的MySQL经常挂，已经由原来的月经变成现在的日经了．反正才150多菊花币买的，就不计较这么多了． 这一年里只发生了两件事，第一是我的域名被GFW了，第一次被GFW搞，还真的有点爽歪歪；第二就是在这一年的最后一天从Bo-blog转到了WordPress. 到了第二年，空间到期了，由于空间里放了N多网站，还有点有流量的，就中了洋鬼子的计，白花花银子就这样被骗走了了．这两年间我的空间大事没有，小事还是不断（从月经到日经）．后来做了个XX网站（别想歪了），流量一直上升，空间经常挂，又因为是XX内容（XX还可以指有版权问题的东西），被人告了，Dreamhost把这个网站的域名给Disable了，所以把它转移到了现在的VPS上面，每月20美元，虽然比起DreamMareHost要贵上许多，但是这个VPS真TMD值！ 其他的网站（包括这个博客）还一直放在DreamHost上面．但是今天，当我有很重要的东西要从博客上找时候（当然你是不会知道是什么东西，放在哪个地方的），发现TND又DreamHost又日经了，这一次劳资终于忍受不了了，F*K，转VPS！ 就这样，一次平淡无奇的日经，唤醒了我内心深处久违的冲动，像野兽一般，40分钟解决战斗，1小时生效．现在，一切完好. Goodbye DreamHost, we will be never together again． 下面是博客青春纪念册，包括2005年的那个博客，和现在的博客统计信息，以此为念．]]></description>
		<wfw:commentRss>http://www.iscodoo.com/2009/04/my-blogging-history.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PHPCMS2007跨频道转移栏目和文章解决方法</title>
		<link>http://www.iscodoo.com/2008/04/transfer-category-and-articles-cross-channel-in-phpcms2007.html</link>
		<comments>http://www.iscodoo.com/2008/04/transfer-category-and-articles-cross-channel-in-phpcms2007.html#comments</comments>
		<pubDate>Tue, 01 Apr 2008 14:40:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[phpcms]]></category>

		<guid isPermaLink="false">http://www.iscodoo.com/transfer-category-and-articles-cross-channel-in-phpcms2007/</guid>
		<description><![CDATA[从2.4升级到了2007,所有文章都在文章频道下面,如果文章多的话,就失去了分表储存的意义,还不如不升级直接用2.4. 看了一下数据库,很好解决的. 步骤: 一,连接两个表 到数据库里面看一下就会发现储存文章的表多了一个phpcms7_article_2和phpcms7_article_data_2. 这两个表一个是文章的信息,一个是文章的内容content.要做的关键就是把它们连接起来. 执行以下语句: 1,在phpcms7_article_data_2表上新建一个catid字段,用catid来连接: ALTER TABLE `phpcms7_article_data_2` ADD `catid` INT( 11 ) NOT NULL AFTER `articleid` ; 2,连接起来 UPDATE (phpcms7_article_data_1 LEFT JOIN phpcms7_article_1 ON phpcms7_article_data_1.`articleid` = phpcms7_article_1.`articleid`) SET phpcms7_article_data_1.catid = phpcms7_article_1.catid 二,转移文章 1,转移文章相关信息 insert into phpcms7_article_2 (`articleid`,`catid`,`specialid`,`typeid`,`title`,`titleintact`,`subheading`,`style`, `showcommentlink`,`introduce`,`keywords`,`author`,`copyfrom`,`paginationtype`, `maxcharperpage`,`hits`,`comments`,`thumb`,`username`,`addtime`,`editor`,`edittime`, `checker`,`checktime`,`templateid`,`skinid`,`arrposid`,`status`,`listorder`,`arrgroupidview`, `readpoint`,`ishtml`,`htmldir`,`prefix`,`urlruleid`,`islink`,`linkurl`) select `articleid`,`catid`,`specialid`,`typeid`,`title`,`titleintact`,`subheading`,`style`, `showcommentlink`,`introduce`,`keywords`,`author`,`copyfrom`,`paginationtype`, `maxcharperpage`,`hits`,`comments`,`thumb`,`username`,`addtime`,`editor`,`edittime`, `checker`,`checktime`,`templateid`,`skinid`,`arrposid`,`status`,`listorder`,`arrgroupidview`, `readpoint`,`ishtml`,`htmldir`,`prefix`,`urlruleid`,`islink`,`linkurl` from phpcms7_article_1 where `catid`=XX]]></description>
		<wfw:commentRss>http://www.iscodoo.com/2008/04/transfer-category-and-articles-cross-channel-in-phpcms2007.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>我的火车头Bo-blog专用WEB在线发布模块</title>
		<link>http://www.iscodoo.com/2008/01/huochetou-bo-blog-module.html</link>
		<comments>http://www.iscodoo.com/2008/01/huochetou-bo-blog-module.html#comments</comments>
		<pubDate>Tue, 22 Jan 2008 10:11:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[Bo-blog]]></category>
		<category><![CDATA[module]]></category>

		<guid isPermaLink="false">http://www.iscodoo.com/huochetou-bo-blog-module/</guid>
		<description><![CDATA[其实就是拿了以前的2.0.3 SP3的模块改成的，主要是增加了tag和blogalias的入库，这两项不好采，往往要自己手写，我把它们使用标题来处理的，就是和标题一样，只是格式不一样，SEO意义不大。。。 其中用到了一个工具： http://www.gjzj.net/tools/locoypost/ 作用就是自动抓包的时候把那些让人看不懂的东西转化一下，然后就可以在里面编辑了，我做成的是这个样子的： go=edit_store&#38;idforsave=&#38;oldgo=act=edit&#38;forcedraft=0&#38;useeditor=fckeditor&#38;title=[标签:标题]&#38;category=1&#38;newcatename=&#38;newcatedesc=&#38;newcatemode=0&#38;newcateproperty=0&#38;targetcate=-2&#38;html=1&#38;ubb=1&#38;emot=1&#38;content=[标签:内容]&#38;summaryway=0&#38;entrysummary=&#38;blogalias=[标签:网址]&#38;originsrc=&#38;comefrom=&#38;newyear=2008&#38;newmonth=1&#38;newday=22&#38;newhour=16&#38;newmin=31&#38;newsec=56&#38;property=0&#38;sticky=0&#38;sweather=blank&#38;tags=[标签:关键词]&#38;pinged=&#38;blogpsw= 其他的部分就不用说了吧，都很简单的。 还是要感谢一下前人制作的这个module.]]></description>
		<wfw:commentRss>http://www.iscodoo.com/2008/01/huochetou-bo-blog-module.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo Media Player</title>
		<link>http://www.iscodoo.com/2008/01/yahoo-media-player.html</link>
		<comments>http://www.iscodoo.com/2008/01/yahoo-media-player.html#comments</comments>
		<pubDate>Wed, 09 Jan 2008 06:43:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[Media Player]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.iscodoo.com/yahoo-media-player/</guid>
		<description><![CDATA[Inno Inter 1984 Shawn Canon alwaysyogurting 匈牙利舞曲 卡农QQ音速版 点击歌曲前面的播放按钮播放,底下就会弹出Yahoo Media Player播放器. 很简单的使用方法: (使用时请把第一个&#60;后面的空格去掉) 1,连接到mp3 &#60; a href=&#8221;example1.mp3&#8243;&#62;My first song &#60; a href=&#8221;example2.mp3&#8243;&#62;My second song 2,使用Yahoo Media Player &#60; script src=&#8221;http://mediaplayer.yahoo.com/js&#8221; type=&#8221;text/javascript&#8221;&#62; 3,插入网页 如果还不清楚或者更高级的使用方法,请看:the Yahoo! Media Player public wiki.]]></description>
		<wfw:commentRss>http://www.iscodoo.com/2008/01/yahoo-media-player.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.iscodoo.com/Inno_Inter_1984.mp3" length="3538381" type="audio/mpeg" />
<enclosure url="http://www.iscodoo.com/Shawn%20Canon.mp3" length="2695592" type="audio/mpeg" />
<enclosure url="http://www.iscodoo.com/music/alwaysyogurting.mp3" length="3312325" type="audio/mpeg" />
<enclosure url="http://www.iscodoo.com/music/HungarianDances.mp3" length="3310992" type="audio/mpeg" />
<enclosure url="http://www.iscodoo.com/music/r2canon.mp3" length="2756088" type="audio/mpeg" />
<enclosure url="http://www.iscodoo.com/mp3/Inno_Inter_1984.mp3" length="3538381" type="audio/mpeg" />
<enclosure url="http://www.iscodoo.com/mp3/Shawn%20Canon.mp3" length="2695592" type="audio/mpeg" />
<enclosure url="http://www.iscodoo.com/mp3/alwaysyogurting.mp3" length="3312325" type="audio/mpeg" />
<enclosure url="http://www.iscodoo.com/mp3/HungarianDances.mp3" length="3310992" type="audio/mpeg" />
<enclosure url="http://www.iscodoo.com/mp3/r2canon.mp3" length="2756088" type="audio/mpeg" />
		</item>
		<item>
		<title>转换Bo-blog到wordpress</title>
		<link>http://www.iscodoo.com/2007/12/convert-bo-blog-to-wordpress.html</link>
		<comments>http://www.iscodoo.com/2007/12/convert-bo-blog-to-wordpress.html#comments</comments>
		<pubDate>Sun, 30 Dec 2007 16:46:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[Bo-blog]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[f2blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.iscodoo.com/wp23/?p=10208</guid>
		<description><![CDATA[前言: 在新年的第一天,Bo-blog发布2.1.0正式版的日子里,我把使用了快两年的Bo-blog转成了WordPress! 写这篇文章的时候,我的分类终于多了一个wordpress! 效果: 文章,评论,数据库中文章的ID完全转换. 思路: Bo-blog2.X转F2blog1.2再转wordpress2.2.2升级wordpress2.3.2 转换过程: (一)Bo-blog转F2blog F2blog官方有转换程序,很简单的. 转换程序:http://forum.f2blog.com/thread-449-1-2.html 这里要注意的是,转换前要把Bo-blog的那个ID为0的文章给删除掉,同样,F2blog和wordpress里面自带的那篇也要删掉.这个与文章的ID有关,后面会讲到. 转换好,进入F2blog后台,导出RSS,然后用Editplus打开XML文件,要替换三个地方: 1,&#60; !--[CDATA[替换为空 2,] ]--&#62;替换为空 3,description替换为content:encoded 打开PhpMyAdmin,对照boblog_blogs表的ID,如果不一致,使用upset语句微调,相信差别不会太大的,我的就差了一个1,update后相应的表中的logId也要做对应调整. (二)安装WordPress2.2.2 下载地址:http://wordpress.org/wordpress-2.2.2.zip 全新安装后删默认的那篇日志和评论,从后台删不干净,要从数据库里面删. 然后就是导入刚刚修改过的XML文件. 导入完毕后,执行以下SQL语句: 1,wp_posts增加一列 ALTER TABLE `wp_posts` ADD COLUMN `f2blog_id` int( 12 ) NOT NULL 2,更新f2blog_id,插入f2blog_logs的id UPDATE (wp_posts LEFT JOIN f2blog_logs ON wp_posts.post_title = f2blog_logs.logTitle) SET wp_posts.f2blog_id = f2blog_logs.id WHERE f2blog_logs.id &#60;&#62; 125 3,更新wp_post2cat的post_id,文章分类的ID]]></description>
		<wfw:commentRss>http://www.iscodoo.com/2007/12/convert-bo-blog-to-wordpress.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>安装编辑器FCKeditor2.5</title>
		<link>http://www.iscodoo.com/2007/12/install-fckeditor-for-bo-blog.html</link>
		<comments>http://www.iscodoo.com/2007/12/install-fckeditor-for-bo-blog.html#comments</comments>
		<pubDate>Tue, 04 Dec 2007 06:49:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[Bo-blog]]></category>
		<category><![CDATA[FCKeditor]]></category>

		<guid isPermaLink="false">http://www.iscodoo.com/wordpress/?p=5</guid>
		<description><![CDATA[1,下载FCKeditor2.5正式版 http://sourceforge.net/project/showfiles.php?group_id=75348 2,解压,上传到/blog/editor/fckeditor/里面 3,关键的editordef.php &#60;?PHP if (!defined(&#8216;VALIDADMIN&#8217;)) die (&#8216;Access Denied.&#8217;); $editorjs=&#60;&#60;&#60;eot &#60;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221; src=&#8221;editor/fckeditor/fckeditor.js&#8221;&#62;&#60;/script&#62; &#60;script type=&#8221;text/javascript&#8221;&#62; window.onload = function() { var oFCKeditor = new FCKeditor( &#8216;content&#8217; ) ; oFCKeditor.Height = &#8220;400&#8243;; oFCKeditor.Width = &#8220;100%&#8221; ; oFCKeditor.BasePath = &#8216;/editor/fckeditor/&#8217; ; oFCKeditor.ReplaceTextarea() ; } &#60;/script&#62; eot; $editorbody=&#60;&#60;&#60;eot &#60;textarea name=&#8221;content&#8221; id=&#8221;content&#8221; rows=&#8217;20&#8242; cols=&#8217;100&#8242; style=&#8217;font-size: 10pt;&#8217;&#62;{content}&#60;/textarea&#62; &#60;li&#62;{$lna[743]}&#60;/li&#62; &#60;li&#62;{$lna[744]}&#60;/li&#62;&#60;/ul&#62;]]></description>
		<wfw:commentRss>http://www.iscodoo.com/2007/12/install-fckeditor-for-bo-blog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>欣赏:各式各样的网页页码条</title>
		<link>http://www.iscodoo.com/2007/11/various-page-number-design.html</link>
		<comments>http://www.iscodoo.com/2007/11/various-page-number-design.html#comments</comments>
		<pubDate>Sat, 17 Nov 2007 18:01:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.iscodoo.com/wordpress/?p=11</guid>
		<description><![CDATA[页码条在网页设计上是必不可少的，因为你不可能老是提供一个按钮“下一页”，这样浏览者会变得很烦躁的。然而，页码的设计也是很讲究的，要好看、简洁还是花哨呢？有些网站的页码设计得非常漂亮，而有些却让人摸不着头脑。这篇文章翻译自Smashing Magizine，列出出将近60个网站的页码设计，当中哪个失败，哪个漂亮，哪个让人摸不着头脑，哪个你最喜欢呢？还是由你来判断吧！点击图片可进入相应的网站。 首先看两个失败的范例，下面这个页码设计得色彩过于清淡。 而这个页码设计得虽然漂亮，但到底现在是第一页还是第二页呢？如果是第一页，为什么第二页会是白色的呢？ 下面这两个是否略显寒酸呢？ 比较有创意的页码条： 简洁而好看实用的页码条： 漂亮实用的页码条： 提供选项的页码条： 一些特别的： 其实页码不需要漂亮，实用就够了。]]></description>
		<wfw:commentRss>http://www.iscodoo.com/2007/11/various-page-number-design.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
