<?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>EWRKS MEDIA GROUP</title>
	<atom:link href="http://www.ewrks.com/wp/index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.ewrks.com/wp</link>
	<description></description>
	<lastBuildDate>Wed, 09 Dec 2009 15:26:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Install Open ERP 5.0.6 on Mac OS X 10.5.8 Leopard</title>
		<link>http://www.ewrks.com/wp/?p=31</link>
		<comments>http://www.ewrks.com/wp/?p=31#comments</comments>
		<pubDate>Wed, 09 Dec 2009 15:26:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Open ERP]]></category>

		<guid isPermaLink="false">http://www.ewrks.com/wp/?p=31</guid>
		<description><![CDATA[Nb: These instructions worked in an intel-based MacBook Pro running OSX 10.5.8.  I am going to try yo repeat on 10.6 Snow Leopard.  The entire process takes a bit of time so be patient and grab a cup of Java (or two or three from time to time).  Please don&#8217;t try this ]]></description>
			<content:encoded><![CDATA[<p>Nb: These instructions worked in an intel-based MacBook Pro running OSX 10.5.8.  I am going to try yo repeat on 10.6 Snow Leopard.  The entire process takes a bit of time so be patient and grab a cup of Java (or two or three from time to time).  Please don&#8217;t try this unless you are very comfortable using the Terminal.app</p>
<p>1) I strongly suggest backing up your entire hard-drive using something like <a href="http://www.bombich.com" target="_blank">Carbon Copy Cloner</a> before you start.</p>
<p>2) I also strongly suggest you use a text editor like <a href="http://macromates.com" target="_blank">TextMate</a> that will allow you to easily edit configuration and hidden files.</p>
<p>3) Open the Terminal application and type python.  Note the version.  This is the python version that is already installed on Mac OS X.</p>
<p>4) Make sure you have <a href="http://developer.apple.com/technology/xcode.html" target="_blank">Xcode Tools</a> installed on your Mac. You can install from the Leopard installation DVD or download from Apple (if you don&#8217;t already have one, you will need to create a free developer account or use your existing Apple ID):</p>
<p>If you choose to download, prepare to wait a while because it is a huge file.</p>
<p>5) Download the <a href="http://www.enterprisedb.com/products/pgdownload.do#osx" target="_blank">PostgreSQL installer dmg from enterprisedb.com</a></p>
<p>6) !IMPORTANT!  BEFORE YOU INSTALL PostgreSQL &#8211; CREATE OR EDIT THE FILE /etc/sysctl.conf as specified in the README.</p>
<p>Filename: <strong>sysctl.conf</strong></p>
<p>Save to Location: <strong>/etc</strong></p>
<p>Containing:</p>
<pre>
kern.sysv.shmmax=1610612736
kern.sysv.shmall=393216
kern.sysv.shmmin=1
kern.sysv.shmmni=32
kern.sysv.shmseg=8
kern.maxprocperuid=512
kern.maxproc=2048
</pre>
<p>7) REBOOT</p>
<p>8)  In the Terminal, type:</p>
<p><code>sysctl -a</code></p>
<p>and make sure you can find the lines and values above.  If they are there &#8211; you are good to go with the PostgreSQL installation.</p>
<p>9) Install PostgreSQL.  During the installation, you will be asked which port to use for communication with the server &#8211; the default it 5432.  HOWEVER, IT IS STRONGLY SUGGESTED THAT ON OS X,  YOU DO NOT USE TCP PORT 5432 AS THIS PORT IS USED BY APPLE REMOTE DESKTOP.  I USED 5433.  Remember the password you chose for the the postgres superuser account.  During the installation, a folder (directory) called PostgreSQL 8.x is created in your applications directory.  In it are a number of utilities. Double click on the pgAdmin3 icon and then follow the directions to connect locally.</p>
<p>10) Download and install <a href="http://darwinports.com" target="_blank"> darwinports</a></p>
<p>11) Download and compile a lot of Python libraries and dependencies.  !&#8211;WAIT FOR EACH AND EVERY ONE OF THESE TO COMPLETE&#8211;!.</p>
<p>These instructions are modified from those found at:<br />
<a href="http://blog.fireclaw.net/2009/06/16/openerp-server-500-3-install-mac-os-x-105" target="_blank">fireclaw.net</a> (there are some significant changes though)</p>
<p>The Terminal commands to be run in sequence:</p>
<p><code>sudo /opt/local/bin/port install py25-psycopg2 +postgresql84</code> (please note the +postgresql84 NOT postgresql83)<br />
<code>sudo /opt/local/bin/port install py25-reportlab<br />
sudo /opt/local/bin/port install py25-chart</code><br />
<code>sudo /opt/local/bin/port install py25-setuptools</code> (this one gets you the easy_install-2.5 command)<br />
<code>sudo /opt/local/bin/easy_install-2.5 pydot<br />
sudo /opt/local/bin/easy_install-2.5 egenix-mx-base<br />
sudo /opt/local/bin/port install py25-xml<br />
sudo /opt/local/bin/port install py25-lxml<br />
sudo /opt/local/bin/port install py25-libxslt<br />
sudo /opt/local/bin/easy_install-2.5 pytz<br />
sudo /opt/local/bin/port install py25-pil<br />
sudo /opt/local/bin/easy_install-2.5 vobject</code></p>
<p>After all of these complete, you will be advised in the terminal to run a couple of commands to change from the default Apple python interpreter to the one that was installed with the libraries you just compiled.  I ran those commands.  Alternatively, you can run these commands in the terminal:</p>
<p><code>cd /usr/bin<br />
sudo rm python</code> (it is a symlink so this is fine)<br />
<code>sudo ln -s /opt/local/bin/python2.5 python</code></p>
<p>11)  Download the Linux versions of <a href="http://www.openerp.com/downloads.html" target="_blank">Open ERP Server and Open ERP Client Internet</a></p>
<p>double click the .tar (or tar.gz) files to expand</p>
<p>Download the <a href="http://devteam.taktik.be" target="_blank">Mac OS X Open ERP Desktop Client</a></p>
<p>12)  Open ERP Server installation:</p>
<p>In the Terminal:</p>
<p><code>cd /the/directory/where/you/placed/the/openerpserverdownload/openerp-server-5.0.6<br />
sudo python setup.py install</code></p>
<p>This will install the relevant files in the following location:</p>
<p>/opt/local/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/openerp-server</p>
<p>13) Create an Open ERP Server configuration file:</p>
<p>Filename: <strong>openerp-server.conf</strong></p>
<p>Save to Location: <strong>/opt/local/etc</strong></p>
<p>Containing:</p>
<pre>
[options]
without_demo = False
upgrade = False
verbose = False
xmlrpc = True
# db_user = {enter the name of the db_user you want to use to connect to the PostgreSQL database below}
db_user =
# db_password = {enter the password of the db_user specified above after the = below}
db_password =
root_path = None
soap = False
translate_modules = ['all']
# db_name = {the default OpenERP database to use; set to False if you have not yet created first database from client menu}
db_name = False
netrpc = True
demo = {}
interface =
db_host = localhost
# db_port = {specify the TCP port below.  If you setup PostgreSQL to use 5433, leave it as 5433}
db_port = 5433
port = 8069
addons_path = None
reportgz = False
</pre>
<p>14) Create a launchd file for server start-up at boot</p>
<p>Filename: <strong>org.openerp.openerpserver.plist</strong></p>
<p>Save to Location: <strong>/Library/LaunchDaemons</strong></p>
<p>Containing:</p>
<pre>
&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;
&lt;plist version="1.0"&gt;
&lt;dict&gt;
        &lt;key&gt;Disabled&lt;/key&gt;
        &lt;false/&gt;
        &lt;key&gt;EnvironmentVariables&lt;/key&gt;
        &lt;dict&gt;
                &lt;key&gt;PY_USE_XMLPLUS&lt;/key&gt;
                &lt;string&gt;&lt;/string&gt;
                &lt;key&gt;PATH&lt;/key&gt;
                &lt;string&gt;/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/X11R6/bin&lt;/string&gt;
        &lt;/dict&gt;
        &lt;key&gt;GroupName&lt;/key&gt;
        &lt;string&gt;wheel&lt;/string&gt;
        &lt;key&gt;UserName&lt;/key&gt;
        &lt;string&gt;root&lt;/string&gt;
        &lt;key&gt;Label&lt;/key&gt;
        &lt;string&gt;org.openerp.openerpserver&lt;/string&gt;
        &lt;key&gt;OnDemand&lt;/key&gt;
        &lt;false/&gt;
        &lt;key&gt;ProgramArguments&lt;/key&gt;
        &lt;array&gt;
                &lt;string&gt;/opt/local/Library/Frameworks/Python.framework/Versions/2.5/bin/openerp-server&lt;/string&gt;
                &lt;string&gt;-c /opt/local/etc/openerp-server.conf&lt;/string&gt;
        &lt;/array&gt;
        &lt;key&gt;RunAtLoad&lt;/key&gt;
        &lt;true/&gt;
        &lt;key&gt;ServiceDescription&lt;/key&gt;
        &lt;string&gt;Open ERP server&lt;/string&gt;
        &lt;key&gt;StandardOutPath&lt;/key&gt;
        &lt;string&gt;/tmp/openerp-server.out&lt;/string&gt;
        &lt;key&gt;StandardErrorPath&lt;/key&gt;
        &lt;string&gt;/tmp/openerp-server.err&lt;/string&gt;
&lt;/dict&gt;
&lt;/plist&gt;
</pre>
<p>15) Install TurboGears as it is required for the web client:</p>
<p>In the Terminal:</p>
<p><code>sudo /opt/local/bin/easy_install-2.5 TurboGears==1.0.8</code></p>
<p>Check to see that it installed correctly run</p>
<p><code>sudo /opt/local/Library/Frameworks/Python.framework/Versions/2.5/bin/tg-admin info</code></p>
<p>16) Now install the Open ERP Client Web:<br />
In the Terminal:<br />
<code>cd /the/directory/where/you/placed/the/openErpClientWebDownload/openerp-client-web-5.0.6/lib<br />
sudo ./populate.sh<br />
cd ..</code></p>
<p><code>sudo /opt/local/bin/easy_install-2.5 -U openerp-web</code></p>
<p>17) Create a launchd file for the Open ERP Web Client start-up at boot</p>
<p>Filename: <strong>org.openerp.openerpweb.plist</strong></p>
<p>Save to Location: <strong>/Library/LaunchDaemons</strong></p>
<p>Containing:</p>
<pre>
&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;
&lt;plist version="1.0"&gt;
&lt;dict&gt;
        &lt;key&gt;Disabled&lt;/key&gt;
        &lt;false/&gt;
        &lt;key&gt;EnvironmentVariables&lt;/key&gt;
        &lt;dict&gt;
                &lt;key&gt;PY_USE_XMLPLUS&lt;/key&gt;
                &lt;string&gt;&lt;/string&gt;
                &lt;key&gt;PYTHON_EGG_CACHE&lt;/key&gt;
                &lt;string&gt;/tmp/&lt;/string&gt;
        &lt;/dict&gt;
        &lt;key&gt;GroupName&lt;/key&gt;
        &lt;string&gt;wheel&lt;/string&gt;
        &lt;key&gt;UserName&lt;/key&gt;
        &lt;string&gt;root&lt;/string&gt;
        &lt;key&gt;Label&lt;/key&gt;
        &lt;string&gt;org.openerp.openerpweb&lt;/string&gt;
        &lt;key&gt;OnDemand&lt;/key&gt;
        &lt;false/&gt;
        &lt;key&gt;ProgramArguments&lt;/key&gt;
        &lt;array&gt;
                &lt;string&gt;/opt/local/Library/Frameworks/Python.framework/Versions/2.5/bin/openerp-web&lt;/string&gt;
                &lt;string&gt;&lt;/string&gt;
        &lt;/array&gt;
        &lt;key&gt;RunAtLoad&lt;/key&gt;
        &lt;true/&gt;
        &lt;key&gt;ServiceDescription&lt;/key&gt;
        &lt;string&gt;Open ERP web server&lt;/string&gt;
        &lt;key&gt;StandardOutPath&lt;/key&gt;
        &lt;string&gt;/tmp/openerp-web.out&lt;/string&gt;
        &lt;key&gt;StandardErrorPath&lt;/key&gt;
        &lt;string&gt;/tmp/openerp-web.err&lt;/string&gt;
&lt;/dict&gt;
&lt;/plist&gt;
</pre>
<p>18) Finally, in order for the web connectivity to work, you need to edit this file:</p>
<p>/opt/local/Library/Frameworks/Python.framework/Versions/2.5/lib/site-packages/openerp_web-5.0.6-py2.5.egg/config/openerp-web.cfg</p>
<p>Edit</p>
<pre>
# Some server parameters that you may want to tweak
server.socket_host = "0.0.0.0"
server.socket_port = 8080
</pre>
<p>To</p>
<pre>
# Some server parameters that you may want to tweak
server.socket_host = "127.0.0.1"
server.socket_port = 8080
</pre>
<p>if running locally</p>
<p>19) Reboot</p>
<p>20) Install the <a href="http://devteam.taktik.be">Open ERP Client 5.0.6.dmg</a> downloaded in step 11.</p>
<p>21) Open the Open ERP desktop client installed above.  and follow the instructions. I used admin/admin and loaded the demo.</p>
<p>22) You should be able to connect via your web browser as well at http://localhost:8080 or http://127.0.0.1:8080</p>
<p>23) Nb. didn&#8217;t need to patch the db connection script as per <a href="http://blog.fireclaw.net/2009/06/16/openerp-server-500-3-install-mac-os-x-105" target="_blank">fireclaw.net</a></p>
<p>24) Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewrks.com/wp/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paula&#8217;s Photo Shoot with Gary Fitzpatrick</title>
		<link>http://www.ewrks.com/wp/?p=21</link>
		<comments>http://www.ewrks.com/wp/?p=21#comments</comments>
		<pubDate>Mon, 07 Apr 2008 21:27:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ewrks.com/wp/?p=21</guid>
		<description><![CDATA[50 on 50 Photo Shoot March 2008



 

 var so = new SWFObject("http://www.ewrks.com/public/video/paulashoot/PaulaShootCut1.swf", "50 on 50 Photo Shoot", "500", "480", "7", "#000000");
so.write("flashcontent15");

]]></description>
			<content:encoded><![CDATA[<p>50 on 50 Photo Shoot March 2008
</p>
<p><span id="more-21"></span><br />
<script type="text/javascript" src="http://www.ewrks.com/public/js/swfobject.js"></script></p>
<div id="flashcontent15"> </div>
<p><script type="text/javascript">
 var so = new SWFObject("http://www.ewrks.com/public/video/paulashoot/PaulaShootCut1.swf", "50 on 50 Photo Shoot", "500", "480", "7", "#000000");
so.write("flashcontent15");
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewrks.com/wp/?feed=rss2&amp;p=21</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PAULA VOGUES TO &#8220;HUNG UP&#8221;</title>
		<link>http://www.ewrks.com/wp/?p=19</link>
		<comments>http://www.ewrks.com/wp/?p=19#comments</comments>
		<pubDate>Wed, 05 Dec 2007 21:29:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ewrks.com/wp/?p=19</guid>
		<description><![CDATA[PVOGUE



 

 var so = new SWFObject("http://www.ewrks.com/public/video/pvogue/pvogue.swf", "pvogue", "300", "320", "7", "#000000");
so.write("flashcontent12");

]]></description>
			<content:encoded><![CDATA[<p>PVOGUE
</p>
<p><span id="more-19"></span><br />
<script type="text/javascript" src="http://www.ewrks.com/public/js/swfobject.js"></script></p>
<div id="flashcontent12"> </div>
<p><script type="text/javascript">
 var so = new SWFObject("http://www.ewrks.com/public/video/pvogue/pvogue.swf", "pvogue", "300", "320", "7", "#000000");
so.write("flashcontent12");
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewrks.com/wp/?feed=rss2&amp;p=19</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HER CLICK IS TIGHT</title>
		<link>http://www.ewrks.com/wp/?p=18</link>
		<comments>http://www.ewrks.com/wp/?p=18#comments</comments>
		<pubDate>Fri, 30 Nov 2007 21:20:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ewrks.com/wp/?p=18</guid>
		<description><![CDATA[YO HER CLICK IS TIGHT



 

 var so = new SWFObject("http://www.ewrks.com/public/video/click-is-tight/click-is-tight.swf", "click-is-tight", "300", "320", "7", "#000000");
so.write("flashcontent11");

]]></description>
			<content:encoded><![CDATA[<p>YO HER CLICK IS TIGHT
</p>
<p><span id="more-18"></span><br />
<script type="text/javascript" src="http://www.ewrks.com/public/js/swfobject.js"></script></p>
<div id="flashcontent11"> </div>
<p><script type="text/javascript">
 var so = new SWFObject("http://www.ewrks.com/public/video/click-is-tight/click-is-tight.swf", "click-is-tight", "300", "320", "7", "#000000");
so.write("flashcontent11");
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewrks.com/wp/?feed=rss2&amp;p=18</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Air Rod Take 1</title>
		<link>http://www.ewrks.com/wp/?p=17</link>
		<comments>http://www.ewrks.com/wp/?p=17#comments</comments>
		<pubDate>Thu, 29 Nov 2007 02:42:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ewrks.com/wp/?p=17</guid>
		<description><![CDATA[Air Rod Take 1



 

 var so = new SWFObject("http://www.ewrks.com/public/video/air-rod/air-rod.swf", "air-rod", "300", "320", "7", "#000000");
so.write("flashcontent10");

]]></description>
			<content:encoded><![CDATA[<p>Air Rod Take 1
</p>
<p><span id="more-17"></span><br />
<script type="text/javascript" src="http://www.ewrks.com/public/js/swfobject.js"></script></p>
<div id="flashcontent10"> </div>
<p><script type="text/javascript">
 var so = new SWFObject("http://www.ewrks.com/public/video/air-rod/air-rod.swf", "air-rod", "300", "320", "7", "#000000");
so.write("flashcontent10");
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewrks.com/wp/?feed=rss2&amp;p=17</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WR Greenspan ad take 1</title>
		<link>http://www.ewrks.com/wp/?p=16</link>
		<comments>http://www.ewrks.com/wp/?p=16#comments</comments>
		<pubDate>Thu, 29 Nov 2007 01:38:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ewrks.com/wp/?p=16</guid>
		<description><![CDATA[WR Greenspan take 1



 

 var so = new SWFObject("http://www.ewrks.com/public/video/bb-greenspan/bb-greenspan.swf", "bb-greenspan", "300", "320", "7", "#000000");
so.write("flashcontent9");

]]></description>
			<content:encoded><![CDATA[<p>WR Greenspan take 1
</p>
<p><span id="more-16"></span><br />
<script type="text/javascript" src="http://www.ewrks.com/public/js/swfobject.js"></script></p>
<div id="flashcontent9"> </div>
<p><script type="text/javascript">
 var so = new SWFObject("http://www.ewrks.com/public/video/bb-greenspan/bb-greenspan.swf", "bb-greenspan", "300", "320", "7", "#000000");
so.write("flashcontent9");
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewrks.com/wp/?feed=rss2&amp;p=16</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Reward</title>
		<link>http://www.ewrks.com/wp/?p=15</link>
		<comments>http://www.ewrks.com/wp/?p=15#comments</comments>
		<pubDate>Fri, 02 Nov 2007 19:53:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ewrks.com/wp/?p=15</guid>
		<description><![CDATA[No Good Deed Will Go Unpunished



 

 var so = new SWFObject("http://www.ewrks.com/public/video/hotfuzz/HF_clip3.swf", "HF_clip3", "300", "320", "7", "#000000");
so.write("flashcontent8");

]]></description>
			<content:encoded><![CDATA[<p>No Good Deed Will Go Unpunished
</p>
<p><span id="more-15"></span><br />
<script type="text/javascript" src="http://www.ewrks.com/public/js/swfobject.js"></script></p>
<div id="flashcontent8"> </div>
<p><script type="text/javascript">
 var so = new SWFObject("http://www.ewrks.com/public/video/hotfuzz/HF_clip3.swf", "HF_clip3", "300", "320", "7", "#000000");
so.write("flashcontent8");
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewrks.com/wp/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashlife</title>
		<link>http://www.ewrks.com/wp/?p=14</link>
		<comments>http://www.ewrks.com/wp/?p=14#comments</comments>
		<pubDate>Sun, 16 Sep 2007 01:32:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ewrks.com/wp/?p=14</guid>
		<description><![CDATA[A quick survey of a year in the life of the Shackleton clan



 

 var so = new SWFObject("http://www.ewrks.com/public/video/flashlife/life2006-7.swf", "life2006-7", "300", "320", "7", "#000000");
so.write("flashcontent8");

]]></description>
			<content:encoded><![CDATA[<p>A quick survey of a year in the life of the Shackleton clan
</p>
<p><span id="more-14"></span><br />
<script type="text/javascript" src="http://www.ewrks.com/public/js/swfobject.js"></script></p>
<div id="flashcontent8"> </div>
<p><script type="text/javascript">
 var so = new SWFObject("http://www.ewrks.com/public/video/flashlife/life2006-7.swf", "life2006-7", "300", "320", "7", "#000000");
so.write("flashcontent8");
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewrks.com/wp/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>End of East Interview with Jen Sookfong Lee</title>
		<link>http://www.ewrks.com/wp/?p=13</link>
		<comments>http://www.ewrks.com/wp/?p=13#comments</comments>
		<pubDate>Tue, 21 Aug 2007 17:11:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ewrks.com/wp/?p=13</guid>
		<description><![CDATA[Bookbuffet&#8217;s Paula Shackleton Tours Chinatown with The End of East Author Jen Sookfong Lee



 

 var so = new SWFObject("http://www.ewrks.com/public/video/endofeast/EndOfEast.swf", "end-of-east-link", "300", "320", "7", "#000000");
so.write("flashcontent7");

]]></description>
			<content:encoded><![CDATA[<p>Bookbuffet&#8217;s Paula Shackleton Tours Chinatown with <em>The End of East Author</em> Jen Sookfong Lee
</p>
<p><span id="more-13"></span><br />
<script type="text/javascript" src="http://www.ewrks.com/public/js/swfobject.js"></script></p>
<div id="flashcontent7"> </div>
<p><script type="text/javascript">
 var so = new SWFObject("http://www.ewrks.com/public/video/endofeast/EndOfEast.swf", "end-of-east-link", "300", "320", "7", "#000000");
so.write("flashcontent7");
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewrks.com/wp/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing of the guard at Buckingham Palace July 27, 2007</title>
		<link>http://www.ewrks.com/wp/?p=12</link>
		<comments>http://www.ewrks.com/wp/?p=12#comments</comments>
		<pubDate>Fri, 27 Jul 2007 16:50:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ewrks.com/wp/?p=12</guid>
		<description><![CDATA[Changing of the guard, Buckingham Palace, July 27, 2007



 

 var so = new SWFObject("http://www.ewrks.com/public/video/bhamp/bhamp.swf", "bhamplink", "300", "320", "7", "#000000");
so.write("flashcontent6");

]]></description>
			<content:encoded><![CDATA[<p>Changing of the guard, Buckingham Palace, July 27, 2007
</p>
<p><span id="more-12"></span><br />
<script type="text/javascript" src="http://www.ewrks.com/public/js/swfobject.js"></script></p>
<div id="flashcontent6"> </div>
<p><script type="text/javascript">
 var so = new SWFObject("http://www.ewrks.com/public/video/bhamp/bhamp.swf", "bhamplink", "300", "320", "7", "#000000");
so.write("flashcontent6");
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewrks.com/wp/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

