<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>betweenGo</title>
	
	<link>http://betweengo.com</link>
	<description>We make Ruby on Rails easy.  We make ATG easy.</description>
	<lastBuildDate>Thu, 24 Jun 2010 19:42:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/betweengo" /><feedburner:info uri="betweengo" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>betweengo</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Persistent Cart for Anonymous Users</title>
		<link>http://feedproxy.google.com/~r/betweengo/~3/3VyYJMSpOzs/</link>
		<comments>http://betweengo.com/2010/05/03/persistent-cart-for-anonymous-users/#comments</comments>
		<pubDate>Mon, 03 May 2010 14:26:00 +0000</pubDate>
		<dc:creator>Frank Kim</dc:creator>
				<category><![CDATA[Personalization]]></category>
		<category><![CDATA[auto-login]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[profile]]></category>

		<guid isPermaLink="false">http://betweengo.com/2010/05/03/persistent-cart-for-anonymous-users/</guid>
		<description><![CDATA[ Isn’t it iconic? by Mykl Roventine
Convenience
eCommerce sites want to make their users’ experience as convenient and intuitive as possible.&#160; One convenience found on most major eCommerce sites is remembering what the user put in his shopping cart, even if that person didn’t log in.&#160; Therefore when the user returns to the site he will [...]


Related posts:<ol><li><a href='http://betweengo.com/2009/02/04/removing-cookie/' rel='bookmark' title='Permanent Link: Removing a Cookie'>Removing a Cookie</a></li>
<li><a href='http://betweengo.com/2009/07/17/how-to-import-and-create-users-in-oracle/' rel='bookmark' title='Permanent Link: How to Import and Create Users in Oracle'>How to Import and Create Users in Oracle</a></li>
<li><a href='http://betweengo.com/2009/11/02/how-to-add-multiple-items-to-the-shopping-cart-in-atg/' rel='bookmark' title='Permanent Link: How to Add Multiple Items to the Shopping Cart in ATG'>How to Add Multiple Items to the Shopping Cart in ATG</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.flickr.com/photos/myklroventine/3520845782/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" title="129/365 Isn’t it iconic? on Flickr" alt="129/365 Isn’t it iconic? on Flickr" src="http://farm4.static.flickr.com/3651/3520845782_01cfae6862.jpg" /></a> <a title="129/365 Isn’t it iconic? on Flickr" href="http://www.flickr.com/photos/myklroventine/3520845782/">Isn’t it iconic?</a> by <a title="Flickr: Mykl Roventine&#39;s Photostream" href="http://www.flickr.com/photos/myklroventine/">Mykl Roventine</a></p>
<p><strong>Convenience</strong></p>
<p>eCommerce sites want to make their users’ experience as convenient and intuitive as possible.&#160; One convenience found on most major eCommerce sites is remembering what the user put in his shopping cart, even if that person didn’t log in.&#160; Therefore when the user returns to the site he will see what he left in his shopping cart.</p>
<p><strong>Persistent Cart</strong></p>
<p>ATG makes it relatively simple to do this by:</p>
<ol>
<li>creating a profile in the repository (database) for all users that visit the website </li>
<li>automatically logging in users by cookie </li>
</ol>
<p>Therefore if a user returns, she/he will be automatically logged in and if there were any items in his cart they will be added to the current cart.</p>
<p><strong>Implementation</strong></p>
<ol>
<li>Turn on persisting anonymous profiles in the ProfileRequestServlet.
<pre># /atg/dynamo/servlet/dafpipeline/ProfileRequestServlet
persistAfterLogout=true
persistentAnonymousProfiles=true</pre>
</li>
<li>Turn on auto-login by cookie and turn off auto-login by basic authentication.
<pre># /atg/userprofiling/CookieManager
sendProfileCookies=true

# /atg/userprofiling/ProfileRequestServlet
verifyBasicAuthentication=false</pre>
</li>
<li>Make all profile properties not required except for login and password in userProfile.xml.&#160; Also make autoLogin true.
<pre>&lt;table name=&quot;dps_user&quot;&gt;
  &lt;property name=&quot;login&quot; required=&quot;true&quot; /&gt;
  &lt;property name=&quot;password&quot; required=&quot;true&quot; /&gt;
  &lt;property name=&quot;firstName&quot; required=&quot;false&quot; /&gt;
  &lt;property name=&quot;lastName&quot; required=&quot;false&quot; /&gt;
  &lt;property name=&quot;email&quot; required=&quot;false&quot; /&gt;
  &lt;property name=&quot;autoLogin&quot; default=&quot;true&quot; /&gt;
&lt;/table&gt;</pre>
</li>
</ol>
<p><strong>Notes</strong></p>
<p>When a profile is created for an anonymous user the login and password are set to the user’s ID (i.e. the profile’s repository ID).</p>
<p>If you are adding this functionality to an existing up and running site you may have to modify your user tables so that there no “not null” columns except for the id, login and password columns, you can leave those as how they were.&#160; Also you will need to set auto_login to true for all your existing users.</p>
<pre>update dps_user set auto_login = 1;</pre>
<p>To determine when the anonymous user was created look at the registrationDate profile property.&#160; To determine when was the last time the anonymous user logged in look at the lastActivity profile property.&#160; <a title="Configuring the Profile Tools Component" href="http://www.atg.com/repositories/ContentCatalogRepository_en/manuals/ATG9.1/persprog/wwhelp/wwhimpl/common/html/wwhelp.htm?context=persprog&amp;file=PersProgGuide.1.13.html">Both of these are updated by ATG’s TrackActivity scenario</a> which is in the DSS folder.</p>
<p>For further reading please see <a title="Tracking Guest Users" href="http://www.atg.com/repositories/ContentCatalogRepository_en/manuals/ATG9.1/persprog/wwhelp/wwhimpl/common/html/wwhelp.htm?context=persprog&amp;file=PersProgGuide.1.47.html">Tracking Guest Users</a> and <a title="Tracking Registered Users" href="http://www.atg.com/repositories/ContentCatalogRepository_en/manuals/ATG9.1/persprog/wwhelp/wwhimpl/common/html/wwhelp.htm?context=persprog&amp;file=PersProgGuide.1.47.html">Tracking Registered Users</a> in the <a title="ATG 9.1 Personalization Programming Guide" href="http://www.atg.com/repositories/ContentCatalogRepository_en/manuals/ATG9.1/persprog/wwhelp/wwhimpl/js/html/wwhelp.htm?href=PersProgGuide.1.47.html">ATG 9.1 Personalization Programming Guide</a>.</p>


<p>Related posts:<ol><li><a href='http://betweengo.com/2009/02/04/removing-cookie/' rel='bookmark' title='Permanent Link: Removing a Cookie'>Removing a Cookie</a></li>
<li><a href='http://betweengo.com/2009/07/17/how-to-import-and-create-users-in-oracle/' rel='bookmark' title='Permanent Link: How to Import and Create Users in Oracle'>How to Import and Create Users in Oracle</a></li>
<li><a href='http://betweengo.com/2009/11/02/how-to-add-multiple-items-to-the-shopping-cart-in-atg/' rel='bookmark' title='Permanent Link: How to Add Multiple Items to the Shopping Cart in ATG'>How to Add Multiple Items to the Shopping Cart in ATG</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/BEoDtz4vqPB4OqPVn34nNTE4kag/0/da"><img src="http://feedads.g.doubleclick.net/~a/BEoDtz4vqPB4OqPVn34nNTE4kag/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BEoDtz4vqPB4OqPVn34nNTE4kag/1/da"><img src="http://feedads.g.doubleclick.net/~a/BEoDtz4vqPB4OqPVn34nNTE4kag/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/betweengo?a=3VyYJMSpOzs:7pFh15AwAic:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/betweengo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=3VyYJMSpOzs:7pFh15AwAic:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/betweengo?i=3VyYJMSpOzs:7pFh15AwAic:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=3VyYJMSpOzs:7pFh15AwAic:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/betweengo?i=3VyYJMSpOzs:7pFh15AwAic:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=3VyYJMSpOzs:7pFh15AwAic:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/betweengo?i=3VyYJMSpOzs:7pFh15AwAic:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=3VyYJMSpOzs:7pFh15AwAic:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/betweengo?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=3VyYJMSpOzs:7pFh15AwAic:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/betweengo?i=3VyYJMSpOzs:7pFh15AwAic:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=3VyYJMSpOzs:7pFh15AwAic:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/betweengo?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/betweengo/~4/3VyYJMSpOzs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://betweengo.com/2010/05/03/persistent-cart-for-anonymous-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://betweengo.com/2010/05/03/persistent-cart-for-anonymous-users/</feedburner:origLink></item>
		<item>
		<title>Debugging WebSphere Applications with IBM Rational Application Developer</title>
		<link>http://feedproxy.google.com/~r/betweengo/~3/eiAx8trB69Y/</link>
		<comments>http://betweengo.com/2010/04/26/debugging-websphere-applications-with-ibm-rational-application-developer/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 13:53:00 +0000</pubDate>
		<dc:creator>Frank Kim</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[rational application developer]]></category>
		<category><![CDATA[websphere]]></category>

		<guid isPermaLink="false">http://betweengo.com/2010/04/26/debugging-websphere-applications-with-ibm-rational-application-developer/</guid>
		<description><![CDATA[IBM Rational Application Developer (RAD) is basically a typically IBM heavy version of Eclipse.&#160; WebSphere is a typically IBM heavy version of a J2EE server.&#160; Therefore you would think you could debug web applications using RAD fairly easily like you can on JBoss or ATG DAS using Eclipse.
However I could not find anyone on my [...]


Related posts:<ol><li><a href='http://betweengo.com/2006/02/22/import-project-into-eclipse/' rel='bookmark' title='Permanent Link: Import A Project Into Eclipse'>Import A Project Into Eclipse</a></li>
<li><a href='http://betweengo.com/2005/08/11/mysterious-404-errors-atg-j2ee-apps/' rel='bookmark' title='Permanent Link: Mysterious 404 errors in ATG J2EE applications'>Mysterious 404 errors in ATG J2EE applications</a></li>
<li><a href='http://betweengo.com/2009/07/27/debug-atg-running-on-jboss-with-eclipse/' rel='bookmark' title='Permanent Link: Debug ATG running on JBoss with Eclipse'>Debug ATG running on JBoss with Eclipse</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a title="IBM Rational Application Developer for WebSphere" href="http://www.ibm.com/software/ad/studioappdev/">IBM Rational Application Developer (RAD)</a> is basically a typically IBM heavy version of <a title="Eclipse" href="http://eclipse.org/">Eclipse</a>.&#160; <a title="IBM WebSphere" href="http://www.ibm.com/websphere/">WebSphere</a> is a typically IBM heavy version of a J2EE server.&#160; Therefore you would think you could debug web applications using RAD fairly easily like you can on <a title="JBoss Application Server" href="http://jboss.org/jbossas">JBoss</a> or ATG DAS using Eclipse.</p>
<p>However I could not find anyone on my latest project who knew how to do this.&#160; Fortunately after much Googling I found this PDF document, <a title="Debugging Applications in IBM Rational Application Developer" href="http://publib.boulder.ibm.com/infocenter/ieduasst/rtnv1r0/topic/com.ibm.iea.rad_v6/rad/6.0/Debugging/IRADv6_DebugApplLocalLab.pdf">Debugging Applications in IBM Rational Application Developer</a>, and on page 12 are instructions on how to do this.</p>
<p>The instructions seem to be a little out of date so here are my instructions.</p>
<ol>
<li>Log into your Integrated Solutions Console.&#160; The default URL is <a title="http://localhost:9060/ibm/console/login.do" href="http://localhost:9060/ibm/console/login.do">http://localhost:9060/ibm/console/login.do</a>. </li>
<li>Navigate using the left side column to Servers –&gt; Application Servers. </li>
<li>Select the Application server you want to debug from the list of Application servers. </li>
<li>Under the Configuration tab select the Debugging Service link which is near the bottom right in the Additional Properties section.
<p><a href="http://betweengo.com/wp-content/uploads/2010/04/debugging_service.png"><img title="Debugging Service link in Additional Properties section" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="156" alt="Debugging Service link in Additional Properties section" src="http://betweengo.com/wp-content/uploads/2010/04/debugging_service_thumb.png" width="457" border="0" /></a>       </li>
<li>Select the “Enable service at server startup” checkbox.&#160; Note the JVM debug port.
<p><a href="http://betweengo.com/wp-content/uploads/2010/04/configuration.png"><img title="Debugging Service configuration" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="344" alt="Debugging Service configuration" src="http://betweengo.com/wp-content/uploads/2010/04/configuration_thumb.png" width="502" border="0" /></a>       </li>
<li>Press the Apply button. </li>
<li>In the Messages box, which appeared at the top after pressing the Apply button, click on the Save link.
<p><img title="Debugging Service messages" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="129" alt="Debugging Service messages" src="http://betweengo.com/wp-content/uploads/2010/04/messages.png" width="502" border="0" />       </li>
<li>Stop and start your Application Server.&#160; It should now be running in Debug mode. </li>
<li>In RAD go to the project for the web application you want to debug. </li>
<li>From the menu select Run –&gt; Debug Configurations. </li>
<li>Select Remote Java Application and press the New button (it’s the top left button).&#160; For the port set it to the JVM debug port (default is 7777). </li>
<li>Press Apply.&#160; Then press Debug.&#160; It should connect to WebSphere’s JVM. </li>
</ol>
<p>Now you can set breakpoints and even change small amounts of code which will be deployed automatically to WebSphere.&#160; No more waiting 15 minutes to test every change you make because builds are so brutally long. <img src='http://betweengo.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://betweengo.com/2006/02/22/import-project-into-eclipse/' rel='bookmark' title='Permanent Link: Import A Project Into Eclipse'>Import A Project Into Eclipse</a></li>
<li><a href='http://betweengo.com/2005/08/11/mysterious-404-errors-atg-j2ee-apps/' rel='bookmark' title='Permanent Link: Mysterious 404 errors in ATG J2EE applications'>Mysterious 404 errors in ATG J2EE applications</a></li>
<li><a href='http://betweengo.com/2009/07/27/debug-atg-running-on-jboss-with-eclipse/' rel='bookmark' title='Permanent Link: Debug ATG running on JBoss with Eclipse'>Debug ATG running on JBoss with Eclipse</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/WYVLoxHtvaJaAh8W0gtrADYSdEk/0/da"><img src="http://feedads.g.doubleclick.net/~a/WYVLoxHtvaJaAh8W0gtrADYSdEk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/WYVLoxHtvaJaAh8W0gtrADYSdEk/1/da"><img src="http://feedads.g.doubleclick.net/~a/WYVLoxHtvaJaAh8W0gtrADYSdEk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/betweengo?a=eiAx8trB69Y:JO3RGxsn5bE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/betweengo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eiAx8trB69Y:JO3RGxsn5bE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/betweengo?i=eiAx8trB69Y:JO3RGxsn5bE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eiAx8trB69Y:JO3RGxsn5bE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/betweengo?i=eiAx8trB69Y:JO3RGxsn5bE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eiAx8trB69Y:JO3RGxsn5bE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/betweengo?i=eiAx8trB69Y:JO3RGxsn5bE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eiAx8trB69Y:JO3RGxsn5bE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/betweengo?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eiAx8trB69Y:JO3RGxsn5bE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/betweengo?i=eiAx8trB69Y:JO3RGxsn5bE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eiAx8trB69Y:JO3RGxsn5bE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/betweengo?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/betweengo/~4/eiAx8trB69Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://betweengo.com/2010/04/26/debugging-websphere-applications-with-ibm-rational-application-developer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://betweengo.com/2010/04/26/debugging-websphere-applications-with-ibm-rational-application-developer/</feedburner:origLink></item>
		<item>
		<title>Set ATG Repository Item Date or Timestamp Properties to the Current Time</title>
		<link>http://feedproxy.google.com/~r/betweengo/~3/YBFd4bu6Wpo/</link>
		<comments>http://betweengo.com/2010/04/19/set-atg-repository-date-timestamp-properties-to-current-time/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 13:05:00 +0000</pubDate>
		<dc:creator>Frank Kim</dc:creator>
				<category><![CDATA[Repository]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[timestamp]]></category>
		<category><![CDATA[useNowForDefault]]></category>

		<guid isPermaLink="false">http://betweengo.com/2010/04/19/set-atg-repository-item-date-or-timestamp-properties-to-the-current-time/</guid>
		<description><![CDATA[ *Time* Ticking away&#8230; by Michel Filion
This is a neat trick for automatically setting a date or timestamp property to the current time.  I learned it while perusing the ATG Repository Guide.
Date and Timestamp Properties
A repository item can use properties whose values are dates or timestamps, with the value set to the current date or [...]


Related posts:<ol><li><a href='http://betweengo.com/2007/11/17/date-and-timestamp-repository-data-types/' rel='bookmark' title='Permanent Link: Date and Timestamp Repository Data Types'>Date and Timestamp Repository Data Types</a></li>
<li><a href='http://betweengo.com/2008/05/28/invalid-column-type-sqlexception-with-atg-repository/' rel='bookmark' title='Permanent Link: Invalid column type SQLException with ATG Repository'>Invalid column type SQLException with ATG Repository</a></li>
<li><a href='http://betweengo.com/2007/02/07/user-defined-property-types/' rel='bookmark' title='Permanent Link: ATG Repository User-Defined Property Types'>ATG Repository User-Defined Property Types</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.flickr.com/photos/mike9alive/1032525361/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" title="*Time* Ticking away... on Flickr" src="http://farm2.static.flickr.com/1070/1032525361_ca7c9e404d.jpg" alt="*Time* Ticking away... on Flickr" /></a> <a title="*Time* Ticking away... on Flickr" href="http://www.flickr.com/photos/mike9alive/1032525361/">*Time* Ticking away&#8230;</a> by <a title="Flickr: Michel Filion's Photostream" href="http://www.flickr.com/photos/mike9alive/">Michel Filion</a></p>
<p>This is a neat trick for automatically setting a date or timestamp property to the current time.  I learned it while perusing the <a title="ATG 6 Repository Guide" href="http://www.atg.com/repositories/ContentCatalogRepository_en/manuals/ATG6.4.0/repository/">ATG Repository Guide</a>.</p>
<blockquote><p><strong><a title="Date and Timestamp Properties" href="http://www.atg.com/repositories/ContentCatalogRepository_en/manuals/ATG6.4.0/repository/repository0705.html">Date and Timestamp Properties</a></strong></p>
<p>A repository item can use properties whose values are dates or timestamps, with the value set to the current date or time, using the <a title="Date (Java 2 Platform SE 5.0)" href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html">java.util.Date</a>, <a title="Date (Java 2 Platform SE 5.0)" href="http://java.sun.com/j2se/1.5.0/docs/api/java/sql/Date.html">java.sql.Date</a>, or <a title="Timestamp (Java 2 Platform SE 5.0)" href="http://java.sun.com/j2se/1.5.0/docs/api/java/sql/Timestamp.html">java.sql.Timestamp</a> classes. You can have a property whose value is set to the current time or date at the moment a repository item is created. You can do this by setting the feature descriptor attribute useNowForDefault. For example:</p>
<pre>&lt;property name="creationDate" data-type="timestamp"&gt;
  &lt;attribute name="useNowForDefault" value="true"/&gt;
&lt;/property&gt;</pre>
<p>For more information about this technique, see the <a title="Assigning FeatureDescriptorValues with the &lt;attribute&gt; Tag" href="http://www.atg.com/repositories/ContentCatalogRepository_en/manuals/ATG6.4.0/repository/repository0712.html#assigningfeaturedescriptorvalues01">Assigning FeatureDescriptorValues with the &lt;attribute&gt; Tag</a> section in this chapter.</p></blockquote>


<p>Related posts:<ol><li><a href='http://betweengo.com/2007/11/17/date-and-timestamp-repository-data-types/' rel='bookmark' title='Permanent Link: Date and Timestamp Repository Data Types'>Date and Timestamp Repository Data Types</a></li>
<li><a href='http://betweengo.com/2008/05/28/invalid-column-type-sqlexception-with-atg-repository/' rel='bookmark' title='Permanent Link: Invalid column type SQLException with ATG Repository'>Invalid column type SQLException with ATG Repository</a></li>
<li><a href='http://betweengo.com/2007/02/07/user-defined-property-types/' rel='bookmark' title='Permanent Link: ATG Repository User-Defined Property Types'>ATG Repository User-Defined Property Types</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/2KreLN7BuKX8641Cs2Cm-4MHqZY/0/da"><img src="http://feedads.g.doubleclick.net/~a/2KreLN7BuKX8641Cs2Cm-4MHqZY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2KreLN7BuKX8641Cs2Cm-4MHqZY/1/da"><img src="http://feedads.g.doubleclick.net/~a/2KreLN7BuKX8641Cs2Cm-4MHqZY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/betweengo?a=YBFd4bu6Wpo:p6uUePvVUr4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/betweengo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=YBFd4bu6Wpo:p6uUePvVUr4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/betweengo?i=YBFd4bu6Wpo:p6uUePvVUr4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=YBFd4bu6Wpo:p6uUePvVUr4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/betweengo?i=YBFd4bu6Wpo:p6uUePvVUr4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=YBFd4bu6Wpo:p6uUePvVUr4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/betweengo?i=YBFd4bu6Wpo:p6uUePvVUr4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=YBFd4bu6Wpo:p6uUePvVUr4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/betweengo?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=YBFd4bu6Wpo:p6uUePvVUr4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/betweengo?i=YBFd4bu6Wpo:p6uUePvVUr4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=YBFd4bu6Wpo:p6uUePvVUr4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/betweengo?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/betweengo/~4/YBFd4bu6Wpo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://betweengo.com/2010/04/19/set-atg-repository-date-timestamp-properties-to-current-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://betweengo.com/2010/04/19/set-atg-repository-date-timestamp-properties-to-current-time/</feedburner:origLink></item>
		<item>
		<title>Twitter Weekly Updates for 2010-04-04</title>
		<link>http://feedproxy.google.com/~r/betweengo/~3/yDiPN8FO0kw/</link>
		<comments>http://betweengo.com/2010/04/04/twitter-weekly-updates-for-2010-04-04/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 14:00:00 +0000</pubDate>
		<dc:creator>Frank Kim</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://betweengo.com/2010/04/04/twitter-weekly-updates-for-2010-04-04/</guid>
		<description><![CDATA[
Clear Text On Input Field On Click &#124; ErumMunir.com. Sometimes JavaScript is just fun. http://bit.ly/c6D7cR #



Related posts:Twitter Weekly Updates for 2010-03-07
Twitter Weekly Updates for 2010-03-28
Twitter Weekly Updates for 2009-12-20



Related posts:<ol><li><a href='http://betweengo.com/2010/03/07/twitter-weekly-updates-for-2010-03-07/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-03-07'>Twitter Weekly Updates for 2010-03-07</a></li>
<li><a href='http://betweengo.com/2010/03/28/twitter-weekly-updates-for-2010-03-28/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-03-28'>Twitter Weekly Updates for 2010-03-28</a></li>
<li><a href='http://betweengo.com/2009/12/20/twitter-weekly-updates-for-2009-12-20/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2009-12-20'>Twitter Weekly Updates for 2009-12-20</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Clear Text On Input Field On Click | ErumMunir.com. Sometimes JavaScript is just fun. <a href="http://bit.ly/c6D7cR" rel="nofollow">http://bit.ly/c6D7cR</a> <a href="http://twitter.com/betweengo/statuses/11364889513" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://betweengo.com/2010/03/07/twitter-weekly-updates-for-2010-03-07/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-03-07'>Twitter Weekly Updates for 2010-03-07</a></li>
<li><a href='http://betweengo.com/2010/03/28/twitter-weekly-updates-for-2010-03-28/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-03-28'>Twitter Weekly Updates for 2010-03-28</a></li>
<li><a href='http://betweengo.com/2009/12/20/twitter-weekly-updates-for-2009-12-20/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2009-12-20'>Twitter Weekly Updates for 2009-12-20</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/M28ne1OLsESyhZfcFA3pNQizW0M/0/da"><img src="http://feedads.g.doubleclick.net/~a/M28ne1OLsESyhZfcFA3pNQizW0M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/M28ne1OLsESyhZfcFA3pNQizW0M/1/da"><img src="http://feedads.g.doubleclick.net/~a/M28ne1OLsESyhZfcFA3pNQizW0M/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/betweengo?a=yDiPN8FO0kw:n-RRFbRy0MU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/betweengo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=yDiPN8FO0kw:n-RRFbRy0MU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/betweengo?i=yDiPN8FO0kw:n-RRFbRy0MU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=yDiPN8FO0kw:n-RRFbRy0MU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/betweengo?i=yDiPN8FO0kw:n-RRFbRy0MU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=yDiPN8FO0kw:n-RRFbRy0MU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/betweengo?i=yDiPN8FO0kw:n-RRFbRy0MU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=yDiPN8FO0kw:n-RRFbRy0MU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/betweengo?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=yDiPN8FO0kw:n-RRFbRy0MU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/betweengo?i=yDiPN8FO0kw:n-RRFbRy0MU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=yDiPN8FO0kw:n-RRFbRy0MU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/betweengo?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/betweengo/~4/yDiPN8FO0kw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://betweengo.com/2010/04/04/twitter-weekly-updates-for-2010-04-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://betweengo.com/2010/04/04/twitter-weekly-updates-for-2010-04-04/</feedburner:origLink></item>
		<item>
		<title>Twitter Weekly Updates for 2010-03-28</title>
		<link>http://feedproxy.google.com/~r/betweengo/~3/AgJd2WfoHvk/</link>
		<comments>http://betweengo.com/2010/03/28/twitter-weekly-updates-for-2010-03-28/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 14:00:00 +0000</pubDate>
		<dc:creator>Frank Kim</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://betweengo.com/2010/03/28/twitter-weekly-updates-for-2010-03-28/</guid>
		<description><![CDATA[
Set ATG Property And Popup Window After Clicking on Link. There&#39;s the wrong way, the brute force way and the right way. http://bit.ly/9H6P0p #



Related posts:Twitter Weekly Updates for 2010-03-07
Twitter Weekly Updates for 2010-04-04
Twitter Weekly Updates for 2009-11-29



Related posts:<ol><li><a href='http://betweengo.com/2010/03/07/twitter-weekly-updates-for-2010-03-07/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-03-07'>Twitter Weekly Updates for 2010-03-07</a></li>
<li><a href='http://betweengo.com/2010/04/04/twitter-weekly-updates-for-2010-04-04/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-04-04'>Twitter Weekly Updates for 2010-04-04</a></li>
<li><a href='http://betweengo.com/2009/11/29/twitter-weekly-updates-for-2009-11-29/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2009-11-29'>Twitter Weekly Updates for 2009-11-29</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Set ATG Property And Popup Window After Clicking on Link. There&#39;s the wrong way, the brute force way and the right way. <a href="http://bit.ly/9H6P0p" rel="nofollow">http://bit.ly/9H6P0p</a> <a href="http://twitter.com/betweengo/statuses/11116715382" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://betweengo.com/2010/03/07/twitter-weekly-updates-for-2010-03-07/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-03-07'>Twitter Weekly Updates for 2010-03-07</a></li>
<li><a href='http://betweengo.com/2010/04/04/twitter-weekly-updates-for-2010-04-04/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-04-04'>Twitter Weekly Updates for 2010-04-04</a></li>
<li><a href='http://betweengo.com/2009/11/29/twitter-weekly-updates-for-2009-11-29/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2009-11-29'>Twitter Weekly Updates for 2009-11-29</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/x4jBYkonlxytnYmaWP699y86aqs/0/da"><img src="http://feedads.g.doubleclick.net/~a/x4jBYkonlxytnYmaWP699y86aqs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/x4jBYkonlxytnYmaWP699y86aqs/1/da"><img src="http://feedads.g.doubleclick.net/~a/x4jBYkonlxytnYmaWP699y86aqs/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/betweengo?a=AgJd2WfoHvk:8_qikkkxFpo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/betweengo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=AgJd2WfoHvk:8_qikkkxFpo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/betweengo?i=AgJd2WfoHvk:8_qikkkxFpo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=AgJd2WfoHvk:8_qikkkxFpo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/betweengo?i=AgJd2WfoHvk:8_qikkkxFpo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=AgJd2WfoHvk:8_qikkkxFpo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/betweengo?i=AgJd2WfoHvk:8_qikkkxFpo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=AgJd2WfoHvk:8_qikkkxFpo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/betweengo?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=AgJd2WfoHvk:8_qikkkxFpo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/betweengo?i=AgJd2WfoHvk:8_qikkkxFpo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=AgJd2WfoHvk:8_qikkkxFpo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/betweengo?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/betweengo/~4/AgJd2WfoHvk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://betweengo.com/2010/03/28/twitter-weekly-updates-for-2010-03-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://betweengo.com/2010/03/28/twitter-weekly-updates-for-2010-03-28/</feedburner:origLink></item>
		<item>
		<title>Set ATG Property And Popup Window After Clicking on Link</title>
		<link>http://feedproxy.google.com/~r/betweengo/~3/eNEXgrG1C1I/</link>
		<comments>http://betweengo.com/2010/03/26/set-atg-property-and-popup-window-after-clicking-on-link/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 23:55:21 +0000</pubDate>
		<dc:creator>Frank Kim</dc:creator>
				<category><![CDATA[Page Development]]></category>
		<category><![CDATA[dsp]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://betweengo.com/2010/03/26/set-atg-property-and-popup-window-after-clicking-on-link/</guid>
		<description><![CDATA[la cuarta ventana by bachmont&#160;
Sometimes when you click on a link in an ATG JSP/DSP page you want a property of an ATG component to be set as well.&#160; For example:
&#60;dsp:a href=&#34;foo.jsp&#34;&#62;Foo
  &#60;dsp:property bean=&#34;BarFormHandler.baz&#34; paramvalue=&#34;index&#34;/&#62;
&#60;/dsp:a&#62;
What gets tricky is if you also want a popup window to display the contents of this link.
The Wrong Way
I [...]


Related posts:<ol><li><a href='http://betweengo.com/2007/07/20/submitting-an-atg-form-using-a-text-link/' rel='bookmark' title='Permanent Link: Submitting an ATG Form Using a Text Link'>Submitting an ATG Form Using a Text Link</a></li>
<li><a href='http://betweengo.com/2009/08/31/how-to-set-array-property-in-atg-form/' rel='bookmark' title='Permanent Link: How to Set an Array Property in an ATG Form'>How to Set an Array Property in an ATG Form</a></li>
<li><a href='http://betweengo.com/2009/09/03/the-strangely-behaved-atg-textarea-tag/' rel='bookmark' title='Permanent Link: The Strangely Behaved ATG textarea Tag'>The Strangely Behaved ATG textarea Tag</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.flickr.com/photos/bachmont/2808616510/"><img title="la cuarta ventana on Flickr" style="display: block; float: none; margin-left: auto; margin-right: auto" alt="la cuarta ventana on Flickr" src="http://farm4.static.flickr.com/3007/2808616510_51933a7e86.jpg" /></a><a title="la cuarta ventana on Flickr" href="http://www.flickr.com/photos/bachmont/2808616510/">la cuarta ventana</a> by <a title="Flickr: bachmont&#39;s Photostream" href="http://www.flickr.com/photos/bachmont/">bachmont</a>&#160;</p>
<p>Sometimes when you click on a link in an ATG JSP/DSP page you want a property of an ATG component to be set as well.&#160; For example:</p>
<pre>&lt;dsp:a href=&quot;foo.jsp&quot;&gt;Foo
  &lt;dsp:property bean=&quot;BarFormHandler.baz&quot; paramvalue=&quot;index&quot;/&gt;
&lt;/dsp:a&gt;</pre>
<p>What gets tricky is if you also want a popup window to display the contents of this link.</p>
<p><strong>The Wrong Way</strong></p>
<p>I tried adapting the instructions from the tutorial <a title="Popup Windows | open new customised windows with JavaScript" href="http://www.yourhtmlsource.com/javascript/popupwindows.html">Popup Windows | open new customised windows with JavaScript</a>.</p>
<pre>&lt;dsp:a href=&quot;javascript:poptastic('foo.jsp');&quot;&gt;Foo
  &lt;dsp:property bean=&quot;BarFormHandler.baz&quot; paramvalue=&quot;index&quot;/&gt;
&lt;/dsp:a&gt;</pre>
<p>This does not work, i.e. the setter for baz in BarFormHandler is never called.</p>
<p><strong>The Brute Force Way</strong></p>
<p>I then reverted to the original DSP and looked at the outputted HTML.&#160; Based on that I updated the DSP like this.</p>
<pre>&lt;% atg.servlet.DynamoHttpServletRequest dreq = atg.servlet.ServletUtil.getCurrentRequest(); %&gt;
&lt;a href=&quot;javascript:poptastic('foo.jsp?_DARGS=/betweengo/test.jsp_AF&amp;_dynSessConf=&lt;%= dreq.getSessionConfirmationNumber() %&gt;&amp;_D%3A/betweengo/BarFormHandler.baz=+&amp;/betweengo/BarFormHandler.baz=&lt;dsp:valueof param=&quot;index&quot; /&gt;');&quot;&gt;Foo&lt;/a&gt;</pre>
<p>This works but is grotesque.</p>
<p><strong>The Good Idea That Did Not Work</strong></p>
<p>Then I realized I could just set a parameter in the URL and have the form handler use the value to set the property.</p>
<pre>&lt;a href=&quot;javascript:poptastic('foo.jsp?index=&lt;dsp:valueof param=&quot;index&quot; /&gt;');&quot;&gt;Foo&lt;/a&gt;</pre>
<p>And in BarFormHandler</p>
<pre>public boolean beforeSet(DynamoHttpServletRequest req,
            DynamoHttpServletResponse res) throws DropletFormException {

  String indexParam = request.getParameter(&quot;index&quot;);
  setIndex(Integer.parseInt(indexParam));

  return super.beforeSet(request, response);
}</pre>
<p>This did not work plus I did not really like it because now I have a beforeSet method that is called for every single request.</p>
<p><strong>The Winner</strong></p>
<p>I then realized I did not read the tutorial <a title="Popup Windows | open new customised windows with JavaScript" href="http://www.yourhtmlsource.com/javascript/popupwindows.html">Popup Windows | open new customised windows with JavaScript</a> carefully.&#160; There is a more elegant way to call the JavaScript which degrades gracefully for browsers that don’t support JavaScript.</p>
<pre>&lt;dsp:a href=&quot;foo.jsp&quot; onclick=&quot;poptastic(this.href);return false;&quot;&gt;Foo
  &lt;dsp:property bean=&quot;BarFormHandler.baz&quot; paramvalue=&quot;index&quot;/&gt;
&lt;/dsp:a&gt;</pre>
<p>This works, is elegant and requires just adding the onclick attribute to the original DSP.</p>


<p>Related posts:<ol><li><a href='http://betweengo.com/2007/07/20/submitting-an-atg-form-using-a-text-link/' rel='bookmark' title='Permanent Link: Submitting an ATG Form Using a Text Link'>Submitting an ATG Form Using a Text Link</a></li>
<li><a href='http://betweengo.com/2009/08/31/how-to-set-array-property-in-atg-form/' rel='bookmark' title='Permanent Link: How to Set an Array Property in an ATG Form'>How to Set an Array Property in an ATG Form</a></li>
<li><a href='http://betweengo.com/2009/09/03/the-strangely-behaved-atg-textarea-tag/' rel='bookmark' title='Permanent Link: The Strangely Behaved ATG textarea Tag'>The Strangely Behaved ATG textarea Tag</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/5u2Ax2oxtRTVD5zE306mdQMKNcE/0/da"><img src="http://feedads.g.doubleclick.net/~a/5u2Ax2oxtRTVD5zE306mdQMKNcE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/5u2Ax2oxtRTVD5zE306mdQMKNcE/1/da"><img src="http://feedads.g.doubleclick.net/~a/5u2Ax2oxtRTVD5zE306mdQMKNcE/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/betweengo?a=eNEXgrG1C1I:oXfyxOFE4HQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/betweengo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eNEXgrG1C1I:oXfyxOFE4HQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/betweengo?i=eNEXgrG1C1I:oXfyxOFE4HQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eNEXgrG1C1I:oXfyxOFE4HQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/betweengo?i=eNEXgrG1C1I:oXfyxOFE4HQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eNEXgrG1C1I:oXfyxOFE4HQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/betweengo?i=eNEXgrG1C1I:oXfyxOFE4HQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eNEXgrG1C1I:oXfyxOFE4HQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/betweengo?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eNEXgrG1C1I:oXfyxOFE4HQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/betweengo?i=eNEXgrG1C1I:oXfyxOFE4HQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=eNEXgrG1C1I:oXfyxOFE4HQ:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/betweengo?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/betweengo/~4/eNEXgrG1C1I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://betweengo.com/2010/03/26/set-atg-property-and-popup-window-after-clicking-on-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://betweengo.com/2010/03/26/set-atg-property-and-popup-window-after-clicking-on-link/</feedburner:origLink></item>
		<item>
		<title>Twitter Weekly Updates for 2010-03-07</title>
		<link>http://feedproxy.google.com/~r/betweengo/~3/TGqDzEe0VX0/</link>
		<comments>http://betweengo.com/2010/03/07/twitter-weekly-updates-for-2010-03-07/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 13:00:00 +0000</pubDate>
		<dc:creator>Frank Kim</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://betweengo.com/2010/03/07/twitter-weekly-updates-for-2010-03-07/</guid>
		<description><![CDATA[
Ignore Files and Directories in Subversion. A little bit of a pain but it works. http://bit.ly/99GLxk #
How to Achieve Painless Registration. Getting people to register is always bedeviling for web application developers. http://bit.ly/9AJqmg #



Related posts:Ignore Files and Directories in Subversion
Twitter Weekly Updates for 2010-03-28
Twitter Weekly Updates for 2010-04-04



Related posts:<ol><li><a href='http://betweengo.com/2010/03/01/ignore-files-and-directories-in-subversion/' rel='bookmark' title='Permanent Link: Ignore Files and Directories in Subversion'>Ignore Files and Directories in Subversion</a></li>
<li><a href='http://betweengo.com/2010/03/28/twitter-weekly-updates-for-2010-03-28/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-03-28'>Twitter Weekly Updates for 2010-03-28</a></li>
<li><a href='http://betweengo.com/2010/04/04/twitter-weekly-updates-for-2010-04-04/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-04-04'>Twitter Weekly Updates for 2010-04-04</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Ignore Files and Directories in Subversion. A little bit of a pain but it works. <a href="http://bit.ly/99GLxk" rel="nofollow">http://bit.ly/99GLxk</a> <a href="http://twitter.com/betweengo/statuses/9880210106" class="aktt_tweet_time">#</a></li>
<li>How to Achieve Painless Registration. Getting people to register is always bedeviling for web application developers. <a href="http://bit.ly/9AJqmg" rel="nofollow">http://bit.ly/9AJqmg</a> <a href="http://twitter.com/betweengo/statuses/9890502173" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://betweengo.com/2010/03/01/ignore-files-and-directories-in-subversion/' rel='bookmark' title='Permanent Link: Ignore Files and Directories in Subversion'>Ignore Files and Directories in Subversion</a></li>
<li><a href='http://betweengo.com/2010/03/28/twitter-weekly-updates-for-2010-03-28/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-03-28'>Twitter Weekly Updates for 2010-03-28</a></li>
<li><a href='http://betweengo.com/2010/04/04/twitter-weekly-updates-for-2010-04-04/' rel='bookmark' title='Permanent Link: Twitter Weekly Updates for 2010-04-04'>Twitter Weekly Updates for 2010-04-04</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/fmpVmWu7uwOGF49ddnk4NfGOBfw/0/da"><img src="http://feedads.g.doubleclick.net/~a/fmpVmWu7uwOGF49ddnk4NfGOBfw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/fmpVmWu7uwOGF49ddnk4NfGOBfw/1/da"><img src="http://feedads.g.doubleclick.net/~a/fmpVmWu7uwOGF49ddnk4NfGOBfw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/betweengo?a=TGqDzEe0VX0:CZYoCl_ZrHw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/betweengo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=TGqDzEe0VX0:CZYoCl_ZrHw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/betweengo?i=TGqDzEe0VX0:CZYoCl_ZrHw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=TGqDzEe0VX0:CZYoCl_ZrHw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/betweengo?i=TGqDzEe0VX0:CZYoCl_ZrHw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=TGqDzEe0VX0:CZYoCl_ZrHw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/betweengo?i=TGqDzEe0VX0:CZYoCl_ZrHw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=TGqDzEe0VX0:CZYoCl_ZrHw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/betweengo?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=TGqDzEe0VX0:CZYoCl_ZrHw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/betweengo?i=TGqDzEe0VX0:CZYoCl_ZrHw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=TGqDzEe0VX0:CZYoCl_ZrHw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/betweengo?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/betweengo/~4/TGqDzEe0VX0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://betweengo.com/2010/03/07/twitter-weekly-updates-for-2010-03-07/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://betweengo.com/2010/03/07/twitter-weekly-updates-for-2010-03-07/</feedburner:origLink></item>
		<item>
		<title>Ignore Files and Directories in Subversion</title>
		<link>http://feedproxy.google.com/~r/betweengo/~3/_LWsXeOQsOk/</link>
		<comments>http://betweengo.com/2010/03/01/ignore-files-and-directories-in-subversion/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 21:46:00 +0000</pubDate>
		<dc:creator>Frank Kim</dc:creator>
				<category><![CDATA[Subversion]]></category>
		<category><![CDATA[svn:ignore]]></category>

		<guid isPermaLink="false">http://betweengo.com/2010/03/01/ignore-files-and-directories-in-subversion/</guid>
		<description><![CDATA[snubbed by Rennett Stowe
In the course of a project there are always files and directories that you don’t want to check in but which Subversion complains it doesn’t know anything about them.&#160; So it makes sense to tell Subversion to ignore them, in other words, keep quiet.  
The mechanism for doing this works okay [...]


Related posts:<ol><li><a href='http://betweengo.com/2005/09/06/newline-problems-with-subversion/' rel='bookmark' title='Permanent Link: Newline problems with Subversion'>Newline problems with Subversion</a></li>
<li><a href='http://betweengo.com/2005/10/24/subversion-on-dreamhost/' rel='bookmark' title='Permanent Link: Subversion on Dreamhost'>Subversion on Dreamhost</a></li>
<li><a href='http://betweengo.com/2007/12/18/subversion-branching/' rel='bookmark' title='Permanent Link: Subversion Branching'>Subversion Branching</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p align="center"><a title="snubber on Flickr" href="http://www.flickr.com/photos/tomsaint/2707833200/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://farm4.static.flickr.com/3105/2707833200_a94ba3424c.jpg" /></a><a title="snubbed on Flickr" href="http://www.flickr.com/photos/tomsaint/2707833200/">snubbed</a> by <a title="Flickr: Rennett Stowe&#39;s Photostream" href="http://www.flickr.com/photos/tomsaint/">Rennett Stowe</a></p>
<p>In the course of a project there are always files and directories that you don’t want to check in but which Subversion complains it doesn’t know anything about them.&#160; So it makes sense to tell Subversion to ignore them, in other words, keep quiet. <img src='http://betweengo.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>The mechanism for doing this works okay but I wouldn’t say it’s perfect.</p>
<p>This is how I do it one.</p>
<ol>
<li>Go to the directory where want to ignore a file or subdirectory. </li>
<li>Issue the command
<pre>svn propedit svn:ignore .</pre>
</li>
<li>Your editor then will be launched and you can enter one line at a time those files and/or subdirectories you want to ignore.
<pre>some_file
some_directory</pre>
</li>
<li>Commit your changes.
<pre>svn commit -–depth empty</pre>
<p>Two things to notice. </p>
<ol>
<li>
<pre>--depth empty argument</pre>
<p>only commit the propedit changes </li>
<li>Committing your changes means everyone will end up ignoring these files and/or directories so make sure you are ignoring the right ones. </li>
</ol>
</li>
<li>If you don’t want to commit your changes you can revert them.
<pre>svn revert .</pre>
</li>
</ol>
<p>For further reading please see <a title="Ignore Files and Directories in Subversion" href="http://www.petefreitag.com/item/662.cfm">Ignore Files and Directories in Subversion</a>.</p>


<p>Related posts:<ol><li><a href='http://betweengo.com/2005/09/06/newline-problems-with-subversion/' rel='bookmark' title='Permanent Link: Newline problems with Subversion'>Newline problems with Subversion</a></li>
<li><a href='http://betweengo.com/2005/10/24/subversion-on-dreamhost/' rel='bookmark' title='Permanent Link: Subversion on Dreamhost'>Subversion on Dreamhost</a></li>
<li><a href='http://betweengo.com/2007/12/18/subversion-branching/' rel='bookmark' title='Permanent Link: Subversion Branching'>Subversion Branching</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/ANq1Gglx0M-6LMyY7RpOHKWSuRY/0/da"><img src="http://feedads.g.doubleclick.net/~a/ANq1Gglx0M-6LMyY7RpOHKWSuRY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ANq1Gglx0M-6LMyY7RpOHKWSuRY/1/da"><img src="http://feedads.g.doubleclick.net/~a/ANq1Gglx0M-6LMyY7RpOHKWSuRY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/betweengo?a=_LWsXeOQsOk:fzzL5aQUNCA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/betweengo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=_LWsXeOQsOk:fzzL5aQUNCA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/betweengo?i=_LWsXeOQsOk:fzzL5aQUNCA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=_LWsXeOQsOk:fzzL5aQUNCA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/betweengo?i=_LWsXeOQsOk:fzzL5aQUNCA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=_LWsXeOQsOk:fzzL5aQUNCA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/betweengo?i=_LWsXeOQsOk:fzzL5aQUNCA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=_LWsXeOQsOk:fzzL5aQUNCA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/betweengo?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=_LWsXeOQsOk:fzzL5aQUNCA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/betweengo?i=_LWsXeOQsOk:fzzL5aQUNCA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=_LWsXeOQsOk:fzzL5aQUNCA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/betweengo?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/betweengo/~4/_LWsXeOQsOk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://betweengo.com/2010/03/01/ignore-files-and-directories-in-subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://betweengo.com/2010/03/01/ignore-files-and-directories-in-subversion/</feedburner:origLink></item>
		<item>
		<title>Tweets for 2010-01 and 2010-02</title>
		<link>http://feedproxy.google.com/~r/betweengo/~3/V4vn6aQNiN0/</link>
		<comments>http://betweengo.com/2010/02/28/twitter-2010-01-and-2010-02/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 13:00:00 +0000</pubDate>
		<dc:creator>Frank Kim</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[ATG]]></category>
		<category><![CDATA[comcast]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JBoss]]></category>
		<category><![CDATA[JSTL]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[websphere]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://betweengo.com/2010/02/28/twitter-weekly-updates-for-2010-02-28/</guid>
		<description><![CDATA[Ruby on Rails

Numeric data types and zerofill. Explains what all those int(11) columns are in your Ruby on Rails tables. http://bit.ly/9Tcf7q # 
undefined local variable or method &#34;acts_as_list&#34;? &#8211; Ruby Forum. Do ruby script/plugin install acts_as_list http://bit.ly/9kFWbG # 
ruby on rails : adding child records to an existing parent without visiting the parent &#8211; Stack [...]


Related posts:<ol><li><a href='http://betweengo.com/2008/02/11/ruby-no-such-file-to-load-ubygems-loaderror/' rel='bookmark' title='Permanent Link: ruby: no such file to load &#8212; ubygems (LoadError)'>ruby: no such file to load &#8212; ubygems (LoadError)</a></li>
<li><a href='http://betweengo.com/2010/01/25/configuring-atg-to-send-email-via-comcast-smtp/' rel='bookmark' title='Permanent Link: Configuring ATG to Send Email via Comcast SMTP'>Configuring ATG to Send Email via Comcast SMTP</a></li>
<li><a href='http://betweengo.com/2010/04/26/debugging-websphere-applications-with-ibm-rational-application-developer/' rel='bookmark' title='Permanent Link: Debugging WebSphere Applications with IBM Rational Application Developer'>Debugging WebSphere Applications with IBM Rational Application Developer</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Ruby on Rails</p>
<ul class="aktt_tweet_digest">
<li>Numeric data types and zerofill. Explains what all those int(11) columns are in your Ruby on Rails tables. <a href="http://bit.ly/9Tcf7q" rel="nofollow">http://bit.ly/9Tcf7q</a> <a class="aktt_tweet_time" href="http://twitter.com/betweengo/statuses/9558231269">#</a> </li>
<li>undefined local variable or method &quot;acts_as_list&quot;? &#8211; Ruby Forum. Do ruby script/plugin install acts_as_list <a href="http://bit.ly/9kFWbG" rel="nofollow">http://bit.ly/9kFWbG</a> <a class="aktt_tweet_time" href="http://twitter.com/betweengo/statuses/9558865402">#</a> </li>
<li>ruby on rails : adding child records to an existing parent without visiting the parent &#8211; Stack Overflow <a href="http://bit.ly/cQiGSP" rel="nofollow">http://bit.ly/cQiGSP</a> <a class="aktt_tweet_time" href="http://twitter.com/betweengo/statuses/9562021893">#</a> </li>
<li>Multi-Table Inheritance in Rails – When two tables are one… This is not easy and I wish it was. <a href="http://bit.ly/9fbzgk">http://bit.ly/9fbzgk</a> <a href="http://twitter.com/betweengo/statuses/8922972287">#</a> </li>
<li>has_many :through – count vs length vs size. Use count if u don&#8217;t want to load the contents of association into memory. <a href="http://bit.ly/dtqXe1">http://bit.ly/dtqXe1</a> <a href="http://twitter.com/betweengo/statuses/9089128438">#</a> </li>
<li>A gentle reminder about pluralizations. config/initializers/inflections.rb to customize pluralizations in Ruby on Rails <a href="http://bit.ly/bN9GO5">http://bit.ly/bN9GO5</a> <a href="http://twitter.com/betweengo/statuses/8474252680">#</a> </li>
<li>Ruby on Rails – Rails Migrations Cheatsheet – Dizzy. Pretty helpful. <a href="http://bit.ly/9wNvRx">http://bit.ly/9wNvRx</a> <a href="http://twitter.com/betweengo/statuses/8502200984">#</a> </li>
<li>RailsGuides Migrations. Nice guide, especially about explaining the naming convention which I don&#8217;t like. <a href="http://bit.ly/cjZ7aB">http://bit.ly/cjZ7aB</a> <a href="http://twitter.com/betweengo/statuses/8502361182">#</a> </li>
</ul>
<p>ATG</p>
<ul>
<li>Configuring ATG to Send Email via Comcast SMTP &#8211; betweenGo. Configuring your ATG app to use your ISP’s SMTP server. <a href="http://bit.ly/7M5bhx">http://bit.ly/7M5bhx</a> <a href="http://twitter.com/betweengo/statuses/8195074591">#</a></li>
<li>Enabling non-XA Resources in JBoss 4.2 with ATG &#8211; betweenGo. <a href="http://bit.ly/aDN3Po">http://bit.ly/aDN3Po</a> <a href="http://twitter.com/betweengo/statuses/8375306628">#</a></li>
<li>Combining XML in ATG – betweenGo. Combining XML files not as straight-forward as w/ properties files but more flexible. <a href="http://bit.ly/8kVwvA">http://bit.ly/8kVwvA</a> <a href="http://twitter.com/betweengo/statuses/7680584859">Jan 12 12:00 PM</a></li>
</ul>
<p>Eclipse</p>
<ul>
<li>Debugging Applications in IBM Rational Application Developer. Page 12 for how to set up server for debugging. <a href="http://bit.ly/aaYUHb">http://bit.ly/aaYUHb</a> <a href="http://twitter.com/betweengo/statuses/9087004023">#</a> </li>
</ul>
<p>JavaScript</p>
<ul>
<li>How can I submit a form along with some parameters using JavaScript? (JSF forum at JavaRanch). Answer #<a href="http://search.twitter.com/search?q=%233">3</a> was helpful. <a href="http://bit.ly/b17ymm">http://bit.ly/b17ymm</a> <a href="http://twitter.com/betweengo/statuses/8604162846">#</a> </li>
</ul>
<p>JSP</p>
<ul>
<li>Testing Which Page Loaded your JSP Page Fragment – betweenGo. Simple enough to do w/ JSTL but I always forget how. <img alt=":-)" src="http://betweengo.com/wp-includes/images/smilies/icon_smile.gif" /> <a href="http://bit.ly/cEh7IZ">http://bit.ly/cEh7IZ</a> <a href="http://twitter.com/betweengo/statuses/8810652592">#</a> </li>
</ul>
<p>Miscellaneous</p>
<ul>
<li>Cygwin 1.7.x, mounts and /etc/fstab – betweenGo. Mounts are no longer saved from session to session in Cygwin 1.7. <a href="http://bit.ly/bmaYEu">http://bit.ly/bmaYEu</a> <a href="http://twitter.com/betweengo/statuses/8858855916">#</a> </li>
<li>Git in 5 Minutes <a href="http://bit.ly/bSt3dd">http://bit.ly/bSt3dd</a> and Git for the lazy – Spheriki <a href="http://bit.ly/aefD17">http://bit.ly/aefD17</a> <a href="http://twitter.com/betweengo/statuses/8530933290">#</a> </li>
<li>The Thing About Git. Nice article describing how flexible Git is, especially compared to SVN. I may never use SVN again <a href="http://bit.ly/bD0tuS">http://bit.ly/bD0tuS</a> <a href="http://twitter.com/betweengo/statuses/8531003383">#</a> </li>
<li>I use DreamHost and am shamelessly plugging them both for a referral and to try to win an iPad. Honestly they&#8217;re great. <a href="http://bit.ly/ctYv3Z">http://bit.ly/ctYv3Z</a> <a href="http://twitter.com/betweengo/statuses/8723896222">#</a> </li>
</ul>


<p>Related posts:<ol><li><a href='http://betweengo.com/2008/02/11/ruby-no-such-file-to-load-ubygems-loaderror/' rel='bookmark' title='Permanent Link: ruby: no such file to load &#8212; ubygems (LoadError)'>ruby: no such file to load &#8212; ubygems (LoadError)</a></li>
<li><a href='http://betweengo.com/2010/01/25/configuring-atg-to-send-email-via-comcast-smtp/' rel='bookmark' title='Permanent Link: Configuring ATG to Send Email via Comcast SMTP'>Configuring ATG to Send Email via Comcast SMTP</a></li>
<li><a href='http://betweengo.com/2010/04/26/debugging-websphere-applications-with-ibm-rational-application-developer/' rel='bookmark' title='Permanent Link: Debugging WebSphere Applications with IBM Rational Application Developer'>Debugging WebSphere Applications with IBM Rational Application Developer</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/YsUrW0MNeH47vpPLw3KgUoMig5Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/YsUrW0MNeH47vpPLw3KgUoMig5Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YsUrW0MNeH47vpPLw3KgUoMig5Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/YsUrW0MNeH47vpPLw3KgUoMig5Q/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/betweengo?a=V4vn6aQNiN0:CYASPhdKYgs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/betweengo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=V4vn6aQNiN0:CYASPhdKYgs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/betweengo?i=V4vn6aQNiN0:CYASPhdKYgs:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=V4vn6aQNiN0:CYASPhdKYgs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/betweengo?i=V4vn6aQNiN0:CYASPhdKYgs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=V4vn6aQNiN0:CYASPhdKYgs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/betweengo?i=V4vn6aQNiN0:CYASPhdKYgs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=V4vn6aQNiN0:CYASPhdKYgs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/betweengo?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=V4vn6aQNiN0:CYASPhdKYgs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/betweengo?i=V4vn6aQNiN0:CYASPhdKYgs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=V4vn6aQNiN0:CYASPhdKYgs:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/betweengo?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/betweengo/~4/V4vn6aQNiN0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://betweengo.com/2010/02/28/twitter-2010-01-and-2010-02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://betweengo.com/2010/02/28/twitter-2010-01-and-2010-02/</feedburner:origLink></item>
		<item>
		<title>Cygwin 1.7.x, mounts and /etc/fstab</title>
		<link>http://feedproxy.google.com/~r/betweengo/~3/v4xw9yzCN0I/</link>
		<comments>http://betweengo.com/2010/02/08/cygwin-1-7-x-mounts-and-etcfstab/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 15:17:12 +0000</pubDate>
		<dc:creator>Frank Kim</dc:creator>
				<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[fstab]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://betweengo.com/2010/02/08/cygwin-1-7-x-mounts-and-etcfstab/</guid>
		<description><![CDATA[Sunrise Heron Silhouette by Brandon Godfrey
A few days I installed Cygwin on a new laptop.  I saw the warnings that Cygwin 1.7.x is new but I chose to ignore it for now.
I soon noticed that Cygwin was not remembering my mounts.  After reading this on the Cygwin front page I realized I needed to do [...]


Related posts:<ol><li><a href='http://betweengo.com/2009/01/29/moving-your-cygwin-installation/' rel='bookmark' title='Permanent Link: Moving Your Cygwin Installation'>Moving Your Cygwin Installation</a></li>
<li><a href='http://betweengo.com/2007/03/07/unable-to-start-sh-from-windows-command-prompt/' rel='bookmark' title='Permanent Link: Unable to start Cygwin shell from Windows command prompt'>Unable to start Cygwin shell from Windows command prompt</a></li>
<li><a href='http://betweengo.com/2008/08/08/cygwin-bash-scripts-and-java/' rel='bookmark' title='Permanent Link: Cygwin Bash Scripts and Java'>Cygwin Bash Scripts and Java</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.flickr.com/photos/vicfan/3915841773/"><img style="display: block; float: none; margin-left: auto; margin-right: auto" title="Sunrise Heron Silhouette on Flickr" src="http://farm3.static.flickr.com/2521/3915841773_a960e4904e.jpg" alt="Sunrise Heron Silhouette on Flickr" /></a><a title="Sunrise Heron Silhouette on Flickr" href="http://www.flickr.com/photos/vicfan/3915841773/">Sunrise Heron Silhouette</a> by <a title="Flickr: Brandon Godfrey's Photostream" href="http://www.flickr.com/photos/vicfan/">Brandon Godfrey</a></p>
<p>A few days I installed Cygwin on a new laptop.  I saw the warnings that Cygwin 1.7.x is new but I chose to ignore it for now.</p>
<p>I soon noticed that Cygwin was not remembering my mounts.  After reading this on the <a title="Cygwin Information and Installation" href="http://www.cygwin.com/">Cygwin front page</a> I realized I needed to do some more research.</p>
<blockquote><p>… the mount point storage has been moved out of the registry into files. User mount points are <strong>NOT</strong> copied into the new user-specific /etc/fstab.d/$USER file. Rather, every user has to call the <strong>/bin/copy-user-registry-fstab</strong> shell script once after the update.</p></blockquote>
<p>Next I looked at the <tt>/etc/fstab</tt> file which pointed me to the <a title="The Cygwin Mount Table - Chapter 3. Using Cygwin" href="http://cygwin.com/cygwin-ug-net/using.html#mount-table">Cygwin Mount Table documentation</a>.  Using this documentation I did the following steps so that my mounts are always remembered.</p>
<ol>
<li>Manually mounted the C: drive.
<pre>$ mount c: /c</pre>
</li>
<li>Ran mount to determine what to add to my <tt>/etc/fstab</tt>.
<pre>$ mount
C:/cygwin/bin on /usr/bin type ntfs (binary,auto)
C:/cygwin/lib on /usr/lib type ntfs (binary,auto)
C:/cygwin on / type ntfs (binary,auto)
C: on /c type ntfs (binary,user)</pre>
</li>
<li>Based on the output of mount I added this line to my <tt>/etc/fstab</tt>.
<pre>C: /c ntfs binary,user</pre>
</li>
<li>Closed the Cygwin shell, opened a new one and verified the C: drive was properly mounted.</li>
</ol>
<p><strong>Update 06-15-2010:</strong> I should have just followed Cygwin&#8217;s directions and ran /bin/copy-user-registry-fstab.</p>


<p>Related posts:<ol><li><a href='http://betweengo.com/2009/01/29/moving-your-cygwin-installation/' rel='bookmark' title='Permanent Link: Moving Your Cygwin Installation'>Moving Your Cygwin Installation</a></li>
<li><a href='http://betweengo.com/2007/03/07/unable-to-start-sh-from-windows-command-prompt/' rel='bookmark' title='Permanent Link: Unable to start Cygwin shell from Windows command prompt'>Unable to start Cygwin shell from Windows command prompt</a></li>
<li><a href='http://betweengo.com/2008/08/08/cygwin-bash-scripts-and-java/' rel='bookmark' title='Permanent Link: Cygwin Bash Scripts and Java'>Cygwin Bash Scripts and Java</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/O1hNtqOzlHIdQwlljbdUc8ZTF9Y/0/da"><img src="http://feedads.g.doubleclick.net/~a/O1hNtqOzlHIdQwlljbdUc8ZTF9Y/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/O1hNtqOzlHIdQwlljbdUc8ZTF9Y/1/da"><img src="http://feedads.g.doubleclick.net/~a/O1hNtqOzlHIdQwlljbdUc8ZTF9Y/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/betweengo?a=v4xw9yzCN0I:b2KrdqJ2RtA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/betweengo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=v4xw9yzCN0I:b2KrdqJ2RtA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/betweengo?i=v4xw9yzCN0I:b2KrdqJ2RtA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=v4xw9yzCN0I:b2KrdqJ2RtA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/betweengo?i=v4xw9yzCN0I:b2KrdqJ2RtA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=v4xw9yzCN0I:b2KrdqJ2RtA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/betweengo?i=v4xw9yzCN0I:b2KrdqJ2RtA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=v4xw9yzCN0I:b2KrdqJ2RtA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/betweengo?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=v4xw9yzCN0I:b2KrdqJ2RtA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/betweengo?i=v4xw9yzCN0I:b2KrdqJ2RtA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/betweengo?a=v4xw9yzCN0I:b2KrdqJ2RtA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/betweengo?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/betweengo/~4/v4xw9yzCN0I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://betweengo.com/2010/02/08/cygwin-1-7-x-mounts-and-etcfstab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://betweengo.com/2010/02/08/cygwin-1-7-x-mounts-and-etcfstab/</feedburner:origLink></item>
	</channel>
</rss><!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
