<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Integration Points &#187; hacks</title>
	<atom:link href="http://dmgorman.wordpress.com/category/hacks/feed/" rel="self" type="application/rss+xml" />
	<link>http://dmgorman.wordpress.com</link>
	<description>Extending Corporate Data ...</description>
	<lastBuildDate>Wed, 16 Dec 2009 16:27:47 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dmgorman.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/09ff9c9336e6ecd7cc49045a62d1aab3?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Integration Points &#187; hacks</title>
		<link>http://dmgorman.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dmgorman.wordpress.com/osd.xml" title="Integration Points" />
		<item>
		<title>#29 PopUp under Deltek 6.x Smart Client</title>
		<link>http://dmgorman.wordpress.com/2009/07/15/29-popup-under-deltek-6-x-smart-client/</link>
		<comments>http://dmgorman.wordpress.com/2009/07/15/29-popup-under-deltek-6-x-smart-client/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 16:46:08 +0000</pubDate>
		<dc:creator>dmgorman</dc:creator>
				<category><![CDATA[Deltek]]></category>
		<category><![CDATA[hacks]]></category>

		<guid isPermaLink="false">http://dmgorman.wordpress.com/?p=303</guid>
		<description><![CDATA[The issue is that by running a smart client an iframe or window open launches a browser window separate from the smart client which is a Windows client executable &#38; not a browser app. Since that is unavoidable using a modal window with target self tag in the head works best.  This method will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmgorman.wordpress.com&blog=2497805&post=303&subd=dmgorman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The issue is that by running a smart client an iframe or window open launches a browser window separate from the smart client which is a Windows client executable &amp; not a browser app. Since that is unavoidable using a modal window with target self tag in the head works best.  This method will however still leave the initial help window open in the smart client. </p>
<p>Add the Help Icon ? and replace the Help Text (directly via a control-V paste do not click on ellipse to launch editor) with:</p>
<pre class="brush: jscript;">
&lt;script&gt;javascript:  window.showModalDialog(&quot;http://targetpage.aspx&quot;,'_parent', &quot;dialogHeight: 200px;&quot;);&lt;/script&gt;
</pre>
<p>In your target page (html or aspx) since this is a modal window this will &#8216;correct&#8217; any postbacks from launching a new window. </p>
<pre class="brush: xml;">
&lt;HTML&gt;
                &lt;HEAD&gt;
                                &lt;base target=&quot;_self&quot; /&gt;
 ...
</pre>
<p>Put a button with a OnClick event to close this popup. The <em> window.opener=&#8217;X';window.open(&#8221;,&#8217;_parent&#8217;,&#8221;);window.close();</em>  will avoid the usual warning. </p>
<p>Credit Due on avoiding the window close warning: <a href="http://blogs.x2line.com/al/articles/350.aspx">http://blogs.x2line.com/al/articles/350.aspx<br />
</a></p>
<pre class="brush: jscript;">
					function CopyToClipboard()
					{
						document.frmVisible.txtJobNumber.focus();
						document.frmVisible.txtJobNumber.select();
						CopiedTxt = document.selection.createRange();
						CopiedTxt.execCommand(&quot;Copy&quot;);
						alert('Number has been copied. Use Control-V to paste into new project screen.');
						window.opener='X';window.open('','_parent','');window.close();
					}
</pre>
<p>cf . <a href="http://dmgorman.wordpress.com/2008/01/11/02-simple-popup-help-page/">http://dmgorman.wordpress.com/2008/01/11/02-simple-popup-help-page/ </a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmgorman.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmgorman.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmgorman.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmgorman.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmgorman.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmgorman.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmgorman.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmgorman.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmgorman.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmgorman.wordpress.com/303/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmgorman.wordpress.com&blog=2497805&post=303&subd=dmgorman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmgorman.wordpress.com/2009/07/15/29-popup-under-deltek-6-x-smart-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f40e4ba23d8f519bc9491fe6ae71f78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmgorman</media:title>
		</media:content>
	</item>
		<item>
		<title>#28 Deltek operator (agent) ID &amp; email via Workflow</title>
		<link>http://dmgorman.wordpress.com/2009/06/26/28-deltek-user-id-via-workflow/</link>
		<comments>http://dmgorman.wordpress.com/2009/06/26/28-deltek-user-id-via-workflow/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 02:39:23 +0000</pubDate>
		<dc:creator>dmgorman</dc:creator>
				<category><![CDATA[Deltek]]></category>
		<category><![CDATA[hacks]]></category>

		<guid isPermaLink="false">http://dmgorman.wordpress.com/?p=276</guid>
		<description><![CDATA[If you need to get the agent processing the workflow you can call the UDF GetVisionAuditUsername()

You can then wrap this UDF call in a SP to get something like an Email address from the EM table for email processing to the operator/agent which is something missing from Deltek&#8217;s WF options.  Sending the person doing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmgorman.wordpress.com&blog=2497805&post=276&subd=dmgorman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you need to get the agent processing the workflow you can call the UDF <strong>GetVisionAuditUsername()<br />
</strong></p>
<p>You can then wrap this UDF call in a SP to get something like an Email address from the EM table for email processing to the operator/agent which is something missing from Deltek&#8217;s WF options.  Sending the person doing the operation (agent) an email has been missing in Deltek WF  (you can send their manager an email but not the person doing the work).  At least this is what we see in 5.1 and since 6.0 is same/same we probably have the same issue there &#8211; though I have not checked there. If anyone sees otherwise please post a comment. Thanks!</p>
<p><em><br />
** Note: This will require the context provided by Deltek&#8217;s WF since the UDF uses &#8216;context_info&#8217; from master.dbo.sysprocesses **</em></p>
<pre class="brush: sql;">
Create Procedure getAgentEmail()
AS
BEGIN
	Declare @Employee as varchar(20)

	Select @Employee = [dbo].[GetVisionAuditUsername]()

	Select EM.Email
        From EM
        Where EM.Employee = Substring(@Employee,1,3)
            -- substring if needed to get proper key

         -- It would be wise to parm these values in!
         EXEC msdb..sp_send_dbmail
            @profile_name='ProfileName'
           , @recipients= @Email
           , @subject='Test message'
           , @body='This is the body of the test message'

END
</pre>
<p><strong>SQL 2008 Mail Setup</strong><br />
<a target='_blank' href="http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/">http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/  </a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmgorman.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmgorman.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmgorman.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmgorman.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmgorman.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmgorman.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmgorman.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmgorman.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmgorman.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmgorman.wordpress.com/276/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmgorman.wordpress.com&blog=2497805&post=276&subd=dmgorman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmgorman.wordpress.com/2009/06/26/28-deltek-user-id-via-workflow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f40e4ba23d8f519bc9491fe6ae71f78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmgorman</media:title>
		</media:content>
	</item>
		<item>
		<title>#09 Simple Alternate Background Row Color</title>
		<link>http://dmgorman.wordpress.com/2008/06/10/10-simple-alternate-background-row-color/</link>
		<comments>http://dmgorman.wordpress.com/2008/06/10/10-simple-alternate-background-row-color/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 18:42:48 +0000</pubDate>
		<dc:creator>dmgorman</dc:creator>
				<category><![CDATA[SQL Reporting]]></category>
		<category><![CDATA[hacks]]></category>

		<guid isPermaLink="false">http://dmgorman.wordpress.com/?p=24</guid>
		<description><![CDATA[Overwrite the row background color property with this expression.
=iif(RowNumber(Nothing) Mod 2, &#8220;WhiteSmoke&#8221;, &#8220;White&#8221;)
For old timers &#8211; this creates the Green Bar shading effect on a SQL Reporting  Services Report when applied to a detail row on a table.
I have not tried it but you can probably use the hex color values like #990000 instead of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmgorman.wordpress.com&blog=2497805&post=24&subd=dmgorman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Overwrite the row background color property with this expression.</p>
<p><strong>=iif(RowNumber(Nothing) Mod 2, &#8220;WhiteSmoke&#8221;, &#8220;White&#8221;)</strong></p>
<p>For old timers &#8211; this creates the Green Bar shading effect on a SQL Reporting  Services Report when applied to a detail row on a table.</p>
<p>I have not tried it but you can probably use the hex color values like #990000 instead of the key words (ie Maroon)</p>
<p>Credit Due:  <a title="Amazon Link" href="http://www.amazon.com/Professional-Server-2005-Reporting-Services/dp/0764584979" target="_blank">Professional SQL Server 2005 Reporting Services</a> by Turley, Bryant &#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dmgorman.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dmgorman.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmgorman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmgorman.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmgorman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmgorman.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmgorman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmgorman.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmgorman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmgorman.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmgorman.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmgorman.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmgorman.wordpress.com&blog=2497805&post=24&subd=dmgorman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmgorman.wordpress.com/2008/06/10/10-simple-alternate-background-row-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f40e4ba23d8f519bc9491fe6ae71f78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmgorman</media:title>
		</media:content>
	</item>
		<item>
		<title>#02 Simple PopUp</title>
		<link>http://dmgorman.wordpress.com/2008/01/11/02-simple-popup-help-page/</link>
		<comments>http://dmgorman.wordpress.com/2008/01/11/02-simple-popup-help-page/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 17:59:31 +0000</pubDate>
		<dc:creator>dmgorman</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[integrate pages]]></category>
		<category><![CDATA[popup]]></category>

		<guid isPermaLink="false">http://dmgorman.wordpress.com/2008/01/11/02-simple-popup-help-page/</guid>
		<description><![CDATA[On all Deltek info center pages you have &#8211; as an admin &#8211; the ability to add a help  icon and insert text.  If you put in html code in the HELP TEXT property as one line without any line breaks you can introduce a popup window that feeds data from somewhere else. Where I work [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmgorman.wordpress.com&blog=2497805&post=5&subd=dmgorman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>On all Deltek info center pages you have &#8211; as an admin &#8211; the ability to add a help <img class="alignnone size-thumbnail wp-image-7" src="http://dmgorman.files.wordpress.com/2008/04/help.png?w=16&#038;h=16" border="0" alt="" width="16" height="16" /> icon and insert text.  If you put in html code in the HELP TEXT property as one line without any line breaks you can introduce a popup window that feeds data from somewhere else. Where I work we use it do provide a job number generator using asp.net and SQL Server. The user selects some defining criteria related to their job off of some dropdowns and a transactional stored procedure grabs and formats the next available number. From this point there is some simple javascript to copy to the clipboard via a button and then to the project name field in the project info center via a simple Control-V command.</p>
<p><span style="text-decoration:underline;">Note</span>: Our Job/Project Number generator was installed prior to going to 5.0 - I understand that some of this functionality is available now &#8216;out of the box&#8217;.</p>
<p>Sample code put in help text Deltek info center screen: <em>(one line no breaks)</em></p>
<pre class="brush: xml;">
&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;iframe src=&quot;http://intranet/somepage.aspx&quot; width=500px height=500px scrolling=no /&gt;&lt;/body&gt;&lt;/html&gt;
</pre>
<p>javascript:</p>
<pre class="brush: jscript;">
&lt;script&gt;
function CopyToClipboard()
{
document.frmVisible.txtJobNumber.focus();
document.frmVisible.txtJobNumber.select();
CopiedTxt = document.selection.createRange();
CopiedTxt.execCommand(&quot;Copy&quot;);
alert('Number has been copied. Use Control-V to paste into new project screen.');
}
&lt;/script&gt;  
</pre>
<p>js Credit Due: <a href="http://www.geekpedia.com/prog_ttrls_print.php?id=126">http://www.geekpedia.com/prog_ttrls_print.php?id=126</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dmgorman.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dmgorman.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmgorman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmgorman.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmgorman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmgorman.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmgorman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmgorman.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmgorman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmgorman.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmgorman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmgorman.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmgorman.wordpress.com&blog=2497805&post=5&subd=dmgorman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmgorman.wordpress.com/2008/01/11/02-simple-popup-help-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f40e4ba23d8f519bc9491fe6ae71f78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmgorman</media:title>
		</media:content>

		<media:content url="http://dmgorman.files.wordpress.com/2008/04/help.png" medium="image" />
	</item>
		<item>
		<title>#01 Hyperlink Direct</title>
		<link>http://dmgorman.wordpress.com/2008/01/11/some-very-useful-hacks/</link>
		<comments>http://dmgorman.wordpress.com/2008/01/11/some-very-useful-hacks/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 16:03:40 +0000</pubDate>
		<dc:creator>dmgorman</dc:creator>
				<category><![CDATA[hacks]]></category>
		<category><![CDATA[hacks linking infocenters]]></category>

		<guid isPermaLink="false">http://dmgorman.wordpress.com/2008/01/11/some-very-useful-hacks/</guid>
		<description><![CDATA[#01 &#8211; This is documented somewhere officially but I found it indirectly. If you want to go directly to a particular info center in Deltek via a hyperlink the format is as follows:
http://visionserver/vision/launchApp.aspx?initialPage=&#60;info center name&#62;&#38;databaseDescription=&#60;database instance name&#62;&#38;keyValue=&#60;key for info center record&#62;
For example if you were going to a particular client you would enter &#8216;Clients&#8217; in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmgorman.wordpress.com&blog=2497805&post=3&subd=dmgorman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>#01 &#8211; This is documented somewhere officially but I found it indirectly. If you want to go directly to a particular info center in Deltek via a hyperlink the format is as follows:</p>
<p><em>http://visionserver/vision/launchApp.aspx?initialPage=&lt;info center name&gt;&amp;databaseDescription=&lt;database instance name&gt;&amp;keyValue=&lt;key for info center record&gt;</em></p>
<p>For example if you were going to a particular client you would enter &#8216;Clients&#8217; in the info center name &amp; the client internal ID for that client from the <strong>CL</strong> table in Deltek.  For Projects the ID would be the WBS1 field from the <strong>PR</strong> table. </p>
<p><u>Note1</u> I can not open a particular tab on the target page.  </p>
<p><u>Note2</u> in general the 2 character table names are the major tables.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dmgorman.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dmgorman.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmgorman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmgorman.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmgorman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmgorman.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmgorman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmgorman.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmgorman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmgorman.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmgorman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmgorman.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmgorman.wordpress.com&blog=2497805&post=3&subd=dmgorman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmgorman.wordpress.com/2008/01/11/some-very-useful-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0f40e4ba23d8f519bc9491fe6ae71f78?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmgorman</media:title>
		</media:content>
	</item>
	</channel>
</rss>