<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/stylesheets/rss.css" type="text/css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Tom Moertel's Weblog: Tag post</title>
    <link>http://blog.moertel.com/articles/tag/post?tag=post</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>Quality rants on programming theory and stuff geeks like</description>
    <item>
      <title>The button_to helper is now part of Rails!</title>
      <description>&lt;p&gt;I am delighted to report that the &lt;a href="http://blog.moertel.com/articles/2005/05/08/taking-the-unsafe-gets-out-of-rails"&gt;button_to
helper&lt;/a&gt;
has been added to the &lt;a href="http://www.rubyonrails.com/"&gt;Ruby on Rails&lt;/a&gt;
web-development framework.  &lt;a href="http://www.loudthinking.com/"&gt;David&lt;/a&gt;
applied &lt;a href="http://dev.rubyonrails.org/changeset/1437"&gt;the patch&lt;/a&gt; earlier
today, and so &lt;em&gt;button_to&lt;/em&gt; will be in the much-anticipated Rails 1.0
release.&lt;/p&gt;


	&lt;p&gt;David&amp;#8217;s change-log entry summarizes the patch well:&lt;/p&gt;


	&lt;blockquote&gt;
		&lt;p&gt;Added &lt;em&gt;button_to&lt;/em&gt; as a form-based solution to deal with harmful
actions that should be hidden behind POSTs. This makes it just as
easy as &lt;em&gt;link_to&lt;/em&gt; to create a safe trigger for actions like destroy,
although it&amp;#8217;s limited by being a block element, the fixed look,
and a no-no inside other forms.&lt;/p&gt;
	&lt;/blockquote&gt;


	&lt;p&gt;David does a good job of highlighting the helper&amp;#8217;s limitations. I&amp;#8217;ll
take this opportunity to elaborate on each.&lt;/p&gt;


	&lt;h3&gt;It is a block element&lt;/h3&gt;


	&lt;p&gt;The &lt;em&gt;button_to&lt;/em&gt; helper creates a small form, which in &lt;span class="caps"&gt;HTML&lt;/span&gt; is considered
&lt;a href="http://www.w3.org/TR/html4/sgml/dtd.html#block"&gt;block content&lt;/a&gt;, just
like the &lt;em&gt;p&lt;/em&gt;, &lt;em&gt;div&lt;/em&gt;, and &lt;em&gt;blockquote&lt;/em&gt; elements are. Basically, block
content cannot be mixed into runs of text. But links can: links are
&lt;a href="http://www.w3.org/TR/html4/sgml/dtd.html#inline"&gt;inline content&lt;/a&gt;. Thus
&lt;em&gt;button_to&lt;/em&gt; cannot be used as a drop-in replacement for every
occurrence of &lt;em&gt;link_to&lt;/em&gt; that might be unsafe; it works only for those
occurrences within block-accepting contexts.&lt;/p&gt;


	&lt;p&gt;Luckily for us, when designers use links to trigger unsafe actions,
they rarely slip such links into the middle of ordinary looking
text. Naughty uses of &lt;em&gt;link_to&lt;/em&gt; almost always occur within contexts
that accept block content. In Rails-generated scaffolding code, for
instance, the unsafe uses of &lt;em&gt;link_to&lt;/em&gt; occur within table cells, and
table cells have a &lt;a href="http://www.w3.org/TR/html4/sgml/dtd.html#flow"&gt;flow content
model&lt;/a&gt;, which accepts
both inline and block content. So &lt;em&gt;button_to&lt;/em&gt; works great for the
default cases in Rails.&lt;/p&gt;


	&lt;h3&gt;It has a fixed look&lt;/h3&gt;


	&lt;p&gt;As its name implies, &lt;em&gt;button_to&lt;/em&gt; creates buttons. Buttons don&amp;#8217;t look
like links and aren&amp;#8217;t styled the same way that links are. For some
design scenarios, this might be a problem.&lt;/p&gt;


	&lt;p&gt;(My view is that links should not be used to trigger unsafe
actions. In the same way that action-triggering &lt;span class="caps"&gt;GET&lt;/span&gt; requests violate
the spirit of the &lt;span class="caps"&gt;HTTP&lt;/span&gt; standards, action-triggering hypertext links
violate the spirit of the &lt;span class="caps"&gt;HTML&lt;/span&gt; standards. For this reason, I view this
limitation as a feature.)&lt;/p&gt;


	&lt;h3&gt;It is a no-no inside other forms&lt;/h3&gt;


	&lt;p&gt;Forms cannot be nested, and so &lt;em&gt;button_to&lt;/em&gt; cannot be used inside of
forms.&lt;/p&gt;


	&lt;p&gt;Fortunately, this limitation usually doesn&amp;#8217;t matter because when we
are inside of a form, we can use its buttons instead of
&lt;em&gt;button_to&lt;/em&gt;-created buttons to trigger actions. Still, there are some
circumstances where it does matter, such as the &amp;#8220;Amazon.com wish list&amp;#8221; 
scenario. In this scenario, we should consider &lt;a href="http://blog.moertel.com/articles/2005/05/08/taking-the-unsafe-gets-out-of-rails#comment-110"&gt;other
options&lt;/a&gt;.&lt;/p&gt;


	&lt;h3&gt;The bottom line: Pick the low-hanging fruit&lt;/h3&gt;


	&lt;p&gt;While &lt;em&gt;button_to&lt;/em&gt; has its limitations, it does provide a simple solution
to the unsafe-GET problem for most real-world cases. I am glad that it
is now a part of Rails, and I offer a big thank-you to David for
accepting the patch.&lt;/p&gt;</description>
      <pubDate>Thu, 16 Jun 2005 12:00:00 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:29f013421357d69f430f725d21062807</guid>
      <author>Tom Moertel</author>
      <link>http://blog.moertel.com/articles/2005/06/16/the-button_to-helper-is-now-part-of-rails</link>
      <category>web development</category>
      <category>rails</category>
      <category>rails</category>
      <category>get</category>
      <category>gwa</category>
      <category>safe</category>
      <category>unsafe</category>
      <category>post</category>
      <category>link_to</category>
      <trackback:ping>http://blog.moertel.com/articles/trackback/46</trackback:ping>
    </item>
    <item>
      <title>Taking the unsafe GETs out of Rails</title>
      <description>&lt;div class="update"&gt;

	&lt;p&gt;&lt;em&gt;Update 2005-06-17:&lt;/em&gt; The &lt;em&gt;button_to&lt;/em&gt; helper, introduced below, has been incorporated into the Rails framework and will be a part of the Rails 1.0 release. See &lt;a href="http://community.moertel.com/ss/space/start/2005-06-16/1"&gt;Good news: The button_to helper is now part of Rails!&lt;/a&gt; for more.&lt;/p&gt;


	&lt;p&gt;&lt;em&gt;Update 2005-05-28:&lt;/em&gt; I now have &lt;a href="http://community.moertel.com/ss/space/start/2005-05-08/1/button_to.rb"&gt;a more-recent version of the &lt;em&gt;button_to&lt;/em&gt; code&lt;/a&gt;, which adds support for the disabled &lt;span class="caps"&gt;HTML&lt;/span&gt; attribute. Thanks to Sean T Allen for the great idea and initial implementation.&lt;/p&gt;


&lt;/div&gt;

	&lt;p&gt;As I &lt;a href="http://community.moertel.com/ss/space/start/2005-05-06/1#Google_Web_Accelerator_offers_web_developers_an_important_opportunity"&gt;wrote earlier&lt;/a&gt;, it&amp;#8217;s time for web developers to do away with the fundamentally broken practice of using hypertext links to trigger dangerous events such as deleting things. One of the first places we ought to clean house is in the burgeoning &lt;a href="http://www.rubyonrails.org/"&gt;Rails web-application framework&lt;/a&gt;, where this practice is pervasive.&lt;/p&gt;


	&lt;p&gt;The primary culprit in Rails is the all-too-easy &lt;em&gt;link_to&lt;/em&gt; method, which is (presently) the orthodox means of creating links to any action, even unsafe ones. For example:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;link_to "Destroy", :controller =&amp;gt; 'accounts',
        :action =&amp;gt; 'destroy', :id =&amp;gt; 6
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;The above code generates the following &lt;span class="caps"&gt;HTML&lt;/span&gt; hypertext link, which when followed will merrily delete account number 6:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;a href="/accounts/destroy/6"&amp;gt;Destroy&amp;lt;/a&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Because this practice is dangerous and contrary to the decade-old convention that links be safe, the &lt;em&gt;link_to&lt;/em&gt; method thoughtfully lets us request that a Javascript confirmation dialog be tacked onto the link for added protection:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;link_to "Destroy", ...,  :confirm =&amp;gt; "Are you sure?" 
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;The resulting &amp;#8220;safe&amp;#8221; &lt;span class="caps"&gt;HTML&lt;/span&gt;:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;a href="/accounts/destroy/6" 
   onclick="return confirm('Are you sure?');"&amp;gt;Destroy&amp;lt;/a&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Unfortunately, the Javascript protection doesn&amp;#8217;t work. First, not all web browsers care about it. Lots of people surf with Javascript turned off. Second, a whole slew of things besides web browsers live on the Internet, and almost all of them are oblivious to Javascript. Web crawlers fall into this category. They will be more than happy to follow any link you feed to them. &amp;#8220;Hey, Googlebot just deleted every account in our database!&amp;#8221; Oops.&lt;/p&gt;


	&lt;p&gt;Thus another layer of protection is commonly used: authorization. The theory is that dangerous links can be safely corralled in the private parts of a web application, where the public and web crawlers cannot go. Only authorized users can get into those parts, and those users will be smart enough not to click on the truly dangerous links unless they really mean it.&lt;/p&gt;


	&lt;p&gt;The problem is, any number of intermediary agents can be operating &lt;em&gt;on behalf of an authorized user&lt;/em&gt;, and these agents are free to do anything the user is allowed to do, such as follow dangerous links. Google&amp;#8217;s Web Accelerator is one such agent. It tries to make your surfing faster by (among other things) pre-fetching the resources that are linked to on the pages you visit. And what happens if you, an authorized user, visit a page containing dangerous links? That&amp;#8217;s right, Web Accelerator will fetch the &amp;#8220;resources&amp;#8221; those links point to &amp;#8211; and delete a bunch of your stuff.&lt;/p&gt;


	&lt;p&gt;I hope by this point that I have argued convincingly that using links for unsafe actions is a bad idea. Even if you feel justified in ignoring the applicable parts of the &lt;span class="caps"&gt;HTTP&lt;/span&gt; RFCs, it&amp;#8217;s a bad idea. Even if you tack on Javascript confirmations and hide your links in authorization-protected zones of your site, it&amp;#8217;s a bad idea. It is, all around, a bad idea. Don&amp;#8217;t do it.&lt;/p&gt;


	&lt;p&gt;So what alternatives are there?  Read on for one possibility, &lt;em&gt;button_to&lt;/em&gt;.&lt;/p&gt;&lt;h3&gt;A &lt;em&gt;link_to&lt;/em&gt; alternative: &lt;em&gt;button_to&lt;/em&gt;&lt;/h3&gt;


	&lt;p&gt;If you shouldn&amp;#8217;t use links for unsafe actions, what should you use instead? Form buttons. Forms can be submitted via &lt;span class="caps"&gt;HTTP POST&lt;/span&gt; requests, and &lt;span class="caps"&gt;POST&lt;/span&gt; requests are understood to do potentially unsafe things. Web crawlers will not try to click your buttons. Intermediary user agents will not try to pre-submit your forms.&lt;/p&gt;


	&lt;p&gt;So, how do we make doing the right thing as easy as creating a link? My answer is 
&lt;em&gt;button_to&lt;/em&gt;, a method that takes the same parameters as the ever-popular &lt;em&gt;link_to&lt;/em&gt; but creates a tiny form that contains a single button instead of a link:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;button_to "Destroy", { :action =&amp;gt; 'destroy', :id =&amp;gt; 6 },
          :confirm =&amp;gt; "Are you sure?" 
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;The resulting &lt;span class="caps"&gt;HTML &lt;/span&gt;(reformatted for your viewing pleasure):&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;form method="post" action="/accounts/destroy/6" class="button-to"&amp;gt;
  &amp;lt;div&amp;gt;&amp;lt;input onclick="return confirm('Are you sure?');" 
              value="Destroy" type="submit"&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;The forms I create are given the class &lt;em&gt;button-to&lt;/em&gt;, which makes it easy to apply styles to them. With a little work, the buttons can look pretty darn good:&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://community.moertel.com/ss/space/start/2005-05-08/1/button_to.png" title="screen capture showing Edit and Destroy buttons created with the button_to method" alt="screen capture showing Edit and Destroy buttons created with the button_to method" /&gt;&lt;/p&gt;


	&lt;p&gt;So that&amp;#8217;s my plea: Use a button. It&amp;#8217;s a simple solution to a potentially ugly problem. There&amp;#8217;s no need for Ajax or other non-portable Javascript trickery. Just use a button.&lt;/p&gt;


	&lt;p&gt;And it&amp;#8217;s easy, too. In a few minutes, I was able to &amp;#8220;clean house&amp;#8221; on the Rails application I&amp;#8217;m developing.&lt;/p&gt;


	&lt;h3&gt;The code&lt;/h3&gt;


	&lt;p&gt;If you&amp;#8217;re interested, here&amp;#8217;s the code for &lt;em&gt;button_to&lt;/em&gt;. It&amp;#8217;s only ten lines, but the docs make it look much longer.&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;# Generates a form containing a sole button that submits to the URL
# given by _options_.  Use this method instead of +link_to+ for
# dangerous actions that do not have the safe HTTP GET semantics
# implied by using a hypertext link.
#
# The parameters are the same as for +url_to+.  Any _html_options_
# that you pass will be applied to the inner +input+ element.  The
# generated form element is given the class 'button-to', to which
# you can attach CSS styles for display purposes.
#
# Example 1:
#
#   # inside of controller 'feeds'
#   button_to "Edit", :action =&amp;gt; 'edit', :id =&amp;gt; 3
#
# Generates the following HTML (sans formatting):
#
#   &amp;lt;form method="post" action="/feeds/edit/3" class="button-to"&amp;gt;
#     &amp;lt;div&amp;gt;&amp;lt;input value="Edit" type="submit"&amp;gt;&amp;lt;/div&amp;gt;
#   &amp;lt;/form&amp;gt;
#
# Example 2:
#
#   button_to "Destroy", { :action =&amp;gt; 'destroy', :id =&amp;gt; 3 },
#             :confirm =&amp;gt; "Are you sure?" 
#
# Generates the following HTML (sans formatting):
#
#   &amp;lt;form method="post" action="/feeds/destroy/3" class="button-to"&amp;gt;
#     &amp;lt;div&amp;gt;&amp;lt;input onclick="return confirm('Are you sure?');" 
#                 value="Destroy" type="submit"&amp;gt;
#     &amp;lt;/div&amp;gt;
#   &amp;lt;/form&amp;gt;
# 
# *NOTE*: This method generates HTML code that represents a form.
# Forms are "block" content, which means that you should not try to
# insert them into your HTML where only inline content is expected.
# For example, you can legally insert a form inside of a +div+ or +td+
# element or in between +p+ elements, but not in the middle of a run
# of text.  (Bottom line:  Always validate your HTML before going
# public, especially if this paragraph seems confusing.)

def button_to(name, options = {}, html_options = nil)
  html_options = (html_options || {}).stringify_keys
  convert_confirm_option_to_javascript!(html_options)
  url, name = options.is_a?(String) ? 
    [ options,  name || options ] :
    [ url_for(options), name || url_for(options) ]
  html_options.merge!("type" =&amp;gt; "submit", "value" =&amp;gt; name)
  "&amp;lt;form method='post' action='#{h url}' class='button-to'&amp;gt;&amp;lt;div&amp;gt;" +
    tag("input", html_options) + "&amp;lt;/div&amp;gt;&amp;lt;/form&amp;gt;" 
end
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Thanks for reading and happy unsafe-link hunting!&lt;/p&gt;</description>
      <pubDate>Sun, 08 May 2005 12:00:00 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:2e55c892774276d8ec6a19d9921e39d7</guid>
      <author>Tom Moertel</author>
      <link>http://blog.moertel.com/articles/2005/05/08/taking-the-unsafe-gets-out-of-rails</link>
      <category>ruby</category>
      <category>web development</category>
      <category>rails</category>
      <category>rails</category>
      <category>get</category>
      <category>gwa</category>
      <category>safe</category>
      <category>unsafe</category>
      <category>post</category>
      <category>link_to</category>
      <trackback:ping>http://blog.moertel.com/articles/trackback/41</trackback:ping>
    </item>
    <item>
      <title>Google Web Accelerator offers web developers an important opportunity</title>
      <description>&lt;p&gt;Google Web Accelerator offers web developers an important opportunity
There has been a lot of heat lately about &lt;a href="http://webaccelerator.google.com/"&gt;Google&amp;#8217;s Web Accelerator&lt;/a&gt; (GWA)
&lt;a href="http://www.37signals.com/svn/archives2/google_web_accelerator_hey_not_so_fast_an_alert_for_web_app_designers.php"&gt;exposing serious problems&lt;/a&gt; in some popular web
applications. The problem, in short, is that these applications use
&lt;span class="caps"&gt;GET&lt;/span&gt;-based links that when followed perform dangerous actions such as
deleting records in a database. According to web standards going back
a decade, that is a no-no: Links should be safe to follow. Thus &lt;span class="caps"&gt;GWA&lt;/span&gt;,
expecting links to be safe, tries to help you out by pre-fetching
various resources that are linked to by the pages you
visit. Unfortunately, if the page you happen to be visiting contains
lots of dangerous links, &lt;span class="caps"&gt;GWA&lt;/span&gt; will innocently try to pre-fetch the
&amp;#8220;resources&amp;#8221; that the links point to, and in doing so will accidentally
delete a bunch of stuff. Oops.&lt;/p&gt;


	&lt;p&gt;That&amp;#8217;s the backdrop for our real story, which is the response from the
community of web developers. What I find fascinating, and somewhat
disheartening, is the number of people who say the problem is Google&amp;#8217;s
to fix. Yes, there are a lot of broken web apps out there, and Google
could have been smarter about working around the minefields those apps
represent. But that&amp;#8217;s a side problem. The real problem is that there
are a lot of broken web apps out there, and they &lt;em&gt;do&lt;/em&gt; represent
minefields. Worse, a lot of web developers think it is acceptable to
brush aside fundamental conventions of the web going back a &lt;em&gt;decade&lt;/em&gt;
when they find it sexier to use &lt;span class="caps"&gt;GET&lt;/span&gt; instead of &lt;span class="caps"&gt;POST&lt;/span&gt;.&lt;/p&gt;


	&lt;p&gt;What these developers overlook is that the web is not a bunch of
colorful pages with buttons, clickable links, and pretty
pictures. Rather the web is a distributed collection of hypertext
documents, each of which has a meaning that is given by standards that
most people have agreed to follow. While the collection may &lt;em&gt;look&lt;/em&gt; like
a bunch of colorful pages &lt;em&gt;in one particular visual presentation&lt;/em&gt;, it
really, truly is not.&lt;/p&gt;


	&lt;p&gt;Nevertheless, many web applications are designed with the prevailing
mindset that the meaning of the web is nothing more than how it looks
and behaves in a web browser. Even if those web applications are not
intended for use outside of a few approved browsers &amp;#8211; the escape
hatch that is often used to justify departures from the
standards &amp;#8211; this mindset is wrong.&lt;/p&gt;


	&lt;p&gt;The reason it is wrong is because, like it or not, web applications
are implemented in terms of protocols and languages that &lt;em&gt;mean
something&lt;/em&gt;. The bits and pieces of a web application each &lt;em&gt;mean
something&lt;/em&gt;, even if what they mean is not in harmony with the
designer&amp;#8217;s overall vision. What a web designer may see as a bold, red
link that says &amp;#8220;delete&amp;#8221; and is protected by a Javascript confirmation
dialog, is actually a hypertext reference &amp;#8211; a pointer
to another resource that the standards say should not be dangerous to
follow. Thus there is a fundamental mismatch between what the designer
is trying to say &amp;#8211; &amp;#8220;follow this link only if you
really, no-kidding want to delete something&amp;#8221; &amp;#8211; and
what his markup actually &lt;em&gt;means&lt;/em&gt;: &amp;#8220;this link is safe to follow.&amp;#8221;&lt;/p&gt;


	&lt;p&gt;The bottom line is that hypertext links are supposed to be
safe. Dangerous links can&amp;#8217;t be made &amp;#8220;safe&amp;#8221; by layering tricks on
them. Wrapping them with Javascript confirmation dialogs doesn&amp;#8217;t make
them safe. This trick fails fundamentally because the meaning of a
link doesn&amp;#8217;t change when there is Javascript associated with it. It
fails practically because not all consumers of hypertext evaluate
Javascript, nor do any standards suggest that they should. (This is
also why client-side validation cannot be trusted on the server side.)&lt;/p&gt;


	&lt;p&gt;Hiding dangerous links in authorization-controlled portions of a web
application does not make them safe, either. This trick might shield
the links from external spiders, but the standards allow for any
number of intermediary agents (such as Google&amp;#8217;s Web Accelerator) to
work &lt;em&gt;on behalf of an authorized user.&lt;/em&gt; Anything the user is authorized
to do, so are the user&amp;#8217;s agents. If the user can click the &amp;#8220;delete&amp;#8221; 
link, so can the agents.&lt;/p&gt;


	&lt;h4&gt;Let&amp;#8217;s answer the wake-up call.&lt;/h4&gt;


	&lt;p&gt;&lt;span class="caps"&gt;GWA&lt;/span&gt; is only the first of a new breed of
smarter user agents that promise to make the web a better place for
all of us. If you&amp;#8217;re a web developer, take the slew of problems that
&lt;span class="caps"&gt;GWA&lt;/span&gt; uncovered as a wake-up call. Even if Google works around your
problems, other user agents may not. As developers, it&amp;#8217;s time to admit
our mistakes and fix the stupid things that our web applications do.&lt;/p&gt;


	&lt;p&gt;First, let&amp;#8217;s drive a stake in the notion that dangerous links are OK
if we&amp;#8217;re &amp;#8220;careful.&amp;#8221; They&amp;#8217;re not. Dangerous links are
lazy. &amp;#8220;Confirming&amp;#8221; them with Javascript or &amp;#8220;hiding&amp;#8221; them behind
authorization doesn&amp;#8217;t work.&lt;/p&gt;


	&lt;p&gt;Second, let&amp;#8217;s clean house. Let&amp;#8217;s find those places where we have laced
our web applications with dangerous links and remove them. Break out
the forms! Long live the &lt;span class="caps"&gt;POST&lt;/span&gt;!&lt;/p&gt;


	&lt;p&gt;Third, let&amp;#8217;s take a look at how we got into this mess and try to learn
from our mistakes. Do we value sexiness more than substance? We like
to think that form follows function and that good design and good
implementation go hand in hand, but the reality of this debacle
suggests otherwise. I think the truth is that on the web, sexiness and
hype are what gets attention, and we seek attention more than we like
to admit.&lt;/p&gt;


	&lt;p&gt;Maybe the best thing for us is a good dose of humility. And, come to
think of it, that&amp;#8217;s just what Google&amp;#8217;s Web Accelerator offered us.&lt;/p&gt;</description>
      <pubDate>Fri, 06 May 2005 21:55:00 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:e542d7e0-94c6-4a4e-a41e-2b7ea7de7494</guid>
      <author>Tom Moertel</author>
      <link>http://blog.moertel.com/articles/2005/05/06/google-web-accelerator-offers-web-developers-an-important-opportunity</link>
      <category>web development</category>
      <category>rails</category>
      <category>get</category>
      <category>gwa</category>
      <category>safe</category>
      <category>unsafe</category>
      <category>post</category>
      <trackback:ping>http://blog.moertel.com/articles/trackback/210</trackback:ping>
    </item>
  </channel>
</rss>
