<?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>聰明的生活2 &#187; html</title>
	<atom:link href="http://blog.yslifes.com/archives/tag/html/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.yslifes.com</link>
	<description>自己寫java程式的一些筆記</description>
	<lastBuildDate>Wed, 08 Feb 2012 01:43:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://blog.yslifes.com/?pushpress=hub'/>
		<item>
		<title>如何新增Joomla樣板(template)</title>
		<link>http://blog.yslifes.com/archives/970</link>
		<comments>http://blog.yslifes.com/archives/970#comments</comments>
		<pubDate>Tue, 04 Oct 2011 11:46:00 +0000</pubDate>
		<dc:creator>yku</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[架站]]></category>
		<category><![CDATA[軟體介紹]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[樣板]]></category>
		<category><![CDATA[樣版]]></category>

		<guid isPermaLink="false">http://blog.yslifes.com/archives/970</guid>
		<description><![CDATA[joomla網頁主要是由樣板html及後台資料所組合而成的，可先由photoshop、Dreamviewer等軟體製作好畫面並切好成一區塊一區塊的的，再由joomla Module來控制輸出資料狀況，這就是樣板樣生成網頁的方式。 Joomla安裝完成後會有幾個樣板範例，可由這幾個範例來做延伸，下圖是安裝完後的首頁內容。 可以把網頁內容分成數個區塊，每一個區塊的資料都是由joomla的module對應所產生的內容。 樣板放置的位置為joomla安裝目錄下templates裡，每一個樣板都有自己的目錄名稱，joomla在有安裝範例樣資料的狀況下，使用rhuk_milkyway做為其預設樣板。 可由joomla選單上，選擇Template Manager來設定使用的樣板。 在樣板目錄下有二個檔案比較重要，一是index.php，此為樣板的內容，而另一是templateDetails.xml，此檔案定義了在樣板要使用的模組、內容及參數等。 打開templateDetails.xml，可定義其 樣板名稱name 建立樣板日期creationDate 樣板作者名稱author 作者電子郵件authorEmail copyright資訊copyright 版權license 版本version 描述description 等等等 其中files裡內容需提供所有在樣板會使用到的內容，包含php、html、圖片、css及javascript等，而在positions裡則需告知要對應及使用的模組有那一些，可由後台新增相對應內容來顯示資料。 再來用一個簡單的例子說明如何把資料對應到樣板再輸出成html顯示於使用者端。 下圖Latest News及Popular為二塊資料顯示區。 打開index.php，內容的對應可使用以下語法 &#60;jdoc:include type=”modules=” name=” templateDetails.xml裡positions名稱” /&#62; 可輸出positions為user1及user2二個的內容，其中user1為Latest News區塊資料而user2為Popular區塊資料。 建立資料內容，可由joomla後台Extensions－＞Module Manager來管理及建立資料。 由上方New按扭來增加需要的模組內容。 在建立module時，Position需選擇在templateDetails.xml定義之名稱，就可以連接資料與網頁內容了。 其它補充： 在index.php建立時在header之前之內容，可以自訂需要載入之css及javascript等 網頁主要的內容，也就是每頁的文章顯示則由 &#60;jdoc:include type=”component” /&#62; 來顯示其內容資料]]></description>
		<wfw:commentRss>http://blog.yslifes.com/archives/970/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>自動產生隱藏iframe AutoCreateIframe</title>
		<link>http://blog.yslifes.com/archives/959</link>
		<comments>http://blog.yslifes.com/archives/959#comments</comments>
		<pubDate>Fri, 26 Aug 2011 13:59:26 +0000</pubDate>
		<dc:creator>yku</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blog.yslifes.com/archives/959</guid>
		<description><![CDATA[之前有寫過一個自動產生隱藏iframe的方法，不過好像沒有讓它支援所有瀏覽器，在IE系列好像因為安全性問題，並不會建立成功，所以把原本使用createElement來建立iframe，而改成在ie裡使用 var frame = document.createElement&#40;&#34;&#60;iframe name=\&#34;_hiddenframe\&#34;&#62;&#34;&#41;; 因為在IE裡create IFrame時，並不能指定他的name屬性，不過很有趣的一件事，在IE9時，這規則又被打破了，如果強行使用上面方法會出現以下錯誤： DOM Exception:INVALID_CHARACTER_ERR(5) 此方法需要使用到jQuery，主要來用判斷Browser是何種及其版本： function createIFrame&#40;&#41; &#123; try &#123; &#160; if &#40;!document.getElementById&#40;&#34;_hiddenframe&#34;&#41;&#41; &#123; &#160; if&#40;$.browser.msie &#38;&#38; parseInt&#40;$.browser.version,10&#41; &#60; 9&#41; &#123; var frame = document.createElement&#40;&#34;&#60;iframe name=\&#34;_hiddenframe\&#34;&#62;&#34;&#41;; &#125; else &#123; var frame = document.createElement&#40;&#34;iframe&#34;&#41;; &#125; frame.setAttribute&#40;&#34;name&#34;, &#34;_hiddenframe1&#34;&#41;; frame.setAttribute&#40;&#34;src&#34;, &#34;about:blank&#34;&#41;; frame.setAttribute&#40;&#34;frameborder&#34;, &#34;0&#34;&#41;; frame.setAttribute&#40;&#34;height&#34;, &#34;0&#34;&#41;; frame.setAttribute&#40;&#34;width&#34;, &#34;0&#34;&#41;; frame.setAttribute&#40;&#34;id&#34;, &#34;_hiddenframe&#34;&#41;; frame.name = &#34;_hiddenframe&#34;; [...]]]></description>
		<wfw:commentRss>http://blog.yslifes.com/archives/959/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All in One SEO中文描述Descriptions支援問題解決方法</title>
		<link>http://blog.yslifes.com/archives/932</link>
		<comments>http://blog.yslifes.com/archives/932#comments</comments>
		<pubDate>Tue, 19 Apr 2011 22:51:00 +0000</pubDate>
		<dc:creator>yku</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[教學]]></category>
		<category><![CDATA[架站]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://blog.yslifes.com/archives/932</guid>
		<description><![CDATA[wordpress的外掛All in one SEO不知道在幾版後突然就對繁體中文的支援度降低了(消失?)了，在options裡設定自動取得meta descriptions對於中文文章並不會有作用，而且英文字詞間是以空白做為分格與中文字連續沒有分格不同，像是”Hello World !”與”哈囉世界!”，在取descriptions就會有明顯有問題。 搜尋了一下資料找到了一個解決方式，如下： 1.先到外掛編輯器 2.選擇要編輯的外掛All in One SEO Pack，然後按下選取，選擇All-in-one-seo-pack/aioseop.class.php這個檔案。 3.在編輯畫面前端找到$maximum_description_length=150這個變數，把值改成300或更高，建議不要超過450個字，這個變數主要在控制meta descriptions取字的長度，中文字的編碼utf8一個長度是3(?)。 var $version = &#34;1.6.13.2&#34;; &#160; /** Max numbers of chars in auto-generated description */ var $maximum_description_length = 300; &#160; /** Minimum number of chars an excerpt should be so that it can be used * as description. Touch only [...]]]></description>
		<wfw:commentRss>http://blog.yslifes.com/archives/932/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[jQuery]照片展示animate左右及上下移動</title>
		<link>http://blog.yslifes.com/archives/863</link>
		<comments>http://blog.yslifes.com/archives/863#comments</comments>
		<pubDate>Thu, 13 Jan 2011 16:17:20 +0000</pubDate>
		<dc:creator>yku</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[程式]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://blog.yslifes.com/archives/863</guid>
		<description><![CDATA[在前一篇[jQuery]利用animate來製作左右移動圖片展示器有利用jQuery來製作Animate效果，來製作左右移動圖片的照片或產品展示器，不過就只能針對同種分類或同性資的照片來做效果，如果有多種分類照片或產品就需要再做一份一樣的內容，這裡提供一個解決的方案，再做一次Animate，不過這次是上下移動來選擇不同列的圖片（照片）資料。 不同分類的圖片，利用不同的ul來分開，然後在ul的前面再加上一個Div來做上下移動的框架，左右移動則是利用ul這個tag，當移動到那一列的框架，把index記錄起來，如此左移及右移按鈕才可針對目前列來做移動。 ul及img都有title這個屬性，所以利用此屬性來當上方分類名稱。 效果截圖如下： 按下左移或右移按鈕，可以使圖片向左或向右移動。 按下上方分頁按鈕，則會上或下移動到該列（分類）。 此時按左移或右移，只會針對此列（分類）來做圖片（照片）的移動。 CSS增加的部份如下： #adbgenMenu &#123; clear: both; height: 20px; width: 100%; &#125; &#160; #adbgenMenu ul &#123; padding: 0; margin: 0; list-style: none; &#125; &#160; #adbgenMenu ul li &#123; float: left; margin-left: 10px; display: inline; cursor: pointer; text-align: center; width: 100px; height: 20px; overflow: hidden; background: url&#40;bg.gif&#41; no-repeat 0 0; &#125; [...]]]></description>
		<wfw:commentRss>http://blog.yslifes.com/archives/863/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[jQuery]利用animate來製作左右移動圖片展示器</title>
		<link>http://blog.yslifes.com/archives/848</link>
		<comments>http://blog.yslifes.com/archives/848#comments</comments>
		<pubDate>Wed, 12 Jan 2011 15:32:43 +0000</pubDate>
		<dc:creator>yku</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://blog.yslifes.com/archives/848</guid>
		<description><![CDATA[這個範例應該有很多人做過了，十分實用，如果把圖片縮小些，然後再加上燈箱的效果，應該可以拿來當展示產品或是照片等資訊，這個範例的發想是由男丁格爾的範例[jQ]用 jQuery 做廣告 - 上下垂直選項式廣告輪播來做修改的。 jQuery-Animate-API用法animate({css內容},[速度(整數)],[easing(linear/easein)],[callback]) 想法，外層利用一個Div框住要製作動畫的內容，設定css的position: relative;然後內層的資料都用position: absolute;來設定left及top的pixel，如此可以把元件浮在最外層Div框的相對位置。 需要二個按鈕，浮在左邊及右邊，設定動作向左移及向右移。 畫面如下：範例網址 img元件設定title屬性的話，那文字會顯示在圖片下方一條bar上 按左邊按鈕，會向左移動；按右邊按鈕，會向右邊移動 JavaScript部份 jQuery&#40; function&#40;&#41; &#123; &#160; var $block = jQuery&#40;'#abgneBlock'&#41;, $slides = jQuery&#40;'#player ul.list', $block&#41;, _height = $slides.find&#40;'li'&#41;.height&#40;&#41;, _width = $slides .find&#40;'li div'&#41;.width&#40;&#41;, $li = jQuery&#40;'li', $slides&#41;, _animateSpeed = 1000, timer, _speed = 3000; //設定要被移動的Div寬度,每個li的寬度*個數 jQuery&#40;'#abgneBlock #player'&#41;.width&#40;_width * $li.length&#41;; &#160; //如果img元素有設定title,則把title append在圖片上浮著 $li.each&#40; [...]]]></description>
		<wfw:commentRss>http://blog.yslifes.com/archives/848/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[ExtJS]使用Servlet上傳檔案圖片-WYSIWYG所視即所得網頁編輯器外掛 with CKEditor</title>
		<link>http://blog.yslifes.com/archives/792</link>
		<comments>http://blog.yslifes.com/archives/792#comments</comments>
		<pubDate>Sun, 21 Nov 2010 14:41:00 +0000</pubDate>
		<dc:creator>yku</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[程式]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[servlet]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://blog.yslifes.com/archives/792</guid>
		<description><![CDATA[在上一篇[ExtJS]WYSIWYG所視即所得網頁編輯器外掛 with CKEditor有提到如何在ExtJS裡使用WYSIWYG所視即所得的網頁編輯器，不過並沒有上傳檔案或圖片的功能，要開啟上傳的功能只需要在CKConfig增加三個參數設定指定要做上傳動作的url就可以啟動了，在這篇並附上Servlet實作傳檔的功能。 filebrowserUploadUrl : 'ckeditor/uploader?Type=File',//檔案上傳的url filebrowserImageUploadUrl : 'ckeditor/uploader?Type=Image',//圖檔上傳的url filebrowserFlashUploadUrl : 'ckeditor/uploader?Type=Flash',//flash上傳的url 加上以上參數後會在以下三個動作加上一個上傳的tab，可上傳檔案至Server端存放 檔案上傳（插入超連結） 上傳Flash 上傳Image圖檔 上傳完成後會呼叫javascript function來設定資訊，ex影像資訊 程式碼部份跟上一篇是相同的，補上修改的部份及Servlet上傳範例 example.js /*! * Ext JS Library 3.0.0 * Copyright(c) 2006-2009 Ext JS, LLC * licensing@extjs.com * http://www.extjs.com/license */ Ext.onReady&#40;function&#40;&#41;&#123; &#160; //Ext.QuickTips.init(); &#160; // turn on validation errors beside the field globally //Ext.form.Field.prototype.msgTarget = 'side'; &#160; var [...]]]></description>
		<wfw:commentRss>http://blog.yslifes.com/archives/792/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[ExtJS]WYSIWYG所視即所得網頁編輯器外掛 with CKEditor</title>
		<link>http://blog.yslifes.com/archives/786</link>
		<comments>http://blog.yslifes.com/archives/786#comments</comments>
		<pubDate>Wed, 17 Nov 2010 13:02:41 +0000</pubDate>
		<dc:creator>yku</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[程式]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://blog.yslifes.com/archives/786</guid>
		<description><![CDATA[ExJS所提示的HtmlEditor非常簡單，一般來說算夠用了，不過還是有很多狀況無法適用，所幸ExtJS可利用擴充的方式來使用其它的WYSIWYG編輯器，TinyMCE是個很好的選擇，FCKEditor也不錯，現在重新被制作改名成CKEditor，以下的範例是使用CKEditor來砍進ExJS當成它的HtmlEditor。 範例是由這個網址取得的 http://www.sencha.com/forum/showthread.php?79031-CKEditor-Extension /**************************************************** * CKEditor Extension *****************************************************/ Ext.form.CKEditor = function&#40;config&#41;&#123; this.config = config; Ext.form.CKEditor.superclass.constructor.call&#40;this, config&#41;; &#125;; &#160; Ext.extend&#40;Ext.form.CKEditor, Ext.form.TextArea, &#123; onRender : function&#40;ct, position&#41;&#123; if&#40;!this.el&#41;&#123; this.defaultAutoCreate = &#123; tag: &#34;textarea&#34;, autocomplete: &#34;off&#34; &#125;; &#125; Ext.form.TextArea.superclass.onRender.call&#40;this, ct, position&#41;; CKEDITOR.replace&#40;this.id, this.config.CKConfig&#41;; &#125;, &#160; setValue : function&#40;value&#41;&#123; Ext.form.TextArea.superclass.setValue.apply&#40;this,&#91;value&#93;&#41;; CKEDITOR.instances&#91;this.id&#93;.setData&#40; value &#41;; &#125;, &#160; getValue : function&#40;&#41;&#123; CKEDITOR.instances&#91;this.id&#93;.updateElement&#40;&#41;; [...]]]></description>
		<wfw:commentRss>http://blog.yslifes.com/archives/786/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[ExtJS]TaiwanZipCode台灣郵遞區號外掛</title>
		<link>http://blog.yslifes.com/archives/776</link>
		<comments>http://blog.yslifes.com/archives/776#comments</comments>
		<pubDate>Mon, 15 Nov 2010 15:14:49 +0000</pubDate>
		<dc:creator>yku</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[教學]]></category>
		<category><![CDATA[程式]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://blog.yslifes.com/archives/776</guid>
		<description><![CDATA[TaiwanZipCode郵遞區號的作法大同小異，比較常用的像是台灣郵遞區號外掛 / Taiwan Zip Code Plugin of jQuery就很簡單也很好用，可控制性也很高。 Taiwan ZipCode作法其實不難，只是因應各種不同framework可能有所調整，主要都是由二個ComboBox組成，當選取縣市別後，會取得鄉鎮別，觸發點只有一個。 執行畫面如下 這個範例主要提供可變的參數有： /* CityId : CityCombo的Id AreaId : AreaCombo的Id CityName : CityCombo的form使用的name,操作用 CityHiddenName : CityCombo的form使用實際傳送出去的name ex. cityCode=123&#38;areaCode=456 AreaName : AreaCombo的form使用的name,操作用 AreaHiddenName : AreaCombo的form使用實際傳送出去的name ex. cityCode=123&#38;areaCode=456 CityEmptyText : 無值時CityCombo所要顯示的提示字 AreaEmptyText : 無值時CityCombo所要顯示的提示字 */ 程式碼主要內容TaiwanZipCode： /* * 本著作係依據創用 CC 姓名標示-相同方式分享 2.5 台灣 授權條款進行授權。 * 如欲瀏覽本授權條款之副本，請造訪 http://creativecommons.org/licenses/by-sa/2.5/tw/ * [...]]]></description>
		<wfw:commentRss>http://blog.yslifes.com/archives/776/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>網頁post自動產生iframe</title>
		<link>http://blog.yslifes.com/archives/516</link>
		<comments>http://blog.yslifes.com/archives/516#comments</comments>
		<pubDate>Tue, 02 Feb 2010 15:12:37 +0000</pubDate>
		<dc:creator>yku</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://blog.yslifes.com/?p=516</guid>
		<description><![CDATA[大部份在寫網頁要上傳檔案時都需要使用到iframe做一個中繼，可是如果上傳POST時有錯訊息時，前一個iframe資料就會變成記錄history，而此時如果使用者重新整理時，就會遇到暫存資料的問題，iframe裡的內容會再被執行一次。 以下有一個JavaScript方法，可以在檢查完所有form條件時才自動建立iframe內容createiFrame做post動作，而重新整理時（或第一次進入此畫面時）又不會真實存在，來解決暫存的問題。 當呼叫createIFrame時，會在body這一個tab建立一個iframe元素，並把需求屬性設定好，像是frameborder=0、width=0、height=0等。 function createIFrame&#40;&#41; &#123; if &#40;!document.getElementById&#40;&#34;_hiddenframe&#34;&#41;&#41; &#123; var frame = document.createElement&#40;&#34;iframe&#34;&#41;; frame.setAttribute&#40;&#34;name&#34;, &#34;_hiddenframe1&#34;&#41;; frame.setAttribute&#40;&#34;src&#34;, &#34;about:blank&#34;&#41;; frame.setAttribute&#40;&#34;frameborder&#34;, &#34;0&#34;&#41;; frame.setAttribute&#40;&#34;height&#34;, &#34;0&#34;&#41;; frame.setAttribute&#40;&#34;width&#34;, &#34;0&#34;&#41;; frame.setAttribute&#40;&#34;id&#34;, &#34;_hiddenframe&#34;&#41;; frame.name = &#34;_hiddenframe&#34;; document.body.appendChild&#40;frame&#41;; window.frames._hiddenframe.name = &#34;_hiddenframe&#34;; document.getElementsByTagName&#40;&#34;body&#34;&#41;&#91;0&#93;.appendChild&#40;frame&#41;; &#160; &#125; &#160; &#125;]]></description>
		<wfw:commentRss>http://blog.yslifes.com/archives/516/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ajax使用 prototype.js 3</title>
		<link>http://blog.yslifes.com/archives/166</link>
		<comments>http://blog.yslifes.com/archives/166#comments</comments>
		<pubDate>Thu, 14 May 2009 13:14:00 +0000</pubDate>
		<dc:creator>yku</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://blog.yslifes.com/archives/166</guid>
		<description><![CDATA[這裡是一個簡單的範例 在使用prototype.js可以很方便的利用DOM的特性來做一些事情 下一篇將會利用ajax來實做這個範例 &#60;style type="text/css"&#62; &#60;!-- .ta { border-top : 1px solid #6699cc; /*上框線*/ border-bottom : 1px solid #6699cc; /*下框線*/ border-left : 1px solid #6699cc; /*左框線*/ /*border-right : 1px solid #6699cc;*/ /*右框線*/ width : 100px; float:left; } .tb { border-top : 1px solid #6699cc; /*上框線*/ border-bottom : 1px solid #6699cc; /*下框線*/ /*border-left : 1px solid [...]]]></description>
		<wfw:commentRss>http://blog.yslifes.com/archives/166/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

