<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>alfresco &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/alfresco/</link>
	<description>Feed of posts on WordPress.com tagged "alfresco"</description>
	<pubDate>Sun, 27 Dec 2009 15:41:24 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Rock &amp; Sole Plaice]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/12/21/rock-sole-plaice/</link>
<pubDate>Mon, 21 Dec 2009 12:27:47 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/12/21/rock-sole-plaice/</guid>
<description><![CDATA[47 Endell Street, London, WC2H 9AJ Tel: 0207 836 3785 Tube: Covent Garden Opening Hours: Mon-Sat 11:]]></description>
<content:encoded><![CDATA[47 Endell Street, London, WC2H 9AJ Tel: 0207 836 3785 Tube: Covent Garden Opening Hours: Mon-Sat 11:]]></content:encoded>
</item>
<item>
<title><![CDATA[Changing MySQL Password for Alfresco EC2]]></title>
<link>http://michaelbushe.wordpress.com/2009/12/19/changing-mysql-password/</link>
<pubDate>Sat, 19 Dec 2009 04:40:44 +0000</pubDate>
<dc:creator>michaelbushe</dc:creator>
<guid>http://michaelbushe.wordpress.com/2009/12/19/changing-mysql-password/</guid>
<description><![CDATA[Well, all kinds of walls are breaking down this week.  I&#8217;m using MySQL for the first time.  Mo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Well, all kinds of walls are breaking down this week.  I&#8217;m using MySQL for the first time.  Most of my DB experience is in Oracle, I&#8217;ve used Sybase, but for open source databases, I&#8217;m a fan of Postgresql, and Derby is great for Java on the client. I&#8217;ve avoided MySQL since I can&#8217;t respect a database that didn&#8217;t have transactions until version 5 and uses a &#8220;root&#8221; user.</p>
<p>The official Alfresco EC2 AMI uses MySQL.  There are two users &#8211; the root (the MySQL root) and the alfresco user, both are in the mysql database (as opposed to the alfresco database).  To change the default passwords do this:</p>
<pre>ubuntu@domU-12-31-39-09-E1-A1:~$ mysqladmin -u root -p'alfresco' password 'newpass'</pre>
<p>ubuntu@domU-12-31-39-09-E1-A1:~$ mysql -u root -p<br />
Enter password:<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 41<br />
Server version: 5.1.37-1ubuntu5 (Ubuntu)</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the current input statement.</p>
<p>mysql&#62; update user set password=PASSWORD(&#8220;new password&#8221;) where User=&#8217;alfresco&#8217;;</p>
<p>mysql&#62; show databases;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
&#124; Database           &#124;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
&#124; information_schema &#124;<br />
&#124; alfresco           &#124;<br />
&#124; mysql              &#124;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
3 rows in set (0.00 sec)<br />
mysql&#62; use mysql;<br />
Reading table information for completion of table and column names<br />
You can turn off this feature to get a quicker startup with -A</p>
<p>Database changed<br />
mysql&#62; update user set password=PASSWORD(&#8220;new password&#8221;) where User=&#8217;alfresco&#8217;;<br />
Query OK, 2 rows affected (0.00 sec)<br />
Rows matched: 2  Changed: 2  Warnings: 0</p>
<p>I&#8217;m surprised there were two rows updated, but we&#8217;ll close our eyes and cross our fingers.</p>
<p>Lastly, change it in the alfresco config file:</p>
<p>sudo vi  /usr/share/tomcat6/shared/classes/alfresco-global.properties</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SSH to EC2 Instance and GitHub on a Mac]]></title>
<link>http://michaelbushe.wordpress.com/2009/12/19/ssh-to-ec2-instance-and-github-on-a-mac/</link>
<pubDate>Sat, 19 Dec 2009 03:58:43 +0000</pubDate>
<dc:creator>michaelbushe</dc:creator>
<guid>http://michaelbushe.wordpress.com/2009/12/19/ssh-to-ec2-instance-and-github-on-a-mac/</guid>
<description><![CDATA[Yup, I&#8217;m moving to the Mac.  It&#8217;s really cool &#8211; it has this terminal thingy that y]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Yup, I&#8217;m moving to the Mac.  It&#8217;s really cool &#8211; it has this terminal thingy that you can just type commands into &#8211; what an elegant interface!  Simple black and white and it&#8217;s real clear that all I need to do is type!  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>A windows user asked me how to log into an Amazon EC2 instance using SSH.  I said, &#8220;um, well , you, wait, I was just doing this &#8230; um.  I&#8217;ll look it up and send you instructions.&#8221;  Yes, I had already done it, but was confused because I was actually in the middle of setting up secure access for <a title="GitHub" href="http://www.github.org" target="_blank">GitHub</a> as well.   I&#8217;m going to host some demos for the <a href="http://www.eventbus.org" target="_blank">EventBus</a> (particularly for <a href="http://incubator.apache.org/pivot" target="_blank">Apache Pivot</a>) on GitHub since my project on java.net will forever be stuck in CVS even though new projects can use SVN or Mercurial.</p>
<p>So let&#8217;s configure this Mac to talk to a new EC2 instance, then allow it to hook up to GitHub too (in a second post).  That might be mildly interesting since there may be a cat of keys involved &#8211; OK, maybe not interesting anyway.</p>
<p>To use ssh on an EC2 instance, ensure that when you create the instance, you also create a security group with port 22 open, since that&#8217;s what SSH runs over.   You will also create a keypair.  (You don&#8217;t need the Access Key Identifiers that you use for command line tools.  The ssh keys for an instance are different from the Access Key Identifiers and are created when you create (or reuse) a keypair for the instance. )</p>
<p>When you create the keypair for the instance you are prompted to download the key file (pem).  This is the private part of the keypair.  If you lose it, you are out of luck, AFAIK.  By default, on my Mac using Firefox, the download, the private part of the pair, gets downloaded to /Users/mbushe/Downloads/&#60;name-of-key-pair&#62;.pem.  The public part of the keypair is held on the server.  You will be forced by ssh to protect your private key, so run:</p>
<p>chmod 700 /Users/mbushe/Downloads/&#60;name-of-key-pair&#62;.pem</p>
<p>..so that only you can access it on your local box.  I&#8217;m going to assume you are connecting as root, but a good image will have you connect as another user, set up special.  (OTOH, sometimes you have to log in as root.  For example, if you are using a Content Management System that opens the CIFS port, you need to log in as root since it&#8217;s under 1000.)  The supported Alfresco EC2 image will boot you if you log in as root and ask you to in as ubuntu.</p>
<p>To connect using ssh as root, do the following (I&#8217;m giving all my info since I&#8217;m trashing this instance and key anyway):</p>
<p>ssh -i /Users/mbushe/Downloads/my-key-pair-name.pem root@ec2-67-202-0-107.compute-1.amazonaws.com</p>
<p>You will get this:The authenticity of host &#8216;ec2-67-202-0-107.compute-1.amazonaws.com (67.202.0.107)&#8217; can&#8217;t be established.<br />
RSA key fingerprint is 24:e6:b6:62:fd:f3:54:c0:5f:86:06:97:8d:b7:d4:4f.<br />
Are you sure you want to continue connecting (yes/no)?</p>
<p>At this point, you are connecting with something out there in the world that has a public key with a certain fingerprint that&#8217;s displayed.  Some nafarious teenager in your neighbor could be sitting on your wireless network and be running a DNS server for you that points you to his machine instead of yours, or someone scarier anywhere between you and what you are connecting to.  My neighbors likely haven&#8217;t hacked into my amazon box and stolen the public key though.  Can you trust everyone on Amazon&#8217;s staff though?  If I wanted to cause trouble, that&#8217;s the job I&#8217;d be applying for. This is why <a href="http://www.google.com/url?sa=t&#38;source=web&#38;ct=res&#38;cd=1&#38;ved=0CAkQFjAA&#38;url=http%3A%2F%2Fwww.torrentz.com%2F2d7942ff504735c43ad2ddc311353eecfcab2d3f&#38;ei=QEwsS8jeDNCplAfruKWjBw&#38;usg=AFQjCNFda-QSyTeHF3K-gic3PjcGENFctg&#38;sig2=A6qL8qe2VFFuvrxBVlqzOA"><em>Bruce Schneier</em></a> consults on human hacks now.  But to limit the risk, you should connect to your AWS console, click on the instance (not the keypairs), and show the system log.  Likely somewhere near the bottom, you&#8217;ll see the keys for the fingerprints:</p>
<pre>ec2: #############################################################
ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
ec2: 2048 66:27:32:9f:05:f7:84:97:53:f4:53:46:67:36:5f:6d /etc/ssh/ssh_host_rsa_key.pub (RSA)
ec2: 1024 00:84:16:fd:4e:5f:7d:8d:07:20:40:1a:e3:36:0b:94 /etc/ssh/ssh_host_dsa_key.pub (DSA)
ec2: -----END SSH HOST KEY FINGERPRINTS-----
ec2: #############################################################
</pre>
<p>Look at the RSA fingerprint from the system log and see if it matches the output of ssh.  If it does, type yes, get warm fuzzy feelings and continue on.  If it doesn&#8217;t type no and trash your instance!  Hopefully you set up your instance via a script you can run again on a new instance.  Isn&#8217;t virtualization great?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hammersmith Riviera]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/12/15/hammersmith-riviera/</link>
<pubDate>Tue, 15 Dec 2009 12:07:46 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/12/15/hammersmith-riviera/</guid>
<description><![CDATA[Good food, excellent beer, time to chat, entertainment and  a fabulous view of the river. What more ]]></description>
<content:encoded><![CDATA[Good food, excellent beer, time to chat, entertainment and  a fabulous view of the river. What more ]]></content:encoded>
</item>
<item>
<title><![CDATA[Alfresco web script to check group membership]]></title>
<link>http://gronfelt.wordpress.com/?p=21</link>
<pubDate>Mon, 07 Dec 2009 11:03:33 +0000</pubDate>
<dc:creator>gronfelt</dc:creator>
<guid>http://gronfelt.wordpress.com/?p=21</guid>
<description><![CDATA[I needed a way to check if an Alfresco user is a member of a particular group, so I wrote a little w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I needed a way to check if an Alfresco user is a member of a particular group, so I wrote a little web script to do that. It&#8217;s a pretty simple task, but it&#8217;s not obvious how to do it and for me it was a good way to get an understanding of the fundamentals of web scripts.</p>
<p>Anyway, I figured it might be useful to someone, so here it is.</p>
<p>First the description file:</p>
<pre class="brush: xml;">
&#38;lt;webscript&#38;gt;
  &#38;lt;shortname&#38;gt;Group Member&#38;lt;/shortname&#38;gt;
  &#38;lt;description&#38;gt;See if a user is part of a group&#38;lt;/description&#38;gt;
  &#38;lt;url&#38;gt;/sample/groupmember&#38;lt;/url&#38;gt;
  &#38;lt;format default=&#38;quot;json&#38;quot;&#38;gt;&#38;lt;/format&#38;gt;
   &#38;lt;authentication&#38;gt;user&#38;lt;/authentication&#38;gt;
&#38;lt;/webscript&#38;gt;
</pre>
<p>Then some js code to do all the work. The script takes the groupname as an URL argument (&#8220;groupname&#8221;).</p>
<pre class="brush: jscript;">
var member=false;
var memberlist = groups.getGroup(args[&#38;quot;groupname&#38;quot;]).getAllUsers();
for (var i in memberlist) {
    if (memberlist[i].getFullName() == person.properties.userName)
   {
      member=true;
   }
}

model.membership = member;
</pre>
<p>For presentation I went with  JSON since I&#8217;ll be calling this from another javascript.</p>
<pre class="brush: plain;">
{
   &#38;quot;groupname&#38;quot; : &#38;quot;${args[&#38;quot;groupname&#38;quot;]?string}&#38;quot;,
   &#38;quot;membership&#38;quot; : ${membership?string}
}
</pre>
<p>Like I said, it&#8217;s pretty simple, but it actually took me some testing to find out which properties to use, so perhaps this will help someone.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Documentum Client for Outlook, Notes Connector, iPhone and other thoughts on Content Management and Email]]></title>
<link>http://blog.tsgrp.com/2009/12/04/documentum-client-for-outlook-notes-connector-iphone-and-other-thoughts-on-content-management-and-email/</link>
<pubDate>Fri, 04 Dec 2009 20:05:01 +0000</pubDate>
<dc:creator>TSG Dave</dc:creator>
<guid>http://blog.tsgrp.com/2009/12/04/documentum-client-for-outlook-notes-connector-iphone-and-other-thoughts-on-content-management-and-email/</guid>
<description><![CDATA[One of TSG’s manufacturing clients is currently evaluating Alfresco for control and management of pr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>One of TSG’s manufacturing clients is currently evaluating Alfresco for control and management of project related documentation.  (Proposals, CAD, Specs….).    In working with the client on proof of concept efforts this week, we came across a typical requirement for storing email and attachments easily within Alfresco.  In the Documentum world, many of our clients typically choose the Documentum Client for Outlook, Notes or some other 3<sup>rd</sup> party product that integrate within the email client.  For the manufacturing client, the requirements and approach was slightly different.</p>
<p><strong>What about my iPhone?</strong></p>
<p>Blackberry, Palm, Web-based Email, Gmail and iPhone, along with all kinds of other connectivity offerings for this global company, are all part of the equation.  It wasn’t really an option to pick one email client and offer integration from only that platform.  Also, from an IT perspective, integration into a desktop application like the Documentum Client for Outlook requires additional desktop support (not a positive).</p>
<p><strong>&#8216;Email Mode&#8217; versus &#8216;Index Mode&#8217;</strong></p>
<p>Another point consistent with the different email platforms was that a person in “email mode” was just looking to work through all their emails (first thing in the morning or after lunch) and didn’t really want to stop and index items into Documentum or Alfresco.  Notes and Outlook connectors, even with swanky drag and drop, can still require specific attributes (Client) and detail about files (what is that attachment?).</p>
<p><strong>Consistent Indexing</strong></p>
<p>One last point is in regards to the logic/screens behind indexing.  Does it make sense to have one indexing applications for emails, another for regular documents and perhaps a third for fax or scanning?  This is particularly true when custom lookups (client, job number) might require logic to look up and insure indexing is correct.</p>
<p><strong>Easy Solution &#8211; How about the Forward button?</strong></p>
<p>An elegant solution for the client was to leverage the Forward button from whatever email tool (iPhone…) to forward on the email to alfresco@client.com.  This way, we could technically say that email integration was available from any email device and kept the user in “Email Mode” rather than jumping into index screens.  A back-end process would monitor the email box and, based on the user id, place it in his (or another  group/individual) workflow inbox for later indexing.    The client also liked the idea of blind copying (BCC) the alfresco@client.com to save content and email threads going out as well. </p>
<p><a href="http://www.tsgrp.com/Open_Source/OpenInterchange/open-interchange.jsp" target="_blank">OpenInterchange</a>  was built as an open source tool email tool for Documentum with this approach in mind.  By leveraging <a href="http://www.tsgrp.com/Open_Source/OpenContent/open-content-hpi.jsp" target="_blank">HPI</a> for consistent indexing and some slight tweaks for Alfresco, the client was able to:</p>
<ol>
<li>extend email ingestion to a any email device or platform</li>
<li>stay in “Email Mode”  and save indexing for later</li>
<li>Avoid desktop integration</li>
<li>Have one index application</li>
<li>Save $$$ by leveraging Open Source</li>
</ol>
<p>If you have any questions – please contact us a <a href="http://www.tsgrp.com/forms/contact-us.jsp" target="_blank">http://www.tsgrp.com/forms/contact-us.jsp</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Active Wizard to use OpenContent]]></title>
<link>http://blog.tsgrp.com/2009/12/03/active-wizard-to-use-opencontent/</link>
<pubDate>Thu, 03 Dec 2009 19:23:31 +0000</pubDate>
<dc:creator>Ian</dc:creator>
<guid>http://blog.tsgrp.com/2009/12/03/active-wizard-to-use-opencontent/</guid>
<description><![CDATA[TSG is currently in the process of creating a version of the Active Wizard that will work with our o]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>TSG is currently in the process of creating a version of the Active Wizard that will work with our own OpenContent web services.  Using OpenContent will allow Active Wizard to work with any Content Management System that OpenContent supports.  This means that Active Wizard implementations will be supported on a number of repository types (ex: Documentum, Alfresco, file system).  The Active Wizard will require only a simple configuration change to work with each CMS.  This will also benefit users who are currently using the Active Wizard with Documentum, as it will mean that only OpenContent code will need to be updated and tested when a Documentum upgrade is implemented.</p>
<p>Also, a filesystem implementation of OpenContent is currently in development that will allow the Active Wizard and Active Wizard Lite to be run on open source platforms such as Apache Tomcat, Apache Derby and a simple file system structure to store XML.</p>
<p>Visit <a href="http://www.activewizard.com" target="_blank">www.activewizard.com</a> for more information on the Active Wizard and OpenContent, and check back here for more updates on the status of Active Wizard with OpenContent.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Has anyone got Alfresco Web Studio to work?]]></title>
<link>http://ecmpro.wordpress.com/2009/12/02/has-anyone-got-alfresco-web-studio-to-work/</link>
<pubDate>Wed, 02 Dec 2009 09:35:07 +0000</pubDate>
<dc:creator>ecmpro</dc:creator>
<guid>http://ecmpro.wordpress.com/2009/12/02/has-anyone-got-alfresco-web-studio-to-work/</guid>
<description><![CDATA[I installed the latest release of Alfresco Community version 3.2r2 and enabled Web Studio. Tomcat wa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I installed the latest release of Alfresco Community version 3.2r2 and enabled Web Studio. Tomcat was slow to start and finally starting popping errors in catalina.out related to Web Studio. Looking at the Alfresco forums, this seems to be a &#8220;feature&#8221; of the Community Edition of Alfresco. Sorry to sound sarcastic. I recently bought the book &#8220;Alfresco 3 Enterprise Content Management Implementation&#8221;, written by Munwar Sharif et al., and was trying out the Alfresco Web Studio feature when I encountered these issues. The book assumes that you will use the Alfresco Enterprise Edition and the examples are geared for the Enterprise edition.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Alfresco is NOT production ready OPEN SOURCE]]></title>
<link>http://ecmpro.wordpress.com/2009/11/30/alfresco-is-not-production-ready-open-source/</link>
<pubDate>Mon, 30 Nov 2009 08:59:12 +0000</pubDate>
<dc:creator>ecmpro</dc:creator>
<guid>http://ecmpro.wordpress.com/2009/11/30/alfresco-is-not-production-ready-open-source/</guid>
<description><![CDATA[Not really meant for production use - unless you pay for it! &nbsp; I can see the flak coming from a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_19" class="wp-caption aligncenter" style="width: 310px"><a href="http://ecmpro.wordpress.com/files/2009/11/opensource21.jpg"><img class="size-medium wp-image-19" title="Not for production use" src="http://ecmpro.wordpress.com/files/2009/11/opensource21.jpg?w=300" alt="" width="300" height="258" /></a><p class="wp-caption-text">Not really meant for production use - unless you pay for it!</p></div>
<p>&#160;</p>
<p>I can see the flak coming from all the Alfresco lovers out there after I write this post. Alfresco is a great product. It has changed the enterprise content management landscape and sends shivers down the spines of many executives in the proprietary ECM firms. However, it is not really open source.</p>
<p>There are two versions of the product &#8211; Community Edition and Enterprise Edition. Alfresco claims that both are based on the same code. But, the significant difference is that only Enterprise Edition has bug fixes. From what I can see, bugs fixed in the Enterprise edition stay unfixed in Community. Alfresco is intentionally introducing instability in the Community version of the software so that people don&#8217;t end up using it in production environments. You can&#8217;t get the source code for Enterprise unless you pay for it. I can agree with their argument that unless people pay for Enterprise edition, they won&#8217;t get money to keep the company a viable business. Yes, that is what a company is in business for! What I disagree with though is the way the people at Alfresco advertise and market their product claiming it is completely open source. If it were, make the enterprise edition source code available to everyone.</p>
<p>You can have a viable business model where you make money on support agreements from companies that want to use the product for production. Just don&#8217;t twist everyones arm by putting the ominous statement on your community edition -&#62; &#8221;	Supplied free of charge with no support, no certification, no maintenance, no warranty and no indemnity by Alfresco or its Certified Partners&#8221;. This is just not open source. It&#8217;s more like a trial version of commercial software.</p>
<p>It&#8217;s sad to see that people running Alfresco carried over the business practices of Documentum &#8211; over-market and under-deliver.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ขั้นตอน การติดตั้ง Alfresco ใน ubuntu ตอนที่ 2]]></title>
<link>http://nopphanan7.wordpress.com/2009/11/29/%e0%b8%82%e0%b8%b1%e0%b9%89%e0%b8%99%e0%b8%95%e0%b8%ad%e0%b8%99-%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%95%e0%b8%b4%e0%b8%94%e0%b8%95%e0%b8%b1%e0%b9%89%e0%b8%87-alfresco-%e0%b9%83%e0%b8%99-ubuntu-%e0%b8%9-2/</link>
<pubDate>Sun, 29 Nov 2009 03:53:58 +0000</pubDate>
<dc:creator>nop</dc:creator>
<guid>http://nopphanan7.wordpress.com/2009/11/29/%e0%b8%82%e0%b8%b1%e0%b9%89%e0%b8%99%e0%b8%95%e0%b8%ad%e0%b8%99-%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%95%e0%b8%b4%e0%b8%94%e0%b8%95%e0%b8%b1%e0%b9%89%e0%b8%87-alfresco-%e0%b9%83%e0%b8%99-ubuntu-%e0%b8%9-2/</guid>
<description><![CDATA[ขั้น การปรับแต่งสภาพแวดล้อมให้โปรแกรมทำงานได้ โดยการเข้าไปที่โฟลเดอร์ที่ไฟล์ติดตั้งอยู่ซึ่งก็ขึ้นอยู]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>ขั้น การปรับแต่งสภาพแวดล้อมให้โปรแกรมทำงานได้ โดยการเข้าไปที่โฟลเดอร์ที่ไฟล์ติดตั้งอยู่ซึ่งก็ขึ้นอยู่กับว่าแต่ละคน ติดตั้งไว้ที่ไหน<br />
1. การปรับแต่ง alfresco<br />
cd /opt/Alfresco<br />
แล้วเปิดไฟล์โดยการพิมพ์คำสั่งดังนี้</p>
<pre>vi /opt/Alfresco/alfresco.sh</pre>
<p>ก็จะได้ไฟล์ที่มีโคดดังต่อไปนี้ครับ ให้กำหนดค่าต่างตามนั้นเลย</p>
<pre>#!/bin/sh
# Start or stop Alfresco server
# Set the following to where Tomcat is installed
ALF_HOME=/opt/Alfresco
cd "$ALF_HOME"
APPSERVER="${ALF_HOME}/tomcat"
export JAVA_HOME="/usr/lib/jvm/java-6-sun-1.6.0.10/"
# Set any default JVM values
export JAVA_OPTS='-Xms128m -Xmx512m -XX:MaxPermSize=128m -server'
# Following only needed for Sun JVMs before to 1.5 update 8
#export JAVA_OPTS="${JAVA_OPTS}
-XX:CompileCommand=exclude,org/apache/lucene/index/IndexReader\$1
,doBody -XX:CompileCommand=exclude,org/alfr
#esco/repo/search/impl/lucene/index/IndexInfo\$Merger
,mergeIndexes -XX:CompileCommand=exclude
,org/alfresco/repo/search/impl/lucene/index/Ind
#exInfo\$Merger,mergeDeletions"
#
if [ "$1" = "start" ]; then
"${APPSERVER}/bin/startup.sh"
#  if [ -r ./virtual_start.sh ]; then
#    sh ./virtual_start.sh
#  fi
#  if [ -r "$ALF_HOME"/start_oo.sh ]; then
#    sh "$ALF_HOME"/start_oo.sh
#  fi
elif [ "$1" = "stop" ]; then
"${APPSERVER}/bin/shutdown.sh"
#  if [ -r ./virtual_start.sh ]; then
#    sh ./virtual_stop.sh
#  fi
#  if [ -r "$ALF_HOME"/start_oo.sh ]; then
#    killall soffice.bin
#  fi
fi</pre>
<p>2. การปรับแต่ง Virtual Alfresco<br />
ให้ทำเปิดไฟล์ดังต่อไปนี้</p>
<pre>vi /opt/Alfresco/virtual_alf.sh</pre>
<p>จะได้</p>
<pre>#!/bin/sh
# Start or stop Alfresco server
# Set the following to where Tomcat is installed
ALF_HOME=/opt/Alfresco
cd "$ALF_HOME"
APPSERVER="$ALF_HOME"/virtual-tomcat
export JAVA_HOME="/usr/lib/jvm/java-6-sun-1.6.0.10/"
# Start virtual-tomcat
#
if [ "$1" = "start" ]; then
"$APPSERVER"/bin/startup.sh
elif [ "$1" = "stop" ]; then
"$APPSERVER"/bin/shutdown.sh
fi</pre>
<p>3. การเปลี่ยนฐานข้อมูลจาก HSQL Database เป็น MySQL Database ซึ่งฐานข้อมูลชนิดอื่นก็เหมือนกัน พิมพ์คำสั่ง</p>
<pre>mysql -u root -p  จากนั้น พิมพ์  

mysql&#62; exit;

sudo mysql -p &#60; /opt/Alfresco/extras/databases/mysql/db_setup.sql

#mysql -p 

mysql&#62; show databases;

จะได้
+--------------------+
&#124; Database           &#124;
+--------------------+
&#124; information_schema &#124;
&#124; alfresco           &#124;
&#124; mysql              &#124;
+--------------------+
3 rows in set (0.00 sec)

mysql&#62;quit

จากนั้นเข้าไปที่โฟลเดอร์

cd tomcat/shared/classes/alfresco/extension/ และทำการเปิดไฟล์

vi custom-repository.properties

ให้ทำการเปลี่ยน dir.root ดังต่อไปนี้ 

# Sample custom content and index data location
#
dir.root=/opt/Alfresco/alf_data
และใส่ comment HSQL connection และลบ comment ออก สำหรับ  MySQL connection ดังต่อไปนี้
.....
# Derby connection
#
#db.driver=org.apache.derby.jdbc.EmbeddedDriver
#db.url=jdbc:derby:alf_data/derby_data/alfresco;create=true
#
# HSQL connection
#
#db.driver=org.hsqldb.jdbcDriver
#db.url=jdbc:hsqldb:file:alf_data/hsql_data/alfresco;ifexists=true;shutdown=true;
#
# MySQL connection (This is default and requires mysql-connector-java-5.0.3-bin.jar, which ships with the Alfresco server)
#
db.driver=org.gjt.mm.mysql.Driver
db.url=jdbc:mysql://localhost/alfresco
......

ให้ทำการบันทึกและปิดหน้าดังกล่าวแล้วเปิดไฟล์

vi custom-hibernate-dialect.properties

ให้ทำการใส่ commemt ตัวที่ไม่ใช้และเปิดตัวที่ใช้
.......
#
# Derby dialect
#
#hibernate.dialect=org.hibernate.dialect.DerbyDialect
#
# HSQL dialect
#
#hibernate.dialect=org.hibernate.dialect.HSQLDialect
#
# MySQL dialect (default)
#
hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect
#
# PostgreSQL dialect
#
......

การปรับแต่ง MySQL connectivity  ให้เปิดไฟล์โดยใช้คำสั่ง 

gedit /etc/mysql/my.cnf จากนั้นหาคำว่า bind-address และกำหนดค่าดังนี้
......
bind-address = localhost
......

จากนั้นเปิดไฟล์ 

vi custom-repository.properties และกำหนดดังนี้
......
db.url=jdbc:mysql://localhost/alfresco
......

ทำการ start โปรแกรม
/opt/Alfresco/alfresco.sh start

และเปิดเว็บ browser และเข้าไปที่

http://HOSTNAME:8080/alfresco

user: admin
pass: admin
</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ขั้นตอน การติดตั้ง Alfresco ใน ubuntu ตอนที่ 1]]></title>
<link>http://nopphanan7.wordpress.com/2009/11/29/%e0%b8%82%e0%b8%b1%e0%b9%89%e0%b8%99%e0%b8%95%e0%b8%ad%e0%b8%99-%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%95%e0%b8%b4%e0%b8%94%e0%b8%95%e0%b8%b1%e0%b9%89%e0%b8%87-alfresco-%e0%b9%83%e0%b8%99-ubuntu-%e0%b8%95/</link>
<pubDate>Sun, 29 Nov 2009 03:49:42 +0000</pubDate>
<dc:creator>nop</dc:creator>
<guid>http://nopphanan7.wordpress.com/2009/11/29/%e0%b8%82%e0%b8%b1%e0%b9%89%e0%b8%99%e0%b8%95%e0%b8%ad%e0%b8%99-%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%95%e0%b8%b4%e0%b8%94%e0%b8%95%e0%b8%b1%e0%b9%89%e0%b8%87-alfresco-%e0%b9%83%e0%b8%99-ubuntu-%e0%b8%95/</guid>
<description><![CDATA[Alfresco คือ ECM(Enterprise Content Management) จะเน้นการใช้งานเกี่ยวกับการจัดการเอกสารภายในองค์กร 1]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Alfresco คือ ECM(Enterprise Content Management) จะเน้นการใช้งานเกี่ยวกับการจัดการเอกสารภายในองค์กร<br />
1. ขั้นตอนก่อนติดตั้ง  ต้องให้แน่ใจก่อนนะครับว่า package บนเครื่องเรานั้นเป็นปจัจุบันมากที่สุดโดยการ</p>
<pre>apt-get update
apt-get upgrade</pre>
<p>2. package หรือโปรแกรมพื้นฐานที่ควรติดตั้งก่อน</p>
<pre>sudo apt-get install imagemagick
sudo apt-get install mysql-server
sudo apt-get install openoffice.org-headless /* โดดปกติ จะถูกติดตั้งไว้แล้ว */
sudo apt-get install xvfb swftools
sudo apt-get install sun-java6-jdk
sudo apt-get instalส sun-java6-jre
sudo apt-get install nfs-common
sudo apt-get install portmap
sudo apt-get install ia32-libs  /* ใช้สำหรับเครื่อง 64 บิต */</pre>
<p>3. การติดตั้ง  Alfresco Lab<br />
สามารถดาวโหลดโปรแกรมได้ที่นี่ครับ  http://wiki.alfresco.com/wiki/Labs_3_Final_download_files  <a href="http://wiki.alfresco.com/wiki/Labs_3_Final_download_files"></a>เมื่อโหลดมาแล้วให้ทำการเปลี่ยนโมดการเข้าถึงไฟล์โดย</p>
<pre>chmod 777 Alfresco-Labs-3Stable-Linux-x86-Install</pre>
<p>และทำการติดตั้งโดยใช้คำสั่ง</p>
<pre>./Alfresco-Labs-3Stable-Linux-x86-Install</pre>
<p>ก็จะได้ดังรูป</p>
<pre>[root@alfresco tmp]# ./Alfresco-Labs-3Stable-Linux-x86-Install
This will install Alfresco Labs on your computer.  Continue? [n/Y]
Where do you want to install Alfresco Labs? [/opt/Alfresco]
Installing Alfresco Labs...
Installing Program Files...
Installing Program Files Linux...
Installing Samples...
Installing WCM...
Installing WCM Linux...
Installation complete.
[root@alfresco tmp]#
</pre>
<p>หมาเหตุ :เวอร์ชั่นใหม่มีหน้าต่างขึ้นมาให้ติดตั้งตามขั้นตอนได้เลย</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Forrester Makes Gartner Look Inclusive]]></title>
<link>http://wordofpie.com/2009/11/25/forrester-makes-gartner-look-inclusive/</link>
<pubDate>Wed, 25 Nov 2009 14:55:15 +0000</pubDate>
<dc:creator>Pie</dc:creator>
<guid>http://wordofpie.com/2009/11/25/forrester-makes-gartner-look-inclusive/</guid>
<description><![CDATA[A couple months ago, Gartner released their annual ECM Magic Quadrant (which I looked at).  Sure eno]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A couple months ago, Gartner released their annual <a href="http://www.gartner.com/technology/media-products/reprints/oracle/article101/article101.html">ECM Magic Quadrant</a> (which I <a href="http://wordofpie.com/2009/10/29/the-2009-magic-quadrant-for-ecm/">looked at</a>).  Sure enough, being an odd year, Forrester released their ECM Wave.  I see the pros of waiting two years as the larger vendors take that long, or longer, for a significant release.  On the other hand, you have longer to wait for new members to show up.</p>
<p>Well not in Forrester&#8217;s world.  Only one new vendor (HP) was added and a few were cut, but I&#8217;m getting ahead of myself.</p>
<p><!--more--></p>
<h4>The 2009 Wave</h4>
<p>Thanks to Oracle (again), you can look at the <a href="http://www.oracle.com/corporate/analyst/reports/infrastructure/ocs/forrester-wave-2009.pdf">Q4 2009Forrester Wave for ECM Suites</a> in detail. For those with less patience, here is a copy of the wave&#8230;</p>
<p><a href="http://www.oracle.com/corporate/analyst/reports/infrastructure/ocs/forrester-wave-2009.pdf"><img style="display:block;float:none;border:0;margin:5px auto;" title="New Picture" src="http://wordofpie.files.wordpress.com/2009/11/newpicture.png?w=431&#038;h=460" border="0" alt="New Picture" width="431" height="460" /></a></p>
<p>Before we talk about the individual vendors, let&#8217;s talk about the low number of vendors.  If you look at the <a href="http://wordofpie.com/2007/12/03/the-forrester-wave-report-ecm-suites-q4-2007/">2007 report</a>, many vendors are gone. A couple were acquired (Interwoven and Vignette) and some aren&#8217;t what I would call ECM (SAP and Xerox) vendors anyway.</p>
<p>The question is, where is Autonomy?  They bought Interwoven and weren&#8217;t new to the content space.  They aren&#8217;t mentioned anywhere.  Nuxeo got a mention as one of the two open-source vendors in the &#8220;reduced footprint&#8221; category.  The SaaS focused SpringCM (under &#8220;reduced footprint&#8221;) and emerging Laserfiche (under &#8220;process-focused&#8221; and &#8220;SMB&#8221;) both got a nod as well.</p>
<p>All of those got placed on the Quadrant, as did SAP and Xerox.  I wouldn&#8217;t be upset, except I like how Forrester structures the wave more than Gartner&#8217;s MQ.  I want to see more vendors in here.</p>
<h4>Breaking it Down</h4>
<p>Let&#8217;s look at some of the vendors&#8230;</p>
<ul>
<li>Alfresco: Forrester thinks they are losing ground.  They didn&#8217;t say as much, but last time they were on the verge of making the Strong Contender  classification.  Now they are just strongly a Contender.  I understand raising the bar as the market evolves, but Alfresco hasn&#8217;t been sitting on its laurels.  They lost a lot ground in Strategy according to Forrester. As for the Current Offering, looks like the increased focus on integration in this Wave hurt Alfresco.</li>
<li>HP: Welcome to the Wave.  Still the only major vendor that I haven&#8217;t heard connected to CMIS in any way.  I&#8217;ve even heard that Hyland is working on it.  Forrester has noticed and made note.</li>
<li>Microsoft: Love the realism.  There are gaps, but less this time around than two years ago.  Microsoft  has a vision.  When 2010 comes out, they should push their way into the Leaders.</li>
<li>Open Text: Getting hit on their Strategy.  Constant acquisition of the competition can do that.  Getting things integrated, as always, remains their biggest hurdle.</li>
<li>EMC: Not much to say, except they got dinged for their poor WCM.  This is a growing trend.</li>
<li>IBM/Oracle: Feel the love, especially with IBM.</li>
</ul>
<p>To be honest, nothing surprising, just reinforcing.  I like how Forrester has the Leaders spread a little and how getting closer to the upper-right corner is rewarded.  You need a strong Strategy and solid Offering to get rated well.  Market Presence is measured by the size of the dot.  It just makes a lot more sense to me.</p>
<p>You know what is missing this year?  The score weighting.  Smart move as I trashed it last year and it gives people something extra when they pay for the full details.</p>
<p>Overall, the scoring had nothing massively off, though I&#8217;m not sure why Alfresco took so many hits.  The next couple of years is going to be critical for Alfresco as they start to hit middle-age and strive to be more.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Gusttimo di Roma, ION Orchard]]></title>
<link>http://ingredientsofhappiness.wordpress.com/2009/11/25/gusttimo-di-roma-ion-orchard/</link>
<pubDate>Wed, 25 Nov 2009 07:39:24 +0000</pubDate>
<dc:creator>ingredientsofhappiness</dc:creator>
<guid>http://ingredientsofhappiness.wordpress.com/2009/11/25/gusttimo-di-roma-ion-orchard/</guid>
<description><![CDATA[A part alfresco dining cafe, part air-conditioned gelateria, Gusttimo di Roma is situated in the hea]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A part alfresco dining cafe, part air-conditioned gelateria, Gusttimo di Roma is situated in the heart of the city at the the newest shopping megamall of Singapore, ION Orchard.</p>
<p>My first impression was &#8211; wow, there are SO many flavours to choose from!</p>
<p style="text-align:center;">
<div id="attachment_282" class="wp-caption aligncenter" style="width: 310px"><a href="http://ingredientsofhappiness.wordpress.com/files/2009/11/img_9722.jpg"><img class="size-full wp-image-282" title="IMG_9722" src="http://ingredientsofhappiness.wordpress.com/files/2009/11/img_9722.jpg" alt="" width="300" height="400" /></a><p class="wp-caption-text">Strawberry, Mint and Dark Chocolate</p></div>
<p style="text-align:left;">So the first time I went there, I had <em>Strawberry</em> (Fragola), <em>Mint</em> (Menta), and <em>Dark Chocolate</em> (Cioccolato). It was so hard to choose; there were TONS of flavours, ranging from the wacky ones (Black Rice?!) to the classic (Plain Yoghurt). Having been to Italy and possibly eaten my weight&#8217;s worth in gelato over the 5 days I was there (okay fine, I probably exaggerate, but it was at least like 4 scoops a day or something), I wasn&#8217;t really expecting a fantastic experience. Because hey, what can beat gelato in Italy, right?</p>
<p style="text-align:left;">And drumroll&#8230;&#8230; yeah, it couldn&#8217;t beat Italy&#8217;s fresh, creamy, tongue-orgasm gelatos. But, I do think that it is pretty good for Singapore standards (compared to all the other gelatos here), and that I would definitely go back there for more. And at S$5.90 for 3 pretty generous scoops of gelato, I think that&#8217;s quite reasonable. Though if you&#8217;re a small eater, that might be a problem because that&#8217;s the smallest size available.</p>
<p style="text-align:left;">But anyway, I&#8217;ve digressed enough, and on to the taste.</p>
<div id="attachment_283" class="wp-caption aligncenter" style="width: 310px"><a href="http://ingredientsofhappiness.wordpress.com/files/2009/11/gusttimo.jpg"><img class="size-full wp-image-283" title="Gusttimo" src="http://ingredientsofhappiness.wordpress.com/files/2009/11/gusttimo.jpg" alt="White Wine, Tiramisu and Mango" width="300" height="400" /></a><p class="wp-caption-text">White Wine, Tiramisu and Mango</p></div>
<p>The gelato was rich and flavourful &#8211; the <em>Mango </em>especially, was delicious &#8211; it had the taste of fresh mangoes and was not too sweet or powdery, the way synthetic mango syrups tend to be. The <em>White Wine</em> and <em>Tiramisu </em>were absolutely satisfying as well, creamy and true to its flavour, which made me savour these tastes in my mouth. It was like an explosion of icy cold heaven. But anyway, for the <em>Strawberry</em>, <em>Mint</em> and <em>Dark Chocolate</em>, the latter 2 were yummy but very normal, and the strawberry was&#8230; kind of strange.</p>
<p>The nice counter staff also let me taste a whole range of flavours and was really helpful, as I couldn&#8217;t decide which flavour to choose. I must say, <em>Black Rice</em> actually tastes much better than it sounds, and on the opposite end, <em>Pecans+Brownie</em> doesn&#8217;t taste as good as it sounds.</p>
<p>But anyway, it&#8217;s worth a try. And the outdoor atmosphere is pretty nice too &#8211; good for a chill, relaxing session with friends, over some gelato, or coffee!</p>
<p>I&#8217;ll probably go back sometime for more gelato, or perhaps, try the food.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
<em> </em></p>
<p><em>Gusttimmo di Roma<br />
2 Orchard Road<br />
#1-15 ION Orchard<br />
Tel: +65 6509 9380<br />
Website: http://www.gusttimo.com.sg/</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[COFFEE ON A LEASH]]></title>
<link>http://freoview.wordpress.com/2009/11/18/coffee-on-a-leash/</link>
<pubDate>Wed, 18 Nov 2009 04:35:12 +0000</pubDate>
<dc:creator>freoview</dc:creator>
<guid>http://freoview.wordpress.com/2009/11/18/coffee-on-a-leash/</guid>
<description><![CDATA[The nanny state attitude of government agencies is getting worse by the day. Now local councils have]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The nanny state attitude of government agencies is getting worse by the day. Now local councils have been forced, under the State Health Act, to take action against owners of cafes and restaurants who allow dogs in the alfresco areas.</p>
<p>What this means is that people who take their dogs to the beach, parks, or a walk around the block, can&#8217;t have a coffee unless they tie up their dogs somewhere away from the tables.</p>
<p>Dogs don&#8217;t sit on tables or chairs, but lie underneath them. What health risk could that possibly be?</p>
<p>Roel Loopers</p>
<p><a href="http://freoview.wordpress.com/files/2009/11/cafe-dogs3.jpg"><img class="alignnone size-full wp-image-328" title="coffee dogs, tiff" src="http://freoview.wordpress.com/files/2009/11/cafe-dogs3.jpg" alt="" width="720" height="470" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Michael Moore]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/11/17/michael-moore/</link>
<pubDate>Tue, 17 Nov 2009 17:36:31 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/11/17/michael-moore/</guid>
<description><![CDATA[19 Blandford Street, Marylebone, London,W1U 3DH Tel: 0207 224 0970 Tube: Baker Street Opening Hours:]]></description>
<content:encoded><![CDATA[19 Blandford Street, Marylebone, London,W1U 3DH Tel: 0207 224 0970 Tube: Baker Street Opening Hours:]]></content:encoded>
</item>
<item>
<title><![CDATA[Maison Bertaux]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/11/17/maison-berteux/</link>
<pubDate>Tue, 17 Nov 2009 15:11:06 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/11/17/maison-berteux/</guid>
<description><![CDATA[28 Greek St, Soho, London, W1D 5DQ Tel: 0207 437  6007 Tube: Oxford Street Opening hours: Mon –Sat 0]]></description>
<content:encoded><![CDATA[28 Greek St, Soho, London, W1D 5DQ Tel: 0207 437  6007 Tube: Oxford Street Opening hours: Mon –Sat 0]]></content:encoded>
</item>
<item>
<title><![CDATA[Sacred Cafe]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/11/17/sacred-cafe/</link>
<pubDate>Tue, 17 Nov 2009 13:50:52 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/11/17/sacred-cafe/</guid>
<description><![CDATA[Kingly Court, off  Carnaby Street, Soho, London, W1B 5PW Tel: 0207 700 1628 Tube: Oxford Street Open]]></description>
<content:encoded><![CDATA[Kingly Court, off  Carnaby Street, Soho, London, W1B 5PW Tel: 0207 700 1628 Tube: Oxford Street Open]]></content:encoded>
</item>
<item>
<title><![CDATA[Aurora]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/11/17/aurora/</link>
<pubDate>Tue, 17 Nov 2009 12:31:41 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/11/17/aurora/</guid>
<description><![CDATA[49 Lexington St, Soho, London, W1F 9AP Tel: 0207 494 0514 Tube: Oxford Street Opening hours: Mon-Sat]]></description>
<content:encoded><![CDATA[49 Lexington St, Soho, London, W1F 9AP Tel: 0207 494 0514 Tube: Oxford Street Opening hours: Mon-Sat]]></content:encoded>
</item>
<item>
<title><![CDATA[La Trouvaille]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/11/17/la-trouvaille/</link>
<pubDate>Tue, 17 Nov 2009 11:58:59 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/11/17/la-trouvaille/</guid>
<description><![CDATA[12a Newburgh St, Soho, London, W1F 7RR Tel: 020 7287 8488 Tube: Oxford Street Restaurant opening hou]]></description>
<content:encoded><![CDATA[12a Newburgh St, Soho, London, W1F 7RR Tel: 020 7287 8488 Tube: Oxford Street Restaurant opening hou]]></content:encoded>
</item>
<item>
<title><![CDATA[Long Bar @ The Sanderson]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/11/16/long-bar-the-sanderson/</link>
<pubDate>Mon, 16 Nov 2009 20:52:02 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/11/16/long-bar-the-sanderson/</guid>
<description><![CDATA[50 Berners Street, Soho, London, W1T 3NG Tel: 0207 300 5587 Tube: Oxford Street Opening hours: Mon 1]]></description>
<content:encoded><![CDATA[50 Berners Street, Soho, London, W1T 3NG Tel: 0207 300 5587 Tube: Oxford Street Opening hours: Mon 1]]></content:encoded>
</item>
<item>
<title><![CDATA[Hydepark: Escape the city madness with this cultural, relaxed and romantic date. ]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/11/16/hydepark/</link>
<pubDate>Mon, 16 Nov 2009 14:31:22 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/11/16/hydepark/</guid>
<description><![CDATA[Start at South Ken/High Street Ken/ Lancaster Gate Walk to Serpentine Gallery Stroll through the par]]></description>
<content:encoded><![CDATA[Start at South Ken/High Street Ken/ Lancaster Gate Walk to Serpentine Gallery Stroll through the par]]></content:encoded>
</item>
<item>
<title><![CDATA[Almeida]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/11/16/almeida/</link>
<pubDate>Mon, 16 Nov 2009 11:58:02 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/11/16/almeida/</guid>
<description><![CDATA[30 Almeida Street, Islington, N1 1TD Tel: 020 7354 4777 Cuisine: French Tube: Angel Opening Hours: M]]></description>
<content:encoded><![CDATA[30 Almeida Street, Islington, N1 1TD Tel: 020 7354 4777 Cuisine: French Tube: Angel Opening Hours: M]]></content:encoded>
</item>
<item>
<title><![CDATA[Frederick's]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/11/16/fredericks/</link>
<pubDate>Mon, 16 Nov 2009 11:00:54 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/11/16/fredericks/</guid>
<description><![CDATA[Camden Passage, Islington, N1 8EG Tel: 020 7359 2888 Cuisine: Modern European Tube: Angel Opening Ho]]></description>
<content:encoded><![CDATA[Camden Passage, Islington, N1 8EG Tel: 020 7359 2888 Cuisine: Modern European Tube: Angel Opening Ho]]></content:encoded>
</item>
<item>
<title><![CDATA[The Old Queens Head]]></title>
<link>http://romeodatesjuliet.wordpress.com/2009/11/13/the-old-queens-head/</link>
<pubDate>Fri, 13 Nov 2009 21:48:00 +0000</pubDate>
<dc:creator>romeodatesjuliet</dc:creator>
<guid>http://romeodatesjuliet.wordpress.com/2009/11/13/the-old-queens-head/</guid>
<description><![CDATA[44 Essex Road, Islington, N1 8LN Tel: 020 7354 9993 Cuisine: British Tube: Angel Opening hours: Mon-]]></description>
<content:encoded><![CDATA[44 Essex Road, Islington, N1 8LN Tel: 020 7354 9993 Cuisine: British Tube: Angel Opening hours: Mon-]]></content:encoded>
</item>

</channel>
</rss>
