<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>Recent Posts | Pragmatic Forums</title>
    <link>http://fora.pragprog.com/posts</link>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Error in Verification posted by Federico Gonzalez Lutteroth @ Sat, 10 May 2008 20:28:29 -0000</title>
      <description>&lt;p&gt;Hi,&lt;/p&gt;


	&lt;p&gt;I implemented the solution for receiving &lt;span class="caps"&gt;IPN&lt;/span&gt;&amp;#8217;s in the website payments standard option. Everything was working fine when I was testing with the sandbox, but when i tryied to comunicate with the real server i get a &amp;#8220;Errno::ECONNRESET (Connection reset by peer):&amp;#8221; error, when doing the verification.&lt;/p&gt;


	&lt;p&gt;Here is the code:&lt;br /&gt;&lt;pre&gt;
&lt;code&gt;
  def ipnConfirm
    uri = URI.parse("https://www.paypal.com/cgi-bin/webscr")
    status = nil
    Net::HTTP.start(uri.host, uri.port) do |request|
        status = request.post(uri.path, @raw + "&amp;#38;cmd=_notify-validate").body
    end
    logger.debug "status = '#{status}'" 
    status == "VERIFIED" 
  end
&lt;/code&gt;&lt;br /&gt;&lt;/pre&gt;&lt;/p&gt;


	&lt;p&gt;The error is stated as being on lines 4 and 5. (the Net:HTTP line, and the next one.) Could this be because i don&amp;#8217;t have a &lt;span class="caps"&gt;SSL&lt;/span&gt; certificate?&lt;/p&gt;


	&lt;p&gt;thanks.&lt;/p&gt;</description>
      <pubDate>Sat, 10 May 2008 20:28:29 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:47:422:2773</guid>
      <author>Federico Gonzalez Lutteroth</author>
      <link>http://fora.pragprog.com/forums/47/topics/422</link>
    </item>
    <item>
      <title>Updating the Image link to add_to_cart for AJAX (pg 130) posted by Scott Gardner @ Fri, 09 May 2008 21:08:11 -0000</title>
      <description>&lt;p&gt;Replying to my own topic to report a problem with degrading this functionality when JS is turned off (pg 138). As it stands, using the code I posted above, clicking on the image with JS off does nothing.&lt;/p&gt;


	&lt;p&gt;Why is that? It&amp;#8217;s calling the same action, so the request.xhr? conditional should work the same as clicking the Add to Cart button, right?&lt;/p&gt;


	&lt;p&gt;I tried refactoring the link as follows, which I got to work but the display got fouled up and my initial attempts to fix the &lt;span class="caps"&gt;CSS&lt;/span&gt; didn&amp;#8217;t work (e.g., display: inline;, wrapping it in a new div class, etc.).&lt;br /&gt;&lt;pre&gt;&lt;code&gt;
&amp;lt;% form_remote_tag :url =&amp;gt; {:action =&amp;gt; :add_to_cart, :id =&amp;gt; product} do %&amp;gt;
    &amp;lt;%= image_submit_tag(product.image_url) %&amp;gt;
&amp;lt;% end %&amp;gt;
&lt;/pre&gt;&lt;/code&gt;&lt;br /&gt;Is this the correct approach (and thus I just need to fix my &lt;span class="caps"&gt;CSS&lt;/span&gt;), or is there a better way?&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 21:08:11 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:421:2772</guid>
      <author>Scott Gardner</author>
      <link>http://fora.pragprog.com/forums/66/topics/421</link>
    </item>
    <item>
      <title>Pagination posted by Dave Thomas @ Fri, 09 May 2008 17:17:25 -0000</title>
      <description>&lt;p&gt;will_paginate seems to be the definite winner in this area, and it&amp;#8217;s easy to use&amp;#8230;&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 17:17:25 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:417:2771</guid>
      <author>Dave Thomas</author>
      <link>http://fora.pragprog.com/forums/66/topics/417</link>
    </item>
    <item>
      <title>Updating the Image link to add_to_cart for AJAX (pg 130) posted by Scott Gardner @ Fri, 09 May 2008 17:05:01 -0000</title>
      <description>&lt;p&gt;The end of lesson assignments previously had us make the image a link to add_to_cart. Once you switch over to using an Ajax cart, your link will no longer work. Here&amp;#8217;s my code to update that link:&lt;/p&gt;


	&lt;p&gt;depot/app/views/store/index.html.erb&lt;br /&gt;&lt;pre&gt;&lt;code&gt;
&amp;lt;%= link_to_remote image_tag(product.image_url), :url =&amp;gt; {:action =&amp;gt; 'add_to_cart', :id =&amp;gt; product} %&amp;gt;
&lt;/pre&gt;&lt;/code&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 17:05:01 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:421:2770</guid>
      <author>Scott Gardner</author>
      <link>http://fora.pragprog.com/forums/66/topics/421</link>
    </item>
    <item>
      <title>Chapter 10.1 - Foreign key constraints with SQLite? posted by Arthur Blair @ Fri, 09 May 2008 16:56:33 -0000</title>
      <description>&lt;p&gt;Indeed, the process of looking up foreign keys in sqlite myself scared me sufficiently to give up and ask here instead.  I&amp;#8217;ll see if I can get it to work myself, and look forward to the next beta.&lt;/p&gt;


	&lt;p&gt;Thanks for your rapid response.&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 16:56:33 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:419:2769</guid>
      <author>Arthur Blair</author>
      <link>http://fora.pragprog.com/forums/66/topics/419</link>
    </item>
    <item>
      <title>SQL Server posted by Jason Waters @ Fri, 09 May 2008 16:50:58 -0000</title>
      <description>&lt;p&gt;Anyone use rails with &lt;span class="caps"&gt;SQL&lt;/span&gt; Server?&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 16:50:58 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:22:420:2768</guid>
      <author>Jason Waters</author>
      <link>http://fora.pragprog.com/forums/22/topics/420</link>
    </item>
    <item>
      <title>Depot: the admin controller and scaffold posted by Jaime Bellmyer @ Fri, 09 May 2008 16:29:53 -0000</title>
      <description>&lt;p&gt;Thanks, Sam &amp;#8211; now that you mention it, I do remember the note about images.  thanks!&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 16:29:53 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:22:370:2767</guid>
      <author>Jaime Bellmyer</author>
      <link>http://fora.pragprog.com/forums/22/topics/370</link>
    </item>
    <item>
      <title>Depot: the admin controller and scaffold posted by Jaime Bellmyer @ Fri, 09 May 2008 16:28:40 -0000</title>
      <description>&lt;p&gt;Another note: on page 87 of the &lt;span class="caps"&gt;PDF&lt;/span&gt;, footnote #14 is a link to &lt;a href="http://media.pragprog.com/titles/rails3/code/depot_c/public/images"&gt;http://media.pragprog.com/titles/rails3/code/depot_c/public/images&lt;/a&gt;, which fails with a 403 error.&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 16:28:40 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:22:370:2766</guid>
      <author>Jaime Bellmyer</author>
      <link>http://fora.pragprog.com/forums/22/topics/370</link>
    </item>
    <item>
      <title>Depot: the admin controller and scaffold posted by Sam Ruby @ Fri, 09 May 2008 16:27:19 -0000</title>
      <description>&lt;p&gt;I mention in the preface to the third edition that the images have not yet been updated, but the name of the controller clearly is an error.  I&amp;#8217;ll make sure that that error is corrected in the next beta.  Thanks!&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 16:27:19 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:22:370:2765</guid>
      <author>Sam Ruby</author>
      <link>http://fora.pragprog.com/forums/22/topics/370</link>
    </item>
    <item>
      <title>Chapter 10.1 - Foreign key constraints with SQLite? posted by Sam Ruby @ Fri, 09 May 2008 16:21:17 -0000</title>
      <description>&lt;p&gt;My apologies, I&amp;#8217;ll make sure that that will be fixed in the next beta.&lt;/p&gt;


	&lt;p&gt;Foreign keys are a &lt;a href="http://www.justatheory.com/computers/databases/sqlite/foreign_key_triggers.html"&gt;bit more involved&lt;/a&gt; with sqlite3.  I&amp;#8217;m thinking of deferring this to late in chapter 16.&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 16:21:17 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:419:2764</guid>
      <author>Sam Ruby</author>
      <link>http://fora.pragprog.com/forums/66/topics/419</link>
    </item>
    <item>
      <title>Depot: the admin controller and scaffold posted by Jaime Bellmyer @ Fri, 09 May 2008 16:07:32 -0000</title>
      <description>&lt;p&gt;To editing staff:&lt;/p&gt;


	&lt;p&gt;This has probably already been reported, but I couldn&amp;#8217;t find it.  There are a couple typos.  On page 76 of the &lt;span class="caps"&gt;PDF&lt;/span&gt; (v3, B1.0) it tells the reader to enter the controller, all lowercase, into the browser address bar.  But it lists &amp;#8220;product&amp;#8221; as the controller, when it&amp;#8217;s actually &amp;#8220;products&amp;#8221;, plural.&lt;/p&gt;


	&lt;p&gt;Second, all the example images show &lt;strong&gt;admin&lt;/strong&gt; as the controller in the address bar, which is leftover from the previous version of the book.&lt;/p&gt;


	&lt;p&gt;Thanks for a great book!&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 16:07:32 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:22:370:2763</guid>
      <author>Jaime Bellmyer</author>
      <link>http://fora.pragprog.com/forums/22/topics/370</link>
    </item>
    <item>
      <title>Chapter 10.1 - Foreign key constraints with SQLite? posted by Arthur Blair @ Fri, 09 May 2008 16:03:08 -0000</title>
      <description>&lt;p&gt;Page 141 uses MySQL statements to specify the foreign key constraints, which associate the rows of the line_items table with orders and products.  However, using SQLite (as recommended earlier in the book) these statements give a syntax error:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;
...
-- create_table(:line_items)
   -&amp;gt; 0.0090s
-- execute("alter table line_items add constraint fk_line_item_products
             foreign key (product_id) references products(id)")
rake aborted!
SQLite3::SQLException: near "constraint": syntax error: alter table line_items add constraint fk_line_item_products
                 foreign key (product_id) references products(id)
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Is there an alternative syntax that will work with SQLite? (Or have I done something wrong?)&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 16:03:08 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:419:2762</guid>
      <author>Arthur Blair</author>
      <link>http://fora.pragprog.com/forums/66/topics/419</link>
    </item>
    <item>
      <title>Trying to understand a code example (pg 110, cart.rb) posted by Scott Gardner @ Fri, 09 May 2008 14:53:41 -0000</title>
      <description>&lt;p&gt;That &lt;strong&gt;really&lt;/strong&gt; helped, thanks!&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 14:53:41 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:416:2761</guid>
      <author>Scott Gardner</author>
      <link>http://fora.pragprog.com/forums/66/topics/416</link>
    </item>
    <item>
      <title>Nesting Modules in a hierarchy posted by Ahmet Dogramaci @ Fri, 09 May 2008 14:13:27 -0000</title>
      <description>&lt;p&gt;I am coming from Java to Ruby.  I actually used Ruby on Rails in one of my client&amp;#8217;s projects, but I did not understand it well at the time.  Now I am trying to understand the language well so that I can create better and bigger programs.&lt;/p&gt;


	&lt;p&gt;One of the things that I did not understand well was namespaces and modules.  In Programming Ruby it says that modules give you a namespace, but it never mentions that you can actually nest modules to create module hierarchies.  Without the nesting, I was thinking you would have a flat namespace and end up with very long module names, or name clashes with the libraries that you use.  The nesting actually gives you a facility similar to packages in Java.  I think mentioning this in the new version of the book would help programmers.&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 14:13:27 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:17:418:2760</guid>
      <author>Ahmet Dogramaci</author>
      <link>http://fora.pragprog.com/forums/17/topics/418</link>
    </item>
    <item>
      <title>Pagination posted by Sam Ruby @ Fri, 09 May 2008 14:02:13 -0000</title>
      <description>&lt;p&gt;I&amp;#8217;m not sure yet.  My primary goal is to cover Rails 2.0, and how to find plugins, not to cover any specific plugin.  But I am prepared to be convinced otherwise&amp;#8230;&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 14:02:13 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:417:2759</guid>
      <author>Sam Ruby</author>
      <link>http://fora.pragprog.com/forums/66/topics/417</link>
    </item>
    <item>
      <title>Trying to understand a code example (pg 110, cart.rb) posted by Sam Ruby @ Fri, 09 May 2008 13:51:53 -0000</title>
      <description>&lt;p&gt;The block is automatically converted to a Proc, which is an object.&lt;/p&gt;


	&lt;p&gt;It may help to play with this yourself by adding your own find method to the Array class, thus:&lt;/p&gt;


&lt;pre&gt;
class Array
  def my_find &amp;#38;block
    puts "block class = #{block.class}" 
    for item in self
      puts "testing item: #{item}" 
      if block.call(item) == true
        return item
      end
    end
    return false
  end
end

data = [1, 2, 3, 4, 5]

puts "scanning for a three" 
result = data.my_find {|i| i == 3}
puts "result: #{result}" 
&lt;/pre&gt;</description>
      <pubDate>Fri, 09 May 2008 13:51:53 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:416:2758</guid>
      <author>Sam Ruby</author>
      <link>http://fora.pragprog.com/forums/66/topics/416</link>
    </item>
    <item>
      <title>Trying to understand a code example (pg 110, cart.rb) posted by Scott Gardner @ Fri, 09 May 2008 12:50:23 -0000</title>
      <description>&lt;p&gt;Thanks for the detailed explanation. I am really just trying to put a handle on this because I realize it&amp;#8217;s a key and common usage in Ruby/Rails. I think, for now, I will just have to rely on rote memory of how this works.&lt;/p&gt;


	&lt;p&gt;Also, can you confirm/correct your statement that this block is in fact an object? According to &lt;a href="http://rubylearning.com/satishtalim/ruby_blocks_and_procs.html"&gt;this explanation on rubylearning.com&lt;/a&gt;, a block is not an object unless it is converted to a Proc (e.g., using lambda).&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 12:50:23 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:416:2757</guid>
      <author>Scott Gardner</author>
      <link>http://fora.pragprog.com/forums/66/topics/416</link>
    </item>
    <item>
      <title>Pagination posted by Karsten Wilke @ Fri, 09 May 2008 10:43:16 -0000</title>
      <description>&lt;p&gt;Hi can someone tell me how pagination will be handled in the third edition? i looked into the samples but there was still the deprecated code in there.&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 10:43:16 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:417:2756</guid>
      <author>Karsten Wilke</author>
      <link>http://fora.pragprog.com/forums/66/topics/417</link>
    </item>
    <item>
      <title>Depot app, adding price posted by Ray Schamp @ Fri, 09 May 2008 04:16:14 -0000</title>
      <description>&lt;p&gt;The way I fixed it was to download the latest stable release of sqlite3 for 10.4 and build it from the source, which was easy, no snags:&lt;/p&gt;


	&lt;p&gt;untar the package&lt;br /&gt;make a new directory in the folder that holds the source&lt;br /&gt;cd into that, and run &lt;code&gt;&amp;gt;../configure&lt;/code&gt;&lt;br /&gt;Let it go, and then run &lt;code&gt;&amp;gt; make&lt;/code&gt;&lt;/p&gt;


	&lt;p&gt;Note what &lt;code&gt;&amp;gt; sqlite3 --version&lt;/code&gt; and &lt;code&gt;&amp;gt;which sqlite3&lt;/code&gt; returns&lt;/p&gt;


	&lt;p&gt;run &lt;code&gt;&amp;gt; make install&lt;/code&gt; and see if &lt;code&gt;&amp;gt; sqlite3 --version&lt;/code&gt; returns something different.  If it&amp;#8217;s the new version, you&amp;#8217;re all set.  If it&amp;#8217;s the old one still, run &lt;code&gt;&amp;gt; which sqlite3&lt;/code&gt;, and this should return the location of the new binary.  I just replaced my old binary with the new one, and then it worked after that.&lt;/p&gt;


	&lt;p&gt;Sorry if these instructions are confusing, I&amp;#8217;m sure there&amp;#8217;s a better way to do this.&lt;/p&gt;


	&lt;p&gt;-Ray&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 04:16:14 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:408:2755</guid>
      <author>Ray Schamp</author>
      <link>http://fora.pragprog.com/forums/66/topics/408</link>
    </item>
    <item>
      <title>Depot app, adding price posted by defucius tai @ Fri, 09 May 2008 03:17:19 -0000</title>
      <description>&lt;p&gt;hi, I am having the same problems with the &lt;span class="caps"&gt;ADD&lt;/span&gt; command with sqlite3 3.1.3. and the instruction above with the &lt;span class="caps"&gt;SWIG&lt;/span&gt; and to upgrade sqlite3 on macos 10.4 does not work for me.&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 03:17:19 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:408:2754</guid>
      <author>defucius tai</author>
      <link>http://fora.pragprog.com/forums/66/topics/408</link>
    </item>
    <item>
      <title>Trying to understand a code example (pg 110, cart.rb) posted by Sam Ruby @ Fri, 09 May 2008 01:32:01 -0000</title>
      <description>&lt;blockquote&gt;
	&lt;p&gt;1. @items is initialized as an empty array&lt;/p&gt;

&lt;/blockquote&gt;




	&lt;p&gt;Note that this only occurs when the Cart itself is initialized.  After that point, @items can change.&lt;/p&gt;


&lt;blockquote&gt;
	&lt;p&gt;2. add_product receives a product object&lt;/p&gt;

&lt;/blockquote&gt;




	&lt;p&gt;Yes.&lt;/p&gt;


&lt;blockquote&gt;
	&lt;p&gt;3. The @items array is passed to the block&lt;/p&gt;

&lt;/blockquote&gt;




	&lt;p&gt;More precisely, each item in the @items array is passed to the block until an item is found for which the block evaluates to true.&lt;/p&gt;


&lt;blockquote&gt;
	&lt;p&gt;4. Each @items array item is checked &amp;#8230;&lt;/p&gt;

&lt;/blockquote&gt;




	&lt;p&gt;This is correct.&lt;/p&gt;


&lt;blockquote&gt;
	&lt;p&gt;I still do not understand how the block &amp;#8230; knows to return the actual item object&lt;/p&gt;

&lt;/blockquote&gt;




	&lt;p&gt;It doesn&amp;#8217;t.&lt;/p&gt;


	&lt;p&gt;The block is a procedure.  It is passed as a parameter to the find method.  It is an object with a call method.  This means that the caller (in this case, the find method) can call it as many times at it likes, with whatever parameters it likes.  And that is exactly what the find method does.  It calls the block repeatedly with each successive item in the array until it finds one which causes the block to evaluate true.  If this occurs, the find method knows which item it passed to the block, and it simply returns that item.  If, instead, it exhausts the list, it simply returns nil instead.&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 01:32:01 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:416:2753</guid>
      <author>Sam Ruby</author>
      <link>http://fora.pragprog.com/forums/66/topics/416</link>
    </item>
    <item>
      <title>Trying to understand a code example (pg 110, cart.rb) posted by Scott Gardner @ Thu, 08 May 2008 23:58:47 -0000</title>
      <description>&lt;p&gt;The following section of code (excerpted from page 110 depot_g/app/models/cart.rb line 2 in the book, but I&amp;#8217;ve included relevant setup code) has_thrown_me_for :a =&amp;gt; :loop&amp;#8230;&lt;/p&gt;


&lt;pre&gt;
&lt;code&gt;
class Cart
    attr_reader :items

    def initialize
        @items = []
    end

    def add_product(product)
        current_item = @items.find {|item| item.product == product}  # say what?!?
&lt;/code&gt;&lt;br /&gt;&lt;/pre&gt;

	&lt;p&gt;Here&amp;#8217;s how I understand it:&lt;br /&gt;1. @items is initialized as an empty array&lt;br /&gt;2. add_product receives a product object&lt;br /&gt;3. The @items array is passed to the block&lt;br /&gt;4. Each @items array item is checked to see if its product.id equals the product.id of the product passed to add_product, and if so that matched item is returned to find, which then returns that item to be assigned to current_item&lt;/p&gt;


	&lt;p&gt;Can someone please confirm that I have this correct? Presuming yes, I still do not understand how the block, which resolves true or false, knows to return the actual item object when a true condition occurs.&lt;/p&gt;


	&lt;p&gt;Thanks!&lt;/p&gt;</description>
      <pubDate>Thu, 08 May 2008 23:58:47 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:416:2752</guid>
      <author>Scott Gardner</author>
      <link>http://fora.pragprog.com/forums/66/topics/416</link>
    </item>
    <item>
      <title>More info on the book posted by rashantha de silva @ Thu, 08 May 2008 22:16:27 -0000</title>
      <description>&lt;p&gt;thanks sam for replying. i was able to figure it out with some help. i will be purchasing the beta.&lt;/p&gt;</description>
      <pubDate>Thu, 08 May 2008 22:16:27 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:410:2751</guid>
      <author>rashantha de silva</author>
      <link>http://fora.pragprog.com/forums/66/topics/410</link>
    </item>
    <item>
      <title>Store custom data? posted by ZeFish @ Thu, 08 May 2008 19:39:40 -0000</title>
      <description>&lt;p&gt;Hi there, I&amp;#8217;ve been reading your book and I must say that it work really well!&lt;/p&gt;


	&lt;p&gt;I just have one question tho&amp;#8230;&lt;br /&gt;Is there a way to store parameter about a user even if he doesn&amp;#8217;t have the application?&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;ll give you an example:&lt;br /&gt;In my fb application, a user can put all the dvd he bought and then shown them in his profile.&lt;br /&gt;Now that every user can view his dvd in the profile, everybody can comment to a specified dvd.&lt;br /&gt;But what if a user want to comment but dosen&amp;#8217;t have the app? He click on a dvd in a profile, then he is asked to install the app, and finally back to the comment page. But how can I keep the information about wich dvd he clicked?&lt;/p&gt;</description>
      <pubDate>Thu, 08 May 2008 19:39:40 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:59:415:2750</guid>
      <author>ZeFish</author>
      <link>http://fora.pragprog.com/forums/59/topics/415</link>
    </item>
    <item>
      <title>What's &amp;lt;whatis linkend=... ? posted by Dave Thomas @ Thu, 08 May 2008 16:09:35 -0000</title>
      <description>&lt;p&gt;Ray:&lt;/p&gt;


	&lt;p&gt;It means we have some formatting things still to implement.&lt;/p&gt;


	&lt;p&gt;Dave&lt;/p&gt;</description>
      <pubDate>Thu, 08 May 2008 16:09:35 -0000</pubDate>
      <guid isPermaLink="false">fora.pragprog.com:66:414:2749</guid>
      <author>Dave Thomas</author>
      <link>http://fora.pragprog.com/forums/66/topics/414</link>
    </item>
  </channel>
</rss>
