<?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>芳草苑</title>
	<atom:link href="http://blog.goods-pro.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.goods-pro.com</link>
	<description>草的家园，花在哪里？</description>
	<lastBuildDate>Tue, 16 Mar 2010 20:54:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How magento deducts stock level</title>
		<link>http://blog.goods-pro.com/1446/how-magento-deducts-stock-level/</link>
		<comments>http://blog.goods-pro.com/1446/how-magento-deducts-stock-level/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 20:42:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[小小草]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://blog.goods-pro.com/?p=1446</guid>
		<description><![CDATA[我心里一直有个疑问，收到订单后，Magento 是怎么更新库存数量的？是直接用一个新库存数字去更新，还是用 upadte magento_cataloginventory_stock_item set qty=qty-qty_ordered 之类的办法。
通过跟踪 sql 语句，我感觉前者的可能性很大。

UPDATE `magento_cataloginventory_stock_item` SET `item_id` = '125', `product_id` = '125', `stock_id` = '1', `qty` = '93.000000', `min_qty` = '0.000000', `use_config_min_qty` = '1', `is_qty_decimal` = '0', `backorders` = '1', `use_config_backorders` = '0', `min_sale_qty` = '1.000000', `use_config_min_sale_qty` = '1', `max_sale_qty` = '0.000000', `use_config_max_sale_qty` = '1', `is_in_stock` = '1', `low_stock_date` = [...]]]></description>
		<wfw:commentRss>http://blog.goods-pro.com/1446/how-magento-deducts-stock-level/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am with Android</title>
		<link>http://blog.goods-pro.com/1445/i-am-with-android/</link>
		<comments>http://blog.goods-pro.com/1445/i-am-with-android/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 20:43:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[杂草]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://blog.goods-pro.com/?p=1445</guid>
		<description><![CDATA[出于对 google 技术的无限喜爱，我就在 android 手机里挑了一款 motorola dext，升级了我的手机。
但是，我已经老了，新手机刚到手，摆弄了几下，明知道有很多新鲜的功能等我去发掘，已没有了新鲜劲。我只是把联系人、email、wifi 设置了一下，就丢开她了——我是不是老了？
尽管如此，我已有感觉，这是一款非常非常 open and user friendly 的手机，比 iphone 强多了。电池不经用？跟 android 带来的强烈享受相比，瑕不掩瑜——毕竟电池不是 google 挑的。
]]></description>
		<wfw:commentRss>http://blog.goods-pro.com/1445/i-am-with-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tag everything</title>
		<link>http://blog.goods-pro.com/1441/tag-everything/</link>
		<comments>http://blog.goods-pro.com/1441/tag-everything/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 16:06:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[小小草]]></category>
		<category><![CDATA[business idea]]></category>

		<guid isPermaLink="false">http://blog.goods-pro.com/?p=1441</guid>
		<description><![CDATA[在管理文件时，我经常碰到这样一个问题：目前树形结构的文件系统，一个文件只能放在一个地方，决定了它只能被单维度管理。虽然有软连接、硬连接、快捷方式辅助，还是非常不方便：要去多个目录下建立连接就费时费力，而且目标文件移动了位置，这些连接统统都失效。多维度的文件管理，我能想到的办法就是用类似于数据库的技术，具体而言：

一个文件就是一条记录。
套用 EAV 模型，让用户可以自定义属性，称之为 attribute 也好，tag 也好，都是为了归类文件。
用属性的排列组合去过滤出想要找的文件集（inspired by Magento&#8217;s Grid），如果文件集过大，一次也不用全都显示出来，免得过度消耗资源，一次显示 20－50 个文件足矣。用户可以选择设置更多的属性进行深度过滤，或翻页浏览。以我的眼力，如果在超过50条记录的一屏里找一条记录，就有烦躁情绪，来回扫描还经常漏过那条记录。这就是“过多的信息就是没有信息”的道理，所以定义适合自己的过滤条件去找文件集才是王道。
用户浏览传统树形结构的文件系统，但浏览模式在新的文件系统中并不好用，必须配合过滤。其实层层浏览和过滤是异曲同工，只是后者更灵活，但需要更多操作键盘甚于鼠标。如果一个上网用户喜欢浏览多于搜索，他通常觉得鼠标比键盘好用，那么他可以自定义 view，即把常用的过滤条件保存下来，减少键盘操作。搜索模式得以保留，能搜索过滤前或过滤后的结果。

其实 tag 化的文件管理系统已经有了很多，比如相片管理、视频管理、MP3管理、电子书籍管理等等。但这些系统都自称一套体系，没有可移植性，比如，不能把一组相片连同 tag 信息传输给别人（除非把相片管理系统也传输给别人）。我想要的是在 OS 文件系统层得到支持的 tag 存储，或者是根植于 Nautilus / windows explorer 的 tag 操作。有了她，相片管理系统、视频管理系统、MP3管理系统、电子书籍管理系统统统都没有销路了。
其实 Google docs 就是这个干的，如果能应用到本地就好了。
tag2find 基本可以实现我想要功能，但这个软件看上去不够大气，又只支持 windows，也非根植于 windows explorer，所以不足以打动我。
]]></description>
		<wfw:commentRss>http://blog.goods-pro.com/1441/tag-everything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you missed anything after customising all email templates in Magento</title>
		<link>http://blog.goods-pro.com/1438/if-you-missed-anything-after-customising-all-email-templates-in-magento/</link>
		<comments>http://blog.goods-pro.com/1438/if-you-missed-anything-after-customising-all-email-templates-in-magento/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 20:05:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[小小草]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://blog.goods-pro.com/?p=1438</guid>
		<description><![CDATA[To double check if you missed anything after customising all email templates in Magento, you can do a File Search on Selected resources (app/locale/(locale_code)/template/email in eclipse with these keywords:

(555) 555-0123
magento
demo

By the way, eclipse can do Replace on Selected resources, which is an equivalent tool of File &#38; Replace in Folder using Notepad++. I am sure [...]]]></description>
		<wfw:commentRss>http://blog.goods-pro.com/1438/if-you-missed-anything-after-customising-all-email-templates-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a section in Magento system configuration</title>
		<link>http://blog.goods-pro.com/1436/add-a-section-in-magento-system-configuration/</link>
		<comments>http://blog.goods-pro.com/1436/add-a-section-in-magento-system-configuration/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 19:50:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[小小草]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://blog.goods-pro.com/?p=1436</guid>
		<description><![CDATA[Want to add a section in Magento system configuration? It seems very easy as mentioned by others. No coding but editing xml files. Magento takes care of the rest. However, it still took me two hours to find the way out. So I think I need tell the world the caveats.

A section will not be [...]]]></description>
		<wfw:commentRss>http://blog.goods-pro.com/1436/add-a-section-in-magento-system-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wysiwyg on individual page basis</title>
		<link>http://blog.goods-pro.com/1434/wysiwyg-on-individual-page-basis/</link>
		<comments>http://blog.goods-pro.com/1434/wysiwyg-on-individual-page-basis/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 19:44:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[小小草]]></category>
		<category><![CDATA[business idea]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.goods-pro.com/?p=1434</guid>
		<description><![CDATA[Html wysiwyg editing is good, but the html wysiwyg editors do not always format text as I wish. Sometimes they transforms some characters which I want to keep them intact.
For example, I wanted to rewrite some of my posts on this blog by hand coding the post. But I must turn off wysiwyg editing in [...]]]></description>
		<wfw:commentRss>http://blog.goods-pro.com/1434/wysiwyg-on-individual-page-basis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento order fulfilment templates</title>
		<link>http://blog.goods-pro.com/1431/magento-order-fulfilment-templates/</link>
		<comments>http://blog.goods-pro.com/1431/magento-order-fulfilment-templates/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 12:49:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[小小草]]></category>
		<category><![CDATA[erp]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://blog.goods-pro.com/?p=1431</guid>
		<description><![CDATA[I said Magento was week at backend, that might be wrong. Of course compared with any accounting or ERP software, Magento is lack of some facilities to control the work flow of order fulfilment. When I dive into Magento backend, I think it should be sufficient for most of business. Most of business do not [...]]]></description>
		<wfw:commentRss>http://blog.goods-pro.com/1431/magento-order-fulfilment-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create FTP users on Godaddy free products</title>
		<link>http://blog.goods-pro.com/1428/create-ftp-users-on-godaddy-free-products/</link>
		<comments>http://blog.goods-pro.com/1428/create-ftp-users-on-godaddy-free-products/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 01:37:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[小小草]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[godaddy]]></category>

		<guid isPermaLink="false">http://blog.goods-pro.com/?p=1428</guid>
		<description><![CDATA[前文讲到 Godaddy 随域名附送的免费空间非常强大，不嫌广告烦的话，做个个人网站绝对没有问题。
既然可以建网站，就可以作文件服务器，支持 FTP，能自助创建多达50个 FTP user。
Godaddy hosting account username / password 本身也是 FTP account。如果是合作伙伴要求上传或下载文件，当然不可以把自己的 username / password 告诉别人，应该分别为他们创建单独的帐号。Godaddy 需要十几分钟完成帐号同步，所以要等帐号状态从 Pending Setup 到 Setup 才能用。
]]></description>
		<wfw:commentRss>http://blog.goods-pro.com/1428/create-ftp-users-on-godaddy-free-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://blog.goods-pro.com/1426/1426/</link>
		<comments>http://blog.goods-pro.com/1426/1426/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 12:55:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[小小草]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://blog.goods-pro.com/?p=1426</guid>
		<description><![CDATA[Magento 有个我早就知道的 bug：读入 module config.xml 时，class name 必须在和 xml opening tag &#38; closing tag 写在一行上，而且中间不能有 white space。这个 bug 直到最近的 Magento 1.4.0.1 都还有，可能 Magento 认为这不重要，重要的是如何书写 config.xml。所以我写 config.xml 一直都很小心。

&#60;catalog&#62;
	&#60;rewrite&#62;
		&#60;convert_adapter_category&#62;MyNamespace_MyModule_Model_Eav_Convert_Adapter_Category&#60;/convert_adapter_category&#62;
	&#60;/rewrite&#62;
&#60;/catalog&#62;

但最近一次写完了 config.xml 下意识地按了 Ctrl + Shift + F 格式化了 config.xml，而这一行很长，eclipse XML formatter 自动把它换行书写了，造成 Magento 无法正确读入 class name。页面出不来了，什么原因？！我花了差不多一天时间才找到原因，一看到是这个原因，我又非常地懊恼——都是因为我懒，没有好好设置 eclipse 为我所用。
于是亡羊补牢，我花了几分钟找到设置所在，把 Line width 设定一个足够大的数字就不怕它换行了。Aptana plugin 也带一个 Aptana XML Editor，另有地方设置，这里不多说了。 
]]></description>
		<wfw:commentRss>http://blog.goods-pro.com/1426/1426/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Godaddy PR girl</title>
		<link>http://blog.goods-pro.com/1421/godaddy-pr-girl/</link>
		<comments>http://blog.goods-pro.com/1421/godaddy-pr-girl/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 22:30:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[杂草]]></category>
		<category><![CDATA[godaddy]]></category>

		<guid isPermaLink="false">http://blog.goods-pro.com/?p=1421</guid>
		<description><![CDATA[Godaddy 形象小姐笑得越来越吸引人了，Godaddy offer 也越来越吸引人了。$40 就可以省20%，可惜暂时不想买它什么服务。
]]></description>
		<wfw:commentRss>http://blog.goods-pro.com/1421/godaddy-pr-girl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
