<?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>SIDE-ALICE &#187; 技术Tech</title>
	<atom:link href="http://sidealice.com/category/%e6%8a%80%e6%9c%aftechnology/feed/" rel="self" type="application/rss+xml" />
	<link>http://sidealice.com</link>
	<description>..::欢迎来到SIDE-ALICE::..	[ACG+Tech+Orz]</description>
	<lastBuildDate>Mon, 26 Dec 2011 05:49:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>PHP的Realpath Cache</title>
		<link>http://sidealice.com/2011/12/php%e7%9a%84realpath-cache/</link>
		<comments>http://sidealice.com/2011/12/php%e7%9a%84realpath-cache/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 05:49:45 +0000</pubDate>
		<dc:creator>AirForce</dc:creator>
				<category><![CDATA[软件开发SoftDev]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://sidealice.com/?p=2071</guid>
		<description><![CDATA[前言 PHP的缓存有很多种，包括输出缓冲(ob系列函数)，opcode缓存(APC，eAccelerator,XCache等扩展实现)，这些大家已经很熟悉了，接下来介绍一下一个不太被人注意的PHP缓存机制：realpath_cache。 介绍 require,require_once,include,include_once这四个语句(并非函数)大家经常会用到，如果用这类语句去包含文件(相对路径)的话，那么PHP会去include_path所指定的路径中去查找相关文件。一个应用中会存在大量的require_once语句调用，如果每次调用都去include_path中查找相应的文件，势必会对应用的性能产生负面影响。为了避免这种负面效应产生的影响，PHPER们会使用文件的绝对路径来包含所需的文件，这样就减少了查询include_path的次数。 其实，PHP自5.1.0起，就引入了RealpathCache。RealpathCache可以把PHP所用到文件的realpath进行缓存，以便PHP再使用这些文件的时候不需要再去include_path中查找，加快PHP的执行速度。 配置 realpath cache的配置项有两个，分别为realpath_cache_size和realpath_cache_ttl，可以在php.ini中进行修改： &#160; view source print? 01 ; Determines the size of the realpath cache to be used by PHP. This value should 02 ; be increased on systems where PHP opens many files to reflect the quantity of 03 ; the file operations performed. 04 ; http://php.net/realpath-cache-size 05 ;realpath_cache_size = [...]]]></description>
		<wfw:commentRss>http://sidealice.com/2011/12/php%e7%9a%84realpath-cache/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>【翻译】PHP扩展编写第一步：PHP和Zend介绍</title>
		<link>http://sidealice.com/2011/12/%e3%80%90%e7%bf%bb%e8%af%91%e3%80%91php%e6%89%a9%e5%b1%95%e7%bc%96%e5%86%99%e7%ac%ac%e4%b8%80%e6%ad%a5%ef%bc%9aphp%e5%92%8czend%e4%bb%8b%e7%bb%8d/</link>
		<comments>http://sidealice.com/2011/12/%e3%80%90%e7%bf%bb%e8%af%91%e3%80%91php%e6%89%a9%e5%b1%95%e7%bc%96%e5%86%99%e7%ac%ac%e4%b8%80%e6%ad%a5%ef%bc%9aphp%e5%92%8czend%e4%bb%8b%e7%bb%8d/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 05:49:14 +0000</pubDate>
		<dc:creator>AirForce</dc:creator>
				<category><![CDATA[软件开发SoftDev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://sidealice.com/?p=2069</guid>
		<description><![CDATA[http://weizhifeng.net/2011/07/03/extension-writing-part-i-introduction-to-php-and-zend/ 原文：http://devzone.zend.com/article/1021-Extension-Writing-Part-I-Introduction-to-PHP-and-Zend 介绍 如果你在读这篇入门文章，那么你可能对写PHP扩展有点兴趣。如果不是… 好吧，那么等我们写完这篇文章，你将会发现一个之前自己完全不知道，但是非常有趣的东西。 这篇入门文章假设你对PHP语言和以及PHP的编写语言C语言都有一定的熟悉。 让我们以“为什么你需要写一个PHP扩展”作为开始。 因为PHP语言本身抽象程度有限，有一些库或者操作系统级别的调用，不能用PHP直接调用。 你想给PHP添加一些与众不同的行为。 你已经写了一些PHP代码，但是当运行的时候你知道它可以更快，更小，消耗的内存更少。 你有一部分程序想出售，你可以把它写成扩展，这样程序是可以执行的，但是别人却无法看到源码。 这儿有很多完美的原因，但是要想创建一个扩展，你首先要需要明白什么是扩展。 什么是扩展？ 如果你用过PHP，那么你就用过扩展。除了一些极少的特殊情况之外，PHP语言中的每个用户空间函数都是以组的形式分布在一个或多个扩展之中。这些函数中的大部分是位于标准扩展中的 – 总共超过400个。PHP源码中包含86个扩展，平均每个扩展中有30个函数。算一下，大概有2500个函数。如果这个不够用，PECL仓库还提供了超过100个其他扩展，或者还可以在互联网上找到更多的扩展。 「PHP除了扩展中的这些函数之外，剩下的是什么」我听到了你的疑问「扩展是什么？PHP的核心又是什么？」 PHP的核心是由两个独立的部分组成的。在最底层是Zend Engine (ZE)。ZE 负责把人类可以理解的脚本解析成机器可以理解的符号（token），然后在一个进程空间内执行这些符号。ZE还负责内存管理，变量作用域，以及函数调用的调度。另一部分是PHP。PHP负责与SAPI层（Server Application Programming Interface，经常被用来与Apache, IIS, CLI, CGI等host环境进行关联）的交互以及绑定。它也为safe_mode和open_basedir检查提供了一个统一的控制层，就像streams层把文件和网络I/O与用户空间函数（例如fopen()，fread()和fwrite()）关联起来一样。 生命周期 当一个给定的SAPI启动后，以/usr/local/apache/bin/apachectl start的响应为例，PHP便以初始化它的核心子系统作为开始。随着SAPI启动程序的结束，PHP开始加载每个扩展的代码，然后调用它们的模块初始化(MINIT)程序。这就给每个扩展机会用来初始化内部变量，申请资源，注册资源处理器，并且用ZE注册自己的函数，这样如果一个脚本调用这些函数中的一个，ZE就知道执行哪些代码。 接下来，PHP会等待SAPI层的页面处理请求。在CGI或者CLI SAPI情况下，这个请求会立即发生并且只执行一次。在Apache, IIS, 或者其他成熟的web服务器SAPI中，请求处理会在远程用户发起请求的时候发生，并且会重复执行很多次，也可能是并发的。不管请求是怎么进来的，PHP以让ZE来建立脚本可以运行的环境作为开始，然后调用每个扩展的请求初始化（RINIT）函数。RINIT给了扩展一个机会，让其可以建立指定的环境变量，分配请求指定的资源，或者执行其他任务例如审计。关于RINIT函数调用最典型的例子是在session扩展中，如果session.auto_start选项是开启的，RINIT会自动触发用户空间的session_start()函数并且预先填充$_SESSION变量。 当请求一旦被初始化，ZE便把PHP脚本翻译成符号（token），最终翻译成可以进行单步调试和执行的opcode。如果这些opcode中的一个需要调用一个扩展函数，ZE将会给那个函数绑定参数，并且临时放弃控制权直到函数执行完成。 当一个脚本完成了执行之后，PHP将会调用每个扩展的请求结束(RSHUTDOWN)函数来执行最后的清理工作（比如保存session变量到磁盘上）。接下来，ZE执行一个清理过程（熟知的垃圾回收），实际上是对上次请求过程中使用的变量调用unset()函数。 一旦完成，PHP等待SAPI发起另一个文档请求或者一个关闭信号。在CGI和CLI SAPI的情况下，没有所谓的“下一个请求”，所以SAPI会立刻执行关闭流程。在关闭过程中，PHP又让每个扩展调用自己的模块关闭（MSHUTDOWN）函数，最后关闭自己的核心子系统。 这个过程第一次听令人有些费解，但是一旦你深入到一个扩展的开发过程中，它就会逐渐的清晰起来。 内存分配 为了避免写的很糟糕的扩展泄露内存，ZE以自己内部的方式来进行内存管理，通过用一个附加的标志来指明持久化。一个持久化分配的内存比单个页面请求存在的时间要长。一个非持久化分配的内存，相比之下，在请求结束的时候就会被释放，不管free函数是否被调用。例如用户空间变量，都是非持久化分配的内存，因为在请求结束之后这些变量都没有用了。 一个扩展理论上可以依靠ZE在每个页面请求结束后自动释放非持久化的内存，但这是不被推荐的。在请求结束的时候，分配的内存不会被立即被回收，并且会持续一段时间，所以和那块内存关联的资源将不会被恰当的关闭，这是一个很糟的做法，因为如果不能适当的清理的话，这会产生混乱。就像你即将要看见的，确定所有分配的数据被恰当的清除了是非常的简单。 让我们把常规的内存分配函数（只应该当和内部库一起工作的时候才会用到）和PHP ZE中的持久化和非持久化内存分配函数进行一个对比。 Traditional Non-Persistent Persistent malloc(count) calloc(count, num) emalloc(count) ecalloc(count, num) pemalloc(count, 1)* [...]]]></description>
		<wfw:commentRss>http://sidealice.com/2011/12/%e3%80%90%e7%bf%bb%e8%af%91%e3%80%91php%e6%89%a9%e5%b1%95%e7%bc%96%e5%86%99%e7%ac%ac%e4%b8%80%e6%ad%a5%ef%bc%9aphp%e5%92%8czend%e4%bb%8b%e7%bb%8d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenERP Magento Integration</title>
		<link>http://sidealice.com/2011/10/openerp-magento-integration/</link>
		<comments>http://sidealice.com/2011/10/openerp-magento-integration/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 07:43:04 +0000</pubDate>
		<dc:creator>AirForce</dc:creator>
				<category><![CDATA[网站开发WebDev]]></category>
		<category><![CDATA[软件开发SoftDev]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[openerp]]></category>

		<guid isPermaLink="false">http://sidealice.com/?p=2054</guid>
		<description><![CDATA[几个python的模块： http://bazaar.launchpad.net/~magentoerpconnect-core-editors/magentoerpconnect/trunk_version/files https://code.launchpad.net/~magentoerpconnect-core-editors/magentoerpconnect/magentoerpconnect-v6 &#160; Magento is a feature-rich eCommerce platform built on open-source technology that provides online merchants with unprecedented flexibility and control over the look, content and functionality of their eCommerce store. Magento’s intuitive administration interface features powerful marketing, search engine optimization and catalog-management tools to give merchants the power to create sites that [...]]]></description>
		<wfw:commentRss>http://sidealice.com/2011/10/openerp-magento-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Weather Widget with XML and Actionscript 3.0</title>
		<link>http://sidealice.com/2011/10/creating-a-weather-widget-with-xml-and-actionscript-3-0/</link>
		<comments>http://sidealice.com/2011/10/creating-a-weather-widget-with-xml-and-actionscript-3-0/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 07:42:15 +0000</pubDate>
		<dc:creator>AirForce</dc:creator>
				<category><![CDATA[网站开发WebDev]]></category>
		<category><![CDATA[actionscript3]]></category>
		<category><![CDATA[weather]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://sidealice.com/?p=2052</guid>
		<description><![CDATA[In this tutorial I’m presenting you a little weather widget, that could come handy for travel websites, or our personal page. If you make some changes on the code, you could show a different interface on your website, according to the weather on your city. Pretty cool stuff. We gonna connect weather.com XML data file [...]]]></description>
		<wfw:commentRss>http://sidealice.com/2011/10/creating-a-weather-widget-with-xml-and-actionscript-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 ImageMagick command line examples – part 1</title>
		<link>http://sidealice.com/2011/10/5-imagemagick-command-line-examples-%e2%80%93-part-1/</link>
		<comments>http://sidealice.com/2011/10/5-imagemagick-command-line-examples-%e2%80%93-part-1/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 07:40:51 +0000</pubDate>
		<dc:creator>AirForce</dc:creator>
				<category><![CDATA[网站开发WebDev]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[imagemagick]]></category>

		<guid isPermaLink="false">http://sidealice.com/?p=2050</guid>
		<description><![CDATA[If you have ever wanted to manipulate images under linux you probably have used Gimp. This isn&#8217;t your only option and if you want to do things from the command line a better option is to use ImageMagick&#8216;s convert utility. I&#8217;ve put together 5 simple command line examples that I have found useful. This is just a [...]]]></description>
		<wfw:commentRss>http://sidealice.com/2011/10/5-imagemagick-command-line-examples-%e2%80%93-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP ImageMagick MagickWand Examples</title>
		<link>http://sidealice.com/2011/10/php-imagemagick-magickwand-examples/</link>
		<comments>http://sidealice.com/2011/10/php-imagemagick-magickwand-examples/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 07:39:56 +0000</pubDate>
		<dc:creator>AirForce</dc:creator>
				<category><![CDATA[网站开发WebDev]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[magickwand]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://sidealice.com/?p=2048</guid>
		<description><![CDATA[A while back I explained how to compile the ImageMagick extension for PHPand this past week I got around to creating some example code to make some of the command line examples I have in ImageMagick command line examples part 1 and ImageMagick command line examples part 2. The first step of course is to make sure the MagickWand [...]]]></description>
		<wfw:commentRss>http://sidealice.com/2011/10/php-imagemagick-magickwand-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux 文件系统 btrfs 在 kernel 3.0的支持</title>
		<link>http://sidealice.com/2011/07/linux-%e6%96%87%e4%bb%b6%e7%b3%bb%e7%bb%9f-btrfs-%e5%9c%a8-kernel-3-0%e7%9a%84%e6%94%af%e6%8c%81/</link>
		<comments>http://sidealice.com/2011/07/linux-%e6%96%87%e4%bb%b6%e7%b3%bb%e7%bb%9f-btrfs-%e5%9c%a8-kernel-3-0%e7%9a%84%e6%94%af%e6%8c%81/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 16:24:44 +0000</pubDate>
		<dc:creator>AirForce</dc:creator>
				<category><![CDATA[网站开发WebDev]]></category>
		<category><![CDATA[btrfs]]></category>
		<category><![CDATA[kernel 3.0]]></category>

		<guid isPermaLink="false">http://sidealice.com/?p=2034</guid>
		<description><![CDATA[安装的gentoo现在用的是keernel 3.0所以顺便研究了btrfs性能改进情况。 具体这篇文章很有价值，是一个很好的入门指引。 如果基于ssd，或者用raid搭建文件系统，btrfs给了我很大的想法。 Btrfs 简介 文件系统似乎是内核中比较稳定的部分，多年来，人们一直使用 ext2/3，ext 文件系统以其卓越的稳定性成为了事实上的 Linux 标准文件系统。近年来 ext2/3 暴露出了一些扩展性问题，于是便催生了 ext4 。在 2008 年发布的 Linux2.6.19 内核中集成了 ext4 的 dev 版本。 2.6.28 内核发布时，ext4 结束了开发版，开始接受用户的使用。似乎 ext 就将成为 Linux 文件系统的代名词。然而当您阅读很多有关 ext4 的文章时，会发现都不约而同地提到了 btrfs，并认为 ext4 将是一个过渡的文件系统。 ext4 的作者 Theodore Tso 也盛赞 btrfs 并认为 btrfs 将成为下一代 Linux 标准文件系统。 Oracle，IBM， Intel 等厂商也对 btrfs 表现出了极大的关注，投入了资金和人力。为什么 btrfs 如此受人瞩目呢。这便是本文首先想探讨的问题。 Kevin Bowling[1] [...]]]></description>
		<wfw:commentRss>http://sidealice.com/2011/07/linux-%e6%96%87%e4%bb%b6%e7%b3%bb%e7%bb%9f-btrfs-%e5%9c%a8-kernel-3-0%e7%9a%84%e6%94%af%e6%8c%81/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress 作为cms的短板</title>
		<link>http://sidealice.com/2011/04/wordpress-%e4%bd%9c%e4%b8%bacms%e7%9a%84%e7%9f%ad%e6%9d%bf/</link>
		<comments>http://sidealice.com/2011/04/wordpress-%e4%bd%9c%e4%b8%bacms%e7%9a%84%e7%9f%ad%e6%9d%bf/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 12:22:00 +0000</pubDate>
		<dc:creator>AirForce</dc:creator>
				<category><![CDATA[网站开发WebDev]]></category>
		<category><![CDATA[软件开发SoftDev]]></category>

		<guid isPermaLink="false">http://sidealice.com/?p=2009</guid>
		<description><![CDATA[信息的趋势： 1 动态信息和外部交互（wp需要插件扩展，但是业务流程的扩展在api支持下较为欠缺） 2 系统不支持多语言（这个问题使其只能是blog，不能作为cms，即使是multi-blog也无法解决内容冗余问题） 3 系统的流程部分太呆板，无法流程定制。网站的业务逻辑有限 4 系统的后台围绕内容，没有有效分离内容的各个职能， 很难定义不同内容 随机日志2009年10月22日 -- Balloon Boy 美国“气球男孩” 难道是个骗局？！ (0)美国“气球男孩”16日与家人相继接受美国有线电视新闻网（ＣＮＮ）、美国广播公司（ＡＢＣ）和全国广播公...2009年10月22日 -- Wordpress 2.8.5 Hardening 版本发布! 安全修复 (0)这个版本关键更新内容: 修复了 Trackback 服务拒绝攻击 移除了php代码中目前...2004年06月5日 -- 2004.6.5 更新 (0)[公告]站长开始实验杂志发布系统 想获得最新本站更新的请到BLOG中申请[最多10人] AL社图...2005年09月11日 -- (转)一篇台湾攻壳影评和留言 (0)看完押井守的電影，你就已經是凱撒了，你該知道如何避開凱撒的悲劇，卻也可以去享受凱撒的光輝文明。 ...2008年01月13日 -- [土豆视频] 南家三姐妹 第一季 一共13话 (0)以南家三姐妹的日常生活为中心，由高中2年级的南春香，美丽贤惠，姐代母职；初中2年级的南夏奈喜欢耍宝；...]]></description>
		<wfw:commentRss>http://sidealice.com/2011/04/wordpress-%e4%bd%9c%e4%b8%bacms%e7%9a%84%e7%9f%ad%e6%9d%bf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>symfony2 框架更新</title>
		<link>http://sidealice.com/2011/04/symfony2-%e6%a1%86%e6%9e%b6%e6%9b%b4%e6%96%b0/</link>
		<comments>http://sidealice.com/2011/04/symfony2-%e6%a1%86%e6%9e%b6%e6%9b%b4%e6%96%b0/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 12:17:36 +0000</pubDate>
		<dc:creator>AirForce</dc:creator>
				<category><![CDATA[网站开发WebDev]]></category>

		<guid isPermaLink="false">http://sidealice.com/?p=2007</guid>
		<description><![CDATA[这个框架在ror的时代活到现在，可见生命力旺盛， 但是框架和应用是需要互相呼应的，不然系统的框架再好也没法得到体现。 &#160; http://symfony.com 随机日志2009年09月2日 -- Openfiler 文件存储SAN&#038;NAS解决方案 (0)Openfiler takes the pain out of deploying and mana...2008年01月15日 -- [土豆视频] H2O 赤沙印记 (0)...2010年09月7日 -- 七个美国FBI的推理测试题 (0)一 绿衣服 一个刚退伍的老兵,一天夜裏起床上厕所时,发现老伴没有睡在身边,枕头掉在木头地板上,...2008年01月13日 -- [土豆视频] 南家三姐妹 第一季 一共13话 (0)以南家三姐妹的日常生活为中心，由高中2年级的南春香，美丽贤惠，姐代母职；初中2年级的南夏奈喜欢耍宝；...2008年01月13日 -- Adobe Media Player (0)http://labs.adobe.com/technologies/mediaplayer/ ...]]></description>
		<wfw:commentRss>http://sidealice.com/2011/04/symfony2-%e6%a1%86%e6%9e%b6%e6%9b%b4%e6%96%b0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>适合潮产品的图片thumbnail效果</title>
		<link>http://sidealice.com/2011/04/%e9%80%82%e5%90%88%e6%bd%ae%e4%ba%a7%e5%93%81%e7%9a%84%e5%9b%be%e7%89%87thumbnail%e6%95%88%e6%9e%9c/</link>
		<comments>http://sidealice.com/2011/04/%e9%80%82%e5%90%88%e6%bd%ae%e4%ba%a7%e5%93%81%e7%9a%84%e5%9b%be%e7%89%87thumbnail%e6%95%88%e6%9e%9c/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 12:15:00 +0000</pubDate>
		<dc:creator>AirForce</dc:creator>
				<category><![CDATA[网站开发WebDev]]></category>

		<guid isPermaLink="false">http://sidealice.com/?p=2005</guid>
		<description><![CDATA[http://www.sohtanaka.com/web-design/examples/image-zoom/ 随机日志2009年10月17日 -- 评估项目决策: 软件工程案例 Evaluating Project Decisions: Case Studies in Software Engineering (0) Description: Effective decisions are crucial t...2011年04月22日 -- wordpress 作为cms的短板 (0)信息的趋势： 1 动态信息和外部交互（wp需要插件扩展，但是业务流程的扩展在api支持下较为欠...2005年02月1日 -- Microsoft GB18030 支持工具包 (0)Microsoft GB18030 支持工具包 -------------------------...2004年02月3日 -- 2004.02.03 更新 (0)ILLUSION 新动向！ 添加永远的伊苏6专题！！！ 添加英雄传说6专题！！！...2011年04月22日 -- 初音未来2011演唱会[miku]36.ARiA (0)...]]></description>
		<wfw:commentRss>http://sidealice.com/2011/04/%e9%80%82%e5%90%88%e6%bd%ae%e4%ba%a7%e5%93%81%e7%9a%84%e5%9b%be%e7%89%87thumbnail%e6%95%88%e6%9e%9c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

