<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-18309</id>
	<title>Nabble - Radiant</title>
	<updated>2009-12-01T01:50:56Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Radiant-f18309.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Radiant-f18309.html" />
	<subtitle type="html">Radiant is a no-fluff, open source content management system designed for small teams. See &lt;a href=&quot;http://radiantcms.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/&lt;/a&gt;&amp;nbsp;for more info.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26589236</id>
	<title>Re: Clearing caches on Heroku</title>
	<published>2009-12-01T01:50:56Z</published>
	<updated>2009-12-01T01:50:56Z</updated>
	<author>
		<name>Charles Roper</name>
	</author>
	<content type="html">2009/11/30 Sean Cribbs &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26589236&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;seancribbs@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;gt; That seems correct. &amp;nbsp;I'm not sure about their other infrastructure, but
&lt;br&gt;&amp;gt; as of the current version, doing a hard-refresh in your browser will
&lt;br&gt;&amp;gt; cause the page to be purged from the cache as well.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Thanks Sean. When you say &amp;quot;as of the current version&amp;quot;, you mean 0.8.1 rather
&lt;br&gt;than the RC, right? I am using 0.8.1 and doing a hard refresh definitely
&lt;br&gt;doesn't clear the cache properly. In fact, the behaviour can get quite
&lt;br&gt;strange: repeated hard-refreshes can deliver any one of several revisions of
&lt;br&gt;the same page. I am guessing each refresh must pulling data from different
&lt;br&gt;dbs that haven't been sync'd. But that's just a guess; I've really no idea
&lt;br&gt;what's going on. :)
&lt;br&gt;&lt;br&gt;Doing Radiant::Cache.clear in the heroku console definitely seems to help
&lt;br&gt;matters, though.
&lt;br&gt;&lt;br&gt;Charles
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26589236&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Clearing-caches-on-Heroku-tp26573170p26589236.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26588903</id>
	<title>if_url problem</title>
	<published>2009-12-01T01:24:48Z</published>
	<updated>2009-12-01T01:24:48Z</updated>
	<author>
		<name>Charles Roper</name>
	</author>
	<content type="html">Hey all,
&lt;br&gt;&lt;br&gt;I've got a problem with using &amp;lt;r:if_url&amp;gt; in a layout for a news (Archive)
&lt;br&gt;page. I am trying to display a snippet based on the URL. Here's the bit of
&lt;br&gt;my layout in question:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;r:if_url matches=&amp;quot;^/news/\d{4}/\d{2}/\d{2}/.&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;r:snippet name=&amp;quot;posted&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/r:if_url&amp;gt;
&lt;br&gt;&lt;br&gt;So, in other words, if we're on a news article page (if there is any
&lt;br&gt;character present after the trailing slash), then display the snippet.
&lt;br&gt;Trouble is, the snippet also gets displayed on the monthly archive page,
&lt;br&gt;where the regex doesn't match the URL. However, it *doesn't* display on the
&lt;br&gt;/news/ URL.
&lt;br&gt;&lt;br&gt;I've tried the regex with and without escaping the forward slashes and
&lt;br&gt;tested in both Rubluar and Regex Buddy and there doesn't seem to be any
&lt;br&gt;problem with the regex itself.
&lt;br&gt;&lt;br&gt;I've found the only way to get this working is to use the following;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;r:if_content part=&amp;quot;summary&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;r:snippet name=&amp;quot;posted&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/r:if_content&amp;gt;
&lt;br&gt;&lt;br&gt;The logic here being that each article has a summary part whereas the
&lt;br&gt;archive pages do not. This is a bit of a brittle solution, though, because I
&lt;br&gt;don't necessarily want every article to have a summary. I suppose I could
&lt;br&gt;create the summary part every time and leave it empty. Any better ideas?
&lt;br&gt;&lt;br&gt;This reminds me of another question actually: is it possible to generate a
&lt;br&gt;child page with a default set of parts?
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Charles
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26588903&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/if_url-problem-tp26588903p26588903.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26585122</id>
	<title>Re: Using as product catalog and E-commerce solution</title>
	<published>2009-11-30T17:26:51Z</published>
	<updated>2009-11-30T17:26:51Z</updated>
	<author>
		<name>nx-4</name>
	</author>
	<content type="html">I use rbiz: &lt;a href=&quot;http://github.com/rubidine/radiant_rbiz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/rubidine/radiant_rbiz&lt;/a&gt;&lt;br&gt;&lt;br&gt;On Mon, Nov 30, 2009 at 2:50 PM, Joel Oliveira &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585122&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;joel.oliveira@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hey Dmitry -
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The very best solution to this would be to build the catalog as you see fit,
&lt;br&gt;&amp;gt; and then later on layering FoxyCart on top of it.  Foxycart's great in that
&lt;br&gt;&amp;gt; it's CMS agnostic and pretty feature-full on the cart and checkout side.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Timely in that I'm working on a site using FoxyCart right this second.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; good luck!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Joel
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Nov 30, 2009 at 2:47 PM, Mamed Mamedov &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585122&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mamed.mamedov@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The exactly good solution is to write your own extension :) Radiant
&lt;br&gt;&amp;gt;&amp;gt; framework and benefits is very useful for writing new extensions and
&lt;br&gt;&amp;gt;&amp;gt; solving your problems day by day.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On 11/24/09, Eugen Funk &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585122&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eugen.funk@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; hi,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; I actually was looking for some approaches to this direction also. maybe
&lt;br&gt;&amp;gt;&amp;gt; you
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; already know the spree ecommerce framework.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; it would be very interesting if someone has already some experice with
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; integration of these two projects.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; regards
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; 2009/11/24 Dmitry Belitsky &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585122&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmitry.belitsky@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Hey guys,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; i'm working on site which will use big product catalog for now,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; and they want to have chance to upgrade it later and add cart and
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; payment
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; solution there.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Is there are ready solution for this in Radiant?
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Don't find extension like i need.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; With optimism,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Dmitry Belitsky
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Post:   &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585122&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Site:   &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Post:   &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585122&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Site:   &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; ________________
&lt;br&gt;&amp;gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt;&amp;gt; Mamed Mamedov
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt;&amp;gt; Post:   &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585122&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Site:   &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post:   &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585122&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site:   &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26585122&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%28no-subject%29-tp26490621p26585122.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26586604</id>
	<title>validates_attachment_presence not working using Radiant  0.8.1</title>
	<published>2009-11-30T17:18:37Z</published>
	<updated>2009-11-30T17:18:37Z</updated>
	<author>
		<name>Liah</name>
	</author>
	<content type="html">Hi everyone,
&lt;br&gt;I'm having a problem with validations using Rails 2.3.4, Radiant 0.8.1
&lt;br&gt;and Paperclip 2.3.1.1. &amp;nbsp;I've been googling this for the past hour and
&lt;br&gt;haven't come up with a solution yet.
&lt;br&gt;&lt;br&gt;The problem is that when I visit the upload page and click submit
&lt;br&gt;without browsing to find a file, the validation doesn't prevent the
&lt;br&gt;submission.
&lt;br&gt;&lt;br&gt;Here is the code in my model:
&lt;br&gt;&lt;br&gt;class Mediamaid &amp;lt; ActiveRecord::Base
&lt;br&gt;&amp;nbsp; &amp;nbsp;require &amp;quot;paperclip&amp;quot;
&lt;br&gt;&amp;nbsp; has_attached_file :mediamaid, :styles =&amp;gt; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; :thumb =&amp;gt; &amp;quot;100x100&amp;gt;&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; :small =&amp;gt; &amp;quot;150x150&amp;gt;&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; :medium =&amp;gt; &amp;quot;200x200&amp;gt;&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; :large =&amp;gt; &amp;quot;400x400&amp;gt;&amp;quot; },
&lt;br&gt;&amp;nbsp; &amp;nbsp; :url &amp;nbsp;=&amp;gt; &amp;quot;/assets/:id/:style/:basename.:extension&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; :path =&amp;gt; &amp;quot;:rails_root/public/
&lt;br&gt;assets/:id/:style/:basename.:extension&amp;quot;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; validates_attachment_presence :mediamaid
&lt;br&gt;end
&lt;br&gt;&lt;br&gt;Any ideas? &amp;nbsp;Thanks!
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Radiant CMS Dev Mailing List
&lt;br&gt;Post: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26586604&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;radiantcms-dev@...&lt;/a&gt;
&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26586604&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;radiantcms-dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;Group Site: &amp;nbsp;&lt;a href=&quot;http://groups.google.com/group/radiantcms-dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/radiantcms-dev/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant-core-f18340.html&quot; embed=&quot;fixTarget[18340]&quot; target=&quot;_top&quot; &gt;Radiant core&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/validates_attachment_presence-not-working-using-Radiant--0.8.1-tp26586604p26586604.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26584724</id>
	<title>Re: Password-protecting radiant content</title>
	<published>2009-11-30T16:35:35Z</published>
	<updated>2009-11-30T16:35:35Z</updated>
	<author>
		<name>Arthur Gunn-2</name>
	</author>
	<content type="html">Hi Newbie,
&lt;br&gt;&lt;br&gt;Have a look at:
&lt;br&gt;&lt;a href=&quot;http://github.com/spanner/radiant-reader_group-extension&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/spanner/radiant-reader_group-extension&lt;/a&gt;&lt;br&gt;&lt;br&gt;It allows you to grant users access to sub-trees of your sites &amp;nbsp;
&lt;br&gt;content, and have them log-in via the front-end interface. Perhaps &amp;nbsp;
&lt;br&gt;useful for you too, it has a mechanism for creating users from csv &amp;nbsp;
&lt;br&gt;input.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-Arthur
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26584724&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Password-protecting-radiant-content-tp26581194p26584724.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26584494</id>
	<title>Re: Best extension for Authorization / Role-Control</title>
	<published>2009-11-30T16:14:30Z</published>
	<updated>2009-11-30T16:14:30Z</updated>
	<author>
		<name>Arthur Gunn-2</name>
	</author>
	<content type="html">Hi Jeff,
&lt;br&gt;&lt;br&gt;That depends, whether you're wanting to restrict end-users browsing &amp;nbsp;
&lt;br&gt;the front end:
&lt;br&gt;&lt;a href=&quot;http://github.com/spanner/radiant-reader_group-extension&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/spanner/radiant-reader_group-extension&lt;/a&gt;&lt;br&gt;&lt;br&gt;.....or site editors in the backend:
&lt;br&gt;&lt;a href=&quot;http://github.com/avonderluft/radiant-page-group-permissions-extension/network&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/avonderluft/radiant-page-group-permissions-extension/network&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-Arthur
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26584494&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-extension-for-Authorization---Role-Control-tp26581166p26584494.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26584175</id>
	<title>Re: Caching issue</title>
	<published>2009-11-30T15:42:32Z</published>
	<updated>2009-11-30T15:42:32Z</updated>
	<author>
		<name>Anton Aylward</name>
	</author>
	<content type="html">Myron Marston said the following on 11/30/2009 06:26 PM:
&lt;br&gt;&amp;gt;&amp;gt; Perhaps this ties in with my &amp;quot;Last-Modified header question.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Anton--I looked through the archives and couldn't find this question. &amp;nbsp;I'd
&lt;br&gt;&amp;gt; be curious to read that thread if you can point me in the right direction.
&lt;br&gt;&lt;br&gt;Resent.
&lt;br&gt;&lt;br&gt;I looked at the W3 pages that described such things and their use,
&lt;br&gt;and there are an awful lot of headers to play with ;-) &amp;nbsp;Do all
&lt;br&gt;browsers implement all of them? &amp;nbsp;I'm sure one or other of them could
&lt;br&gt;get the 'renew' effect you want, if and only if the browser pays
&lt;br&gt;attention to it!!
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; There are several extensions for Firefox that will let you view cache
&lt;br&gt;&amp;gt;&amp;gt; headers. &amp;nbsp;Web Developer and Firebug both come to mind. &amp;nbsp;For Firebug, clear
&lt;br&gt;&amp;gt;&amp;gt; your cache, enable Firebug, click the &amp;quot;Net&amp;quot; tab in the Firebug panel and
&lt;br&gt;&amp;gt;&amp;gt; load the offending page in Firefox. &amp;nbsp;You should see an entry in the Net
&lt;br&gt;&amp;gt;&amp;gt; panel with a &amp;quot;Headers&amp;quot; tab.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks for the suggestion. &amp;nbsp;I should have a been a bit more specific
&lt;br&gt;&amp;gt; though...I know how to view the cache headers in safari and firefox, but I'm
&lt;br&gt;&amp;gt; still trying to wrap my head around how these headers work (I just read up
&lt;br&gt;&amp;gt; on them today for the first time), and I'm not sure what to try next.
&lt;/div&gt;&lt;br&gt;You and me,'Bro, you and me! &amp;nbsp;That W3 stuff and all those headers is
&lt;br&gt;heady stuff :-)
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;helicopter (n): 30,000 parts in tight orbit around a hydraulic fluid
&lt;br&gt;leak, waiting for metal fatigue to set in.
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26584175&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Caching-issue-tp26578450p26584175.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26584139</id>
	<title>(resend) Re:  Last modified header</title>
	<published>2009-11-30T15:38:30Z</published>
	<updated>2009-11-30T15:38:30Z</updated>
	<author>
		<name>Anton Aylward</name>
	</author>
	<content type="html">Anton Aylward said the following on 11/26/2009 05:46 PM:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Is there a way to add the &amp;quot;Last-Modified&amp;quot; header to a template and have
&lt;br&gt;&amp;gt; it served correctly.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Correctly ... ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Well, would that be from the date the page was last modified?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;r:date &amp;nbsp;[for=&amp;quot;updated_at&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; OK, so I have a page whose body is
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;r:if_children&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;r:children:each&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;r:content /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/r:children:each&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/r:if_children&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; and one of those was modified later than the parent page ... which is
&lt;br&gt;&amp;gt; quite reasonable if you set up structure before content.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; And what if there are further nesting?
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;Oh, and what about a page that isn't itself modified but uses a snippet,
&lt;br&gt;and the snippet is modified, modified enough to make the page look very
&lt;br&gt;different.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Five exclamation marks, the sure sign of an insane mind.
&lt;br&gt;-- Terry Pratchett _Reaper Man_
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26584139&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Last-modified-header-tp26535901p26584139.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26584007</id>
	<title>Re: Caching issue</title>
	<published>2009-11-30T15:26:40Z</published>
	<updated>2009-11-30T15:26:40Z</updated>
	<author>
		<name>Myron Marston</name>
	</author>
	<content type="html">&amp;gt;
&lt;br&gt;&amp;gt; Perhaps this ties in with my &amp;quot;Last-Modified header question.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Anton--I looked through the archives and couldn't find this question. &amp;nbsp;I'd
&lt;br&gt;be curious to read that thread if you can point me in the right direction.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; There are several extensions for Firefox that will let you view cache
&lt;br&gt;&amp;gt; headers. &amp;nbsp;Web Developer and Firebug both come to mind. &amp;nbsp;For Firebug, clear
&lt;br&gt;&amp;gt; your cache, enable Firebug, click the &amp;quot;Net&amp;quot; tab in the Firebug panel and
&lt;br&gt;&amp;gt; load the offending page in Firefox. &amp;nbsp;You should see an entry in the Net
&lt;br&gt;&amp;gt; panel with a &amp;quot;Headers&amp;quot; tab.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks for the suggestion. &amp;nbsp;I should have a been a bit more specific
&lt;br&gt;though...I know how to view the cache headers in safari and firefox, but I'm
&lt;br&gt;still trying to wrap my head around how these headers work (I just read up
&lt;br&gt;on them today for the first time), and I'm not sure what to try next.
&lt;br&gt;&lt;br&gt;One difference I'm seeing in the headers is that firefox sends a
&lt;br&gt;HTTP_IF_NONE_MATCH header in its request but safari does not.
&lt;br&gt;&lt;br&gt;Myron
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26584007&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Caching-issue-tp26578450p26584007.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26581194</id>
	<title>Password-protecting radiant content</title>
	<published>2009-11-30T12:19:47Z</published>
	<updated>2009-11-30T12:19:47Z</updated>
	<author>
		<name>Ruby Newbie-9</name>
	</author>
	<content type="html">Hello, Radiant &amp;nbsp;users.
&lt;br&gt;&lt;br&gt;I am using radiant to drive a personal website, and would like to password-protect some of the content on the site. Can someone advise me as to the simplest path to accomplish this? In particular...
&lt;br&gt;&lt;br&gt;Should I create developer accounts for the (10-20) individuals to whom I want to give access? I do NOT want them to be able to edit the content, so I'd need a way to disable their ability to actually modify the site, so this doesn't seem like what I want. But I don't mind if they use the admin interface to log in. 
&lt;br&gt;&lt;br&gt;Should I install some combination of radiant-rbac_base-extension, radiant-rbac_page_edit-extension, etc.? Should I try to create my own roles? How complicated is this?
&lt;br&gt;&lt;br&gt;I understand that the user model in Radiant is primarily for the publishing / backend, not for restricting the viewing of content on the front-end. But has anyone solved this problem in a simple way already?
&lt;br&gt;&lt;br&gt;Thanks in advance,
&lt;br&gt;- Ruby Newbie
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26581194&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Password-protecting-radiant-content-tp26581194p26581194.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26581166</id>
	<title>Best extension for Authorization / Role-Control</title>
	<published>2009-11-30T12:17:38Z</published>
	<updated>2009-11-30T12:17:38Z</updated>
	<author>
		<name>Jeff Casimir-3</name>
	</author>
	<content type="html">All,
&lt;br&gt;&lt;br&gt;Looking for a little advice. &amp;nbsp;For a site I'm developing I'd like to be
&lt;br&gt;able to create user accounts that are restricted to certain sub-trees
&lt;br&gt;within a single site. &amp;nbsp;It looks like there are a few choices out there
&lt;br&gt;to handle security and authorization, which would you choose?
&lt;br&gt;&lt;br&gt;The site is running Radiant 0.8 on Rails 2.3.2.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Jeff
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26581166&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-extension-for-Authorization---Role-Control-tp26581166p26581166.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26580757</id>
	<title>Re: Using as product catalog and E-commerce solution</title>
	<published>2009-11-30T11:50:18Z</published>
	<updated>2009-11-30T11:50:18Z</updated>
	<author>
		<name>Joel Oliveira</name>
	</author>
	<content type="html">Hey Dmitry -
&lt;br&gt;&lt;br&gt;The very best solution to this would be to build the catalog as you see fit,
&lt;br&gt;and then later on layering FoxyCart on top of it. &amp;nbsp;Foxycart's great in that
&lt;br&gt;it's CMS agnostic and pretty feature-full on the cart and checkout side.
&lt;br&gt;&lt;br&gt;Timely in that I'm working on a site using FoxyCart right this second.
&lt;br&gt;&lt;br&gt;good luck!
&lt;br&gt;&lt;br&gt;- Joel
&lt;br&gt;&lt;br&gt;On Mon, Nov 30, 2009 at 2:47 PM, Mamed Mamedov &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580757&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mamed.mamedov@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The exactly good solution is to write your own extension :) Radiant
&lt;br&gt;&amp;gt; framework and benefits is very useful for writing new extensions and
&lt;br&gt;&amp;gt; solving your problems day by day.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 11/24/09, Eugen Funk &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580757&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eugen.funk@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; hi,
&lt;br&gt;&amp;gt; &amp;gt; I actually was looking for some approaches to this direction also. maybe
&lt;br&gt;&amp;gt; you
&lt;br&gt;&amp;gt; &amp;gt; already know the spree ecommerce framework.
&lt;br&gt;&amp;gt; &amp;gt; it would be very interesting if someone has already some experice with
&lt;br&gt;&amp;gt; &amp;gt; integration of these two projects.
&lt;br&gt;&amp;gt; &amp;gt; regards
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; 2009/11/24 Dmitry Belitsky &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580757&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmitry.belitsky@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Hey guys,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; i'm working on site which will use big product catalog for now,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; and they want to have chance to upgrade it later and add cart and
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; payment
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; solution there.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Is there are ready solution for this in Radiant?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Don't find extension like i need.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; With optimism,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Dmitry Belitsky
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580757&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; &amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580757&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; ________________
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Mamed Mamedov
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580757&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580757&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%28no-subject%29-tp26490621p26580757.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26580723</id>
	<title>Re: Using as product catalog and E-commerce solution</title>
	<published>2009-11-30T11:47:56Z</published>
	<updated>2009-11-30T11:47:56Z</updated>
	<author>
		<name>Mamed Mamedov</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;The exactly good solution is to write your own extension :) Radiant
&lt;br&gt;framework and benefits is very useful for writing new extensions and
&lt;br&gt;solving your problems day by day.
&lt;br&gt;&lt;br&gt;On 11/24/09, Eugen Funk &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580723&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eugen.funk@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; hi,
&lt;br&gt;&amp;gt; I actually was looking for some approaches to this direction also. maybe you
&lt;br&gt;&amp;gt; already know the spree ecommerce framework.
&lt;br&gt;&amp;gt; it would be very interesting if someone has already some experice with
&lt;br&gt;&amp;gt; integration of these two projects.
&lt;br&gt;&amp;gt; regards
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009/11/24 Dmitry Belitsky &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580723&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmitry.belitsky@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hey guys,
&lt;br&gt;&amp;gt;&amp;gt; i'm working on site which will use big product catalog for now,
&lt;br&gt;&amp;gt;&amp;gt; and they want to have chance to upgrade it later and add cart and
&lt;br&gt;&amp;gt;&amp;gt; payment
&lt;br&gt;&amp;gt;&amp;gt; solution there.
&lt;br&gt;&amp;gt;&amp;gt; Is there are ready solution for this in Radiant?
&lt;br&gt;&amp;gt;&amp;gt; Don't find extension like i need.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; With optimism,
&lt;br&gt;&amp;gt;&amp;gt; Dmitry Belitsky
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580723&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580723&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;________________
&lt;br&gt;Regards,
&lt;br&gt;Mamed Mamedov
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580723&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%28no-subject%29-tp26490621p26580723.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26580661</id>
	<title>Re: Develop new project in Radiant 0.8.1, or 0.9?</title>
	<published>2009-11-30T11:41:46Z</published>
	<updated>2009-11-30T11:41:46Z</updated>
	<author>
		<name>Mamed Mamedov</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I develop my new projects in Radiant 0.8.1 (current stable version).
&lt;br&gt;Now, we can use 0.8.1-stable or 0.9RC1, ha? But, whenever you start
&lt;br&gt;your developing (project) use current stable versions of any software
&lt;br&gt;you are using.
&lt;br&gt;And do not forget about time needed to finish your project :) May be
&lt;br&gt;it will be released stable version of 0.9?
&lt;br&gt;Additionally, read the CHANGELOG for stable and RC versions, and then
&lt;br&gt;you can imagine - is there any reasons to wait for new release?
&lt;br&gt;&lt;br&gt;I have some projects that are working now on production servers with
&lt;br&gt;radiant-0.7.1 versions, and you know, there is no problems :)
&lt;br&gt;Extensions works OK, radiant work OK, and site works in production
&lt;br&gt;mode without any problems.
&lt;br&gt;&lt;br&gt;Anyway, if a new version of radiant will be released even after you
&lt;br&gt;just finished your developing - there is no reasons to update, or
&lt;br&gt;redevelop anything :)
&lt;br&gt;&lt;br&gt;It is only my opinion, thank you for reading it till the end ;)
&lt;br&gt;&lt;br&gt;On 11/23/09, Asfand Yar Qazi &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580661&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ayqazi@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Should any new projects be developed in Radiant 0.8.1 , considering
&lt;br&gt;&amp;gt; all extensions are written for it? &amp;nbsp;Or can I assume they will be
&lt;br&gt;&amp;gt; updated fairly quickly to 0.9, and start developing for the 0.9
&lt;br&gt;&amp;gt; release?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If I were to develop any projects in 0.8, how difficult would it be to
&lt;br&gt;&amp;gt; port them to 0.9, including any extensions used (assuming
&lt;br&gt;&amp;gt; 0.9-compatible versions were available)?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580661&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;________________
&lt;br&gt;Regards,
&lt;br&gt;Mamed Mamedov
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580661&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Develop-new-project-in-Radiant-0.8.1%2C-or-0.9--tp26479958p26580661.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26580453</id>
	<title>Re: date with conditional_tags</title>
	<published>2009-11-30T11:27:55Z</published>
	<updated>2009-11-30T11:27:55Z</updated>
	<author>
		<name>Steven Southard</name>
	</author>
	<content type="html">Luckily variables do work. &amp;nbsp;thanks
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Nov 30, 2009, at 1:20 PM, Mamed Mamedov wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It is impossible to include radius tags into existing radius tags.
&lt;br&gt;&amp;gt; They will not be parsed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 11/19/09, Steven Southard &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580453&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steven@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; There are probably a lot of ways to do this. &amp;nbsp;I am creating a blog
&lt;br&gt;&amp;gt;&amp;gt; with archives and I wanted it to say &amp;quot;TODAY&amp;quot; on the top if the &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; article
&lt;br&gt;&amp;gt;&amp;gt; was written today. &amp;nbsp;I tried using the conditional_tags extension to
&lt;br&gt;&amp;gt;&amp;gt; evaluate the pub date and compare it to today's date like this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;r:if condition=&amp;quot;&amp;lt;r:date for='now' format='%Y%j' /&amp;gt; is &amp;lt;r:date
&lt;br&gt;&amp;gt;&amp;gt; format='%Y%j' /&amp;gt;&amp;quot;&amp;gt;Today&amp;lt;/r:if&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; That only resulted in this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 'if' tag error: Error in condition &amp;quot; is &amp;quot; (could not parse condition)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I guess you can't use radius tags like this or it's just not set up
&lt;br&gt;&amp;gt;&amp;gt; right. &amp;nbsp;Does anyone know a better way to do this or how to use this
&lt;br&gt;&amp;gt;&amp;gt; extension properly?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Steven
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580453&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; ________________
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Mamed Mamedov
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580453&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580453&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Extension-page_attachments-no-reaction-after-click-tp26118191p26580453.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26580362</id>
	<title>Re: tags</title>
	<published>2009-11-30T11:22:16Z</published>
	<updated>2009-11-30T11:22:16Z</updated>
	<author>
		<name>Mamed Mamedov</name>
	</author>
	<content type="html">Tags in radiant is a generic radius tags. And all properties of radius
&lt;br&gt;tags is inherited here.
&lt;br&gt;But, I don't know if there any possibility to use more than one work
&lt;br&gt;in tag name :)
&lt;br&gt;&lt;br&gt;On 11/20/09, Steven Southard &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580362&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steven@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Can tags only be one word? &amp;nbsp;Is there a special character to connect
&lt;br&gt;&amp;gt; words to make phases?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Steven
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580362&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;________________
&lt;br&gt;Regards,
&lt;br&gt;Mamed Mamedov
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580362&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Extension-page_attachments-no-reaction-after-click-tp26118191p26580362.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26580333</id>
	<title>Re: date with conditional_tags</title>
	<published>2009-11-30T11:20:37Z</published>
	<updated>2009-11-30T11:20:37Z</updated>
	<author>
		<name>Mamed Mamedov</name>
	</author>
	<content type="html">Hi!
&lt;br&gt;&lt;br&gt;It is impossible to include radius tags into existing radius tags.
&lt;br&gt;They will not be parsed.
&lt;br&gt;&lt;br&gt;On 11/19/09, Steven Southard &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580333&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steven@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; There are probably a lot of ways to do this. &amp;nbsp;I am creating a blog
&lt;br&gt;&amp;gt; with archives and I wanted it to say &amp;quot;TODAY&amp;quot; on the top if the article
&lt;br&gt;&amp;gt; was written today. &amp;nbsp;I tried using the conditional_tags extension to
&lt;br&gt;&amp;gt; evaluate the pub date and compare it to today's date like this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;r:if condition=&amp;quot;&amp;lt;r:date for='now' format='%Y%j' /&amp;gt; is &amp;lt;r:date
&lt;br&gt;&amp;gt; format='%Y%j' /&amp;gt;&amp;quot;&amp;gt;Today&amp;lt;/r:if&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That only resulted in this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 'if' tag error: Error in condition &amp;quot; is &amp;quot; (could not parse condition)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I guess you can't use radius tags like this or it's just not set up
&lt;br&gt;&amp;gt; right. &amp;nbsp;Does anyone know a better way to do this or how to use this
&lt;br&gt;&amp;gt; extension properly?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Steven
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580333&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;________________
&lt;br&gt;Regards,
&lt;br&gt;Mamed Mamedov
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580333&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Extension-page_attachments-no-reaction-after-click-tp26118191p26580333.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26578770</id>
	<title>Re: Caching issue</title>
	<published>2009-11-30T09:42:53Z</published>
	<updated>2009-11-30T09:42:53Z</updated>
	<author>
		<name>C. R. Oldham</name>
	</author>
	<content type="html">&lt;br&gt;On Nov 30, 2009, at 10:24 AM, Myron Marston wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I haven't dealt with HTTP cache headers before, so I'm not really
&lt;br&gt;&amp;gt; sure how to go about troubleshooting this.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Any suggestions?
&lt;br&gt;&lt;br&gt;Myron,
&lt;br&gt;&lt;br&gt;There are several extensions for Firefox that will let you view cache headers. &amp;nbsp;Web Developer and Firebug both come to mind. &amp;nbsp;For Firebug, clear your cache, enable Firebug, click the &amp;quot;Net&amp;quot; tab in the Firebug panel and load the offending page in Firefox. &amp;nbsp;You should see an entry in the Net panel with a &amp;quot;Headers&amp;quot; tab.
&lt;br&gt;&lt;br&gt;--cro
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26578770&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Caching-issue-tp26578450p26578770.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26578630</id>
	<title>Re: Caching issue</title>
	<published>2009-11-30T09:34:37Z</published>
	<updated>2009-11-30T09:34:37Z</updated>
	<author>
		<name>Anton Aylward</name>
	</author>
	<content type="html">Myron Marston said the following on 11/30/2009 12:24 PM:
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So, it appears to me that the cache is being properly cleared on the server,
&lt;br&gt;&amp;gt; but Firefox is continuing to display a version of the page that is has
&lt;br&gt;&amp;gt; cached on the browser. &amp;nbsp;My best guess is that there is some issue with the
&lt;br&gt;&amp;gt; HTTP cache headers that causes Firefox to continue to display it's cached
&lt;br&gt;&amp;gt; page. &amp;nbsp;I haven't dealt with HTTP cache headers before, so I'm not really
&lt;br&gt;&amp;gt; sure how to go about troubleshooting this.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Any suggestions?
&lt;br&gt;&lt;br&gt;Perhaps this ties in with my &amp;quot;Last-Modified header question.
&lt;br&gt;Though in this case, I should think you have a simple case of changing
&lt;br&gt;the header that has nothing to do with the time the page or its children
&lt;br&gt;was edited. &amp;nbsp;However I'd be interested in hearing how you change it when
&lt;br&gt;the page itself isn't edited.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Insanity is hereditary. You get it from your kids.
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26578630&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Caching-issue-tp26578450p26578630.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26578450</id>
	<title>Caching issue</title>
	<published>2009-11-30T09:24:32Z</published>
	<updated>2009-11-30T09:24:32Z</updated>
	<author>
		<name>Myron Marston</name>
	</author>
	<content type="html">I'm using (and improving) the ratings extension for use in my radiant 0.8.1
&lt;br&gt;app. &amp;nbsp;It works well except for a weird caching issue that I haven't been
&lt;br&gt;able to solve yet.
&lt;br&gt;&lt;br&gt;When a user rates a page, the radiant cache is cleared, so that when they
&lt;br&gt;are redirected to the page, they get a fresh version of it that includes the
&lt;br&gt;new rating average. &amp;nbsp;On safari, this works as expected. &amp;nbsp;On firefox, I
&lt;br&gt;continue to get the old version of the page. &amp;nbsp;I have to manually refresh the
&lt;br&gt;page to force it to update the rating.
&lt;br&gt;&lt;br&gt;I've investigated it a bit, and discovered that the cached entity and meta
&lt;br&gt;files are indeed being cleared at the right time. &amp;nbsp;My server logs show that
&lt;br&gt;when I rate a page using safari, it redirects to the page, and my server
&lt;br&gt;logs show a hit to SiteController#show_page, indicating that a fresh version
&lt;br&gt;of the page is being generated. &amp;nbsp;When I do this on firefox, it redirects,
&lt;br&gt;but there is not a hit to SiteController#show_page. &amp;nbsp;I just see a cached
&lt;br&gt;version of the page.
&lt;br&gt;&lt;br&gt;So, it appears to me that the cache is being properly cleared on the server,
&lt;br&gt;but Firefox is continuing to display a version of the page that is has
&lt;br&gt;cached on the browser. &amp;nbsp;My best guess is that there is some issue with the
&lt;br&gt;HTTP cache headers that causes Firefox to continue to display it's cached
&lt;br&gt;page. &amp;nbsp;I haven't dealt with HTTP cache headers before, so I'm not really
&lt;br&gt;sure how to go about troubleshooting this.
&lt;br&gt;&lt;br&gt;Any suggestions?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Myron
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26578450&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Caching-issue-tp26578450p26578450.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26576298</id>
	<title>&quot;WYSIWYG&quot; editors problem</title>
	<published>2009-11-30T07:15:46Z</published>
	<updated>2009-11-30T07:15:46Z</updated>
	<author>
		<name>Asfand Yar Qazi-7</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm having a problem with both the Fckeditor filter and the TinyMCE
&lt;br&gt;filter which is the same, so it must not a problem with either of
&lt;br&gt;those extensions.
&lt;br&gt;&lt;br&gt;Basically, if I scroll the page and type text into one of the editors'
&lt;br&gt;boxes, everything works fine.
&lt;br&gt;&lt;br&gt;But if I press enter, the browser window scrolls right to the top of the page.
&lt;br&gt;&lt;br&gt;Has anyone experienced any issues with either of these?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;Asfand Yar Qazi
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26576298&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%22WYSIWYG%22-editors-problem-tp26576298p26576298.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26575976</id>
	<title>Endnotes and 404</title>
	<published>2009-11-30T06:54:27Z</published>
	<updated>2009-11-30T06:54:27Z</updated>
	<author>
		<name>Anton Aylward</name>
	</author>
	<content type="html">Endnotes are an alternative to footnotes.
&lt;br&gt;Long footnotes can intrude into the page, using endnotes moves them 'out
&lt;br&gt;of band'.
&lt;br&gt;&lt;br&gt;I've created an otherwise blank page &amp;quot;/endnotes/&amp;quot; and the endnotes live
&lt;br&gt;under there. &amp;nbsp;Hyperlinks from the text lead there. &amp;nbsp;simple enough, eh?
&lt;br&gt;&lt;br&gt;But I don't want people to hack the address bar and look at the page
&lt;br&gt;&amp;quot;/endnotes/&amp;quot; itself. &amp;nbsp;So I marked it as &amp;quot;Page type: file not found&amp;quot; and
&lt;br&gt;it should come as a 404.
&lt;br&gt;&lt;br&gt;It does. &amp;nbsp;The only problem is that so do its children.
&lt;br&gt;And I have explicitly marked them as &amp;quot;&amp;lt;normal&amp;gt;&amp;quot;
&lt;br&gt;&lt;br&gt;Is this a bug? &amp;nbsp;Is it inherent in the logic of the way things work or it
&lt;br&gt;is something I've done wrong?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Human history becomes more and more a race between education and
&lt;br&gt;catastrophe.
&lt;br&gt;&amp;nbsp; &amp;nbsp; --H. G. Wells
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26575976&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Endnotes-and-404-tp26575976p26575976.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26575928</id>
	<title>Re: Clearing caches on Heroku</title>
	<published>2009-11-30T06:50:57Z</published>
	<updated>2009-11-30T06:50:57Z</updated>
	<author>
		<name>Sean Cribbs-2</name>
	</author>
	<content type="html">That seems correct. &amp;nbsp;I'm not sure about their other infrastructure, but 
&lt;br&gt;as of the current version, doing a hard-refresh in your browser will 
&lt;br&gt;cause the page to be purged from the cache as well.
&lt;br&gt;&lt;br&gt;Sean
&lt;br&gt;&lt;br&gt;Charles Roper wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I've been developing a Radiant-powered site on Heroku and have been having
&lt;br&gt;&amp;gt; difficulty with caching. When I save a page, the change will (usually) fail
&lt;br&gt;&amp;gt; to show up. Obviously I am aware that both Radiant and Heroku do some (quite
&lt;br&gt;&amp;gt; aggressive?) caching, so I was wondering if anyone could offer some advice
&lt;br&gt;&amp;gt; for when developing a site and the need for aggressive cache clearing is the
&lt;br&gt;&amp;gt; priority.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've found logging into the heroku console and then clearing the cache to be
&lt;br&gt;&amp;gt; quite effective:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [ D:\Users\charlesr\Documents\My Dropbox\Projects\radiant_roast ]
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; heroku console
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; Ruby console for foobarbaz.heroku.com
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Radiant::Cache.clear
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; =&amp;gt; [#&amp;lt;Radiant::Cache::EntityStore:0x2b5c98de4a20
&lt;br&gt;&amp;gt; @root=&amp;quot;/disk1/home/slugs/89730_0ada040_1fcc/mnt/tmp/cache/entity&amp;quot;&amp;gt;]
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is this the best way of tackling a cache refresh, or should I be doing
&lt;br&gt;&amp;gt; something else?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Charles
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26575928&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26575928&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Clearing-caches-on-Heroku-tp26573170p26575928.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26573170</id>
	<title>Clearing caches on Heroku</title>
	<published>2009-11-30T03:27:04Z</published>
	<updated>2009-11-30T03:27:04Z</updated>
	<author>
		<name>Charles Roper</name>
	</author>
	<content type="html">I've been developing a Radiant-powered site on Heroku and have been having
&lt;br&gt;difficulty with caching. When I save a page, the change will (usually) fail
&lt;br&gt;to show up. Obviously I am aware that both Radiant and Heroku do some (quite
&lt;br&gt;aggressive?) caching, so I was wondering if anyone could offer some advice
&lt;br&gt;for when developing a site and the need for aggressive cache clearing is the
&lt;br&gt;priority.
&lt;br&gt;&lt;br&gt;I've found logging into the heroku console and then clearing the cache to be
&lt;br&gt;quite effective:
&lt;br&gt;&lt;br&gt;[ D:\Users\charlesr\Documents\My Dropbox\Projects\radiant_roast ]
&lt;br&gt;&amp;gt; heroku console
&lt;br&gt;Ruby console for foobarbaz.heroku.com
&lt;br&gt;&amp;gt;&amp;gt; Radiant::Cache.clear
&lt;br&gt;=&amp;gt; [#&amp;lt;Radiant::Cache::EntityStore:0x2b5c98de4a20
&lt;br&gt;@root=&amp;quot;/disk1/home/slugs/89730_0ada040_1fcc/mnt/tmp/cache/entity&amp;quot;&amp;gt;]
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Is this the best way of tackling a cache refresh, or should I be doing
&lt;br&gt;something else?
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Charles
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26573170&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Clearing-caches-on-Heroku-tp26573170p26573170.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26567257</id>
	<title>Re: Paperclipped Error while regenerating assets</title>
	<published>2009-11-29T14:55:13Z</published>
	<updated>2009-11-29T14:55:13Z</updated>
	<author>
		<name>Anna-83</name>
	</author>
	<content type="html">It's in the ImageMagick documentation:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.imagemagick.org/script/binary-releases.php#macosx&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.imagemagick.org/script/binary-releases.php#macosx&lt;/a&gt;&lt;br&gt;&lt;br&gt;Also, do the command-line test to turn the logo.gif into a logo. That will
&lt;br&gt;test that ImageMagick is instlaled right.
&lt;br&gt;&lt;br&gt;On Sun, Nov 29, 2009 at 2:04 PM, Dmitry Belitsky
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26567257&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmitry.belitsky@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Yes, it works.
&lt;br&gt;&amp;gt; I read in Paperclipped readme:
&lt;br&gt;&amp;gt; The configuration settings also enable a list of the allowed file
&lt;br&gt;&amp;gt; types, maximum file size and should you need it, the path to your
&lt;br&gt;&amp;gt; installation of Image Magick (this should not be needed, but I
&lt;br&gt;&amp;gt; sometimes had a problem when using mod_rails).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; How i can write path for my ImageMagick installation?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Nov 29, 2009, at 10:06 PM, banane wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Can you do &amp;quot;convert&amp;quot; command from the commandline? That will test your
&lt;br&gt;&amp;gt; &amp;gt; ImageMagick install.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Sun, Nov 29, 2009 at 11:41 AM, Dmitry Belitsky &amp;lt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26567257&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmitry.belitsky@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Thanks for reply, Nate.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I tried to run it with Mongrel and get same error:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; NoMethodError (You have a nil object when you didn't expect it!
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; You might have expected an instance of ActiveRecord::Base.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; The error occurred while evaluating nil.[]):
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp; vendor/extensions/paperclipped/app/controllers/admin/
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; assets_controller.rb:58:in `refresh'
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; assets_controller.rb:57:in `each'
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; assets_controller.rb:57:in `refresh'
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp;radiant (0.8.1) vendor/plugins/haml/rails/./lib/sass/plugin/
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; rails.rb:19:in `process'
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; On Nov 29, 2009, at 9:26 PM, Nate wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Dmitry Belitsky wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; Hello there,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; i get application error when try to regenerate assets thumbnails.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; Apache2/mod_rails
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; ImageMagick installed, image_size gem installed.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; Any ideas?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Have you tried running your app with Mongrel or Webrick? I know
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; that's
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; not really best for a production environment, but it might help
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; figuring
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; out where the problem is. I was having problems with Paperclipped
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; making
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; thumbnails with Passenger, but everything works perfectly well with
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Mongrel. So evidently there was something wrong with my Passenger
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; set up.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; ~Nate
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26567257&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; With optimism,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Dmitry Belitsky
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26567257&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; &amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26567257&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; With optimism,
&lt;br&gt;&amp;gt; Dmitry Belitsky
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26567257&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26567257&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Paperclipped-Error-while-regenerating-assets-tp26565039p26567257.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26567123</id>
	<title>how setup radiant in subfolder</title>
	<published>2009-11-29T14:42:25Z</published>
	<updated>2009-11-29T14:42:25Z</updated>
	<author>
		<name>Dmitry Belitsky-2</name>
	</author>
	<content type="html">How i should configure Apache to run RadiantCMS in subfolder of my &amp;nbsp;
&lt;br&gt;domain,
&lt;br&gt;like domain.com/radiant
&lt;br&gt;Any advices?
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Thanks
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26567123&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Paperclipped-Error-while-regenerating-assets-tp26565039p26567123.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26566739</id>
	<title>Re: Paperclipped Error while regenerating assets</title>
	<published>2009-11-29T14:04:31Z</published>
	<updated>2009-11-29T14:04:31Z</updated>
	<author>
		<name>Dmitry Belitsky-2</name>
	</author>
	<content type="html">Yes, it works.
&lt;br&gt;I read in Paperclipped readme:
&lt;br&gt;The configuration settings also enable a list of the allowed file &amp;nbsp;
&lt;br&gt;types, maximum file size and should you need it, the path to your &amp;nbsp;
&lt;br&gt;installation of Image Magick (this should not be needed, but I &amp;nbsp;
&lt;br&gt;sometimes had a problem when using mod_rails).
&lt;br&gt;&lt;br&gt;How i can write path for my ImageMagick installation?
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Nov 29, 2009, at 10:06 PM, banane wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Can you do &amp;quot;convert&amp;quot; command from the commandline? That will test your
&lt;br&gt;&amp;gt; ImageMagick install.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Sun, Nov 29, 2009 at 11:41 AM, Dmitry Belitsky &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26566739&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmitry.belitsky@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks for reply, Nate.
&lt;br&gt;&amp;gt;&amp;gt; I tried to run it with Mongrel and get same error:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; NoMethodError (You have a nil object when you didn't expect it!
&lt;br&gt;&amp;gt;&amp;gt; You might have expected an instance of ActiveRecord::Base.
&lt;br&gt;&amp;gt;&amp;gt; The error occurred while evaluating nil.[]):
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; vendor/extensions/paperclipped/app/controllers/admin/
&lt;br&gt;&amp;gt;&amp;gt; assets_controller.rb:58:in `refresh'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/
&lt;br&gt;&amp;gt;&amp;gt; assets_controller.rb:57:in `each'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/
&lt;br&gt;&amp;gt;&amp;gt; assets_controller.rb:57:in `refresh'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;radiant (0.8.1) vendor/plugins/haml/rails/./lib/sass/plugin/
&lt;br&gt;&amp;gt;&amp;gt; rails.rb:19:in `process'
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Nov 29, 2009, at 9:26 PM, Nate wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Dmitry Belitsky wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Hello there,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; i get application error when try to regenerate assets thumbnails.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Apache2/mod_rails
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ImageMagick installed, image_size gem installed.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Any ideas?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Have you tried running your app with Mongrel or Webrick? I know &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; that's
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; not really best for a production environment, but it might help
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; figuring
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; out where the problem is. I was having problems with Paperclipped
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; making
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; thumbnails with Passenger, but everything works perfectly well with
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Mongrel. So evidently there was something wrong with my Passenger
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; set up.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ~Nate
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26566739&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; With optimism,
&lt;br&gt;&amp;gt;&amp;gt; Dmitry Belitsky
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26566739&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26566739&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;With optimism,
&lt;br&gt;Dmitry Belitsky
&lt;br&gt;&lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26566739&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Paperclipped-Error-while-regenerating-assets-tp26565039p26566739.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26565503</id>
	<title>Re: Paperclipped Error while regenerating assets</title>
	<published>2009-11-29T12:06:08Z</published>
	<updated>2009-11-29T12:06:08Z</updated>
	<author>
		<name>Anna-83</name>
	</author>
	<content type="html">Can you do &amp;quot;convert&amp;quot; command from the commandline? That will test your
&lt;br&gt;ImageMagick install.
&lt;br&gt;&lt;br&gt;On Sun, Nov 29, 2009 at 11:41 AM, Dmitry Belitsky &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565503&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmitry.belitsky@...&lt;/a&gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thanks for reply, Nate.
&lt;br&gt;&amp;gt; I tried to run it with Mongrel and get same error:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; NoMethodError (You have a nil object when you didn't expect it!
&lt;br&gt;&amp;gt; You might have expected an instance of ActiveRecord::Base.
&lt;br&gt;&amp;gt; The error occurred while evaluating nil.[]):
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/
&lt;br&gt;&amp;gt; assets_controller.rb:58:in `refresh'
&lt;br&gt;&amp;gt; &amp;nbsp; vendor/extensions/paperclipped/app/controllers/admin/
&lt;br&gt;&amp;gt; assets_controller.rb:57:in `each'
&lt;br&gt;&amp;gt; &amp;nbsp; vendor/extensions/paperclipped/app/controllers/admin/
&lt;br&gt;&amp;gt; assets_controller.rb:57:in `refresh'
&lt;br&gt;&amp;gt; &amp;nbsp; radiant (0.8.1) vendor/plugins/haml/rails/./lib/sass/plugin/
&lt;br&gt;&amp;gt; rails.rb:19:in `process'
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Nov 29, 2009, at 9:26 PM, Nate wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Dmitry Belitsky wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Hello there,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; i get application error when try to regenerate assets thumbnails.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Apache2/mod_rails
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ImageMagick installed, image_size gem installed.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Any ideas?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Have you tried running your app with Mongrel or Webrick? I know that's
&lt;br&gt;&amp;gt; &amp;gt; not really best for a production environment, but it might help
&lt;br&gt;&amp;gt; &amp;gt; figuring
&lt;br&gt;&amp;gt; &amp;gt; out where the problem is. I was having problems with Paperclipped
&lt;br&gt;&amp;gt; &amp;gt; making
&lt;br&gt;&amp;gt; &amp;gt; thumbnails with Passenger, but everything works perfectly well with
&lt;br&gt;&amp;gt; &amp;gt; Mongrel. So evidently there was something wrong with my Passenger
&lt;br&gt;&amp;gt; &amp;gt; set up.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ~Nate
&lt;br&gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; &amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565503&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; With optimism,
&lt;br&gt;&amp;gt; Dmitry Belitsky
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565503&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565503&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Paperclipped-Error-while-regenerating-assets-tp26565039p26565503.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26565267</id>
	<title>Re: Paperclipped Error while regenerating assets</title>
	<published>2009-11-29T11:41:18Z</published>
	<updated>2009-11-29T11:41:18Z</updated>
	<author>
		<name>Dmitry Belitsky-2</name>
	</author>
	<content type="html">Thanks for reply, Nate.
&lt;br&gt;I tried to run it with Mongrel and get same error:
&lt;br&gt;&lt;br&gt;NoMethodError (You have a nil object when you didn't expect it!
&lt;br&gt;You might have expected an instance of ActiveRecord::Base.
&lt;br&gt;The error occurred while evaluating nil.[]):
&lt;br&gt;&amp;nbsp; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/ 
&lt;br&gt;assets_controller.rb:58:in `refresh'
&lt;br&gt;&amp;nbsp; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/ 
&lt;br&gt;assets_controller.rb:57:in `each'
&lt;br&gt;&amp;nbsp; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/ 
&lt;br&gt;assets_controller.rb:57:in `refresh'
&lt;br&gt;&amp;nbsp; &amp;nbsp;radiant (0.8.1) vendor/plugins/haml/rails/./lib/sass/plugin/ 
&lt;br&gt;rails.rb:19:in `process'
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Nov 29, 2009, at 9:26 PM, Nate wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Dmitry Belitsky wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hello there,
&lt;br&gt;&amp;gt;&amp;gt; i get application error when try to regenerate assets thumbnails.
&lt;br&gt;&amp;gt;&amp;gt; Apache2/mod_rails
&lt;br&gt;&amp;gt;&amp;gt; ImageMagick installed, image_size gem installed.
&lt;br&gt;&amp;gt;&amp;gt; Any ideas?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Have you tried running your app with Mongrel or Webrick? I know that's
&lt;br&gt;&amp;gt; not really best for a production environment, but it might help &amp;nbsp;
&lt;br&gt;&amp;gt; figuring
&lt;br&gt;&amp;gt; out where the problem is. I was having problems with Paperclipped &amp;nbsp;
&lt;br&gt;&amp;gt; making
&lt;br&gt;&amp;gt; thumbnails with Passenger, but everything works perfectly well with
&lt;br&gt;&amp;gt; Mongrel. So evidently there was something wrong with my Passenger &amp;nbsp;
&lt;br&gt;&amp;gt; set up.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ~Nate
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565267&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;With optimism,
&lt;br&gt;Dmitry Belitsky
&lt;br&gt;&lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565267&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Paperclipped-Error-while-regenerating-assets-tp26565039p26565267.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26565094</id>
	<title>Re: Paperclipped Error while regenerating assets</title>
	<published>2009-11-29T11:26:33Z</published>
	<updated>2009-11-29T11:26:33Z</updated>
	<author>
		<name>pixelnate</name>
	</author>
	<content type="html">Dmitry Belitsky wrote:
&lt;br&gt;&amp;gt; Hello there,
&lt;br&gt;&amp;gt; i get application error when try to regenerate assets thumbnails.
&lt;br&gt;&amp;gt; Apache2/mod_rails
&lt;br&gt;&amp;gt; ImageMagick installed, image_size gem installed.
&lt;br&gt;&amp;gt; Any ideas?
&lt;br&gt;&lt;br&gt;Have you tried running your app with Mongrel or Webrick? I know that's 
&lt;br&gt;not really best for a production environment, but it might help figuring 
&lt;br&gt;out where the problem is. I was having problems with Paperclipped making 
&lt;br&gt;thumbnails with Passenger, but everything works perfectly well with 
&lt;br&gt;Mongrel. So evidently there was something wrong with my Passenger set up.
&lt;br&gt;&lt;br&gt;&lt;br&gt;~Nate
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565094&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Paperclipped-Error-while-regenerating-assets-tp26565039p26565094.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26565068</id>
	<title>Re: Recursion error: already rendering the part</title>
	<published>2009-11-29T11:23:31Z</published>
	<updated>2009-11-29T11:23:31Z</updated>
	<author>
		<name>Dmitry Belitsky-2</name>
	</author>
	<content type="html">Thanks Benny,
&lt;br&gt;will write extension for undo this.
&lt;br&gt;I really need use same parts on one page more then ones.
&lt;br&gt;&lt;br&gt;On Nov 25, 2009, at 11:25 AM, Benny Degezelle wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;&amp;gt; i'm still getting error about recursion,
&lt;br&gt;&amp;gt;&amp;gt; it happens not only local, but on my server also.
&lt;br&gt;&amp;gt;&amp;gt; What should i check?
&lt;br&gt;&amp;gt;&amp;gt; Any ideas? How i can do same thing other way?
&lt;br&gt;&amp;gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Dmitry,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I ran into the same issue, and found the culprit:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://github.com/radiant/radiant/commit/815b49d320d7504b0acc6ab65e4752101a15a018&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/radiant/radiant/commit/815b49d320d7504b0acc6ab65e4752101a15a018&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You can 'undo' this change by overwriting the r:content tag in an &amp;nbsp;
&lt;br&gt;&amp;gt; extension
&lt;br&gt;&amp;gt; (or in Radiant itself if you freeze it).
&lt;br&gt;&amp;gt; Just comment out the lines that were added to standard_tags.rb, and &amp;nbsp;
&lt;br&gt;&amp;gt; the
&lt;br&gt;&amp;gt; errors will be gone.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This is rather hack-ish though, I for one would rather see the &amp;nbsp;
&lt;br&gt;&amp;gt; change undone
&lt;br&gt;&amp;gt; in core, because I imagine there are many occasions on many sites &amp;nbsp;
&lt;br&gt;&amp;gt; where this
&lt;br&gt;&amp;gt; would occur.. or maybe I'm missing something.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Benny
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565068&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;With optimism,
&lt;br&gt;Dmitry Belitsky
&lt;br&gt;&lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565068&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Recursion-error%3A-already-rendering-the-part-tp26433649p26565068.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26565039</id>
	<title>Paperclipped Error while regenerating assets</title>
	<published>2009-11-29T11:19:26Z</published>
	<updated>2009-11-29T11:19:26Z</updated>
	<author>
		<name>Dmitry Belitsky-2</name>
	</author>
	<content type="html">Hello there,
&lt;br&gt;i get application error when try to regenerate assets thumbnails.
&lt;br&gt;Apache2/mod_rails
&lt;br&gt;ImageMagick installed, image_size gem installed.
&lt;br&gt;Any ideas?
&lt;br&gt;&lt;br&gt;######################################################################
&lt;br&gt;######################################################################
&lt;br&gt;&lt;br&gt;Processing Admin::AssetsController#refresh (for 94.230.204.190 at &amp;nbsp;
&lt;br&gt;2009-11-29 21:16:19) [POST]
&lt;br&gt;&amp;nbsp; &amp;nbsp;Parameters: {&amp;quot;action&amp;quot;=&amp;gt;&amp;quot;refresh&amp;quot;, &amp;quot;controller&amp;quot;=&amp;gt;&amp;quot;admin/assets&amp;quot;}
&lt;br&gt;&lt;br&gt;NoMethodError (undefined method `[]' for nil:NilClass):
&lt;br&gt;&amp;nbsp; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/ 
&lt;br&gt;assets_controller.rb:58:in `refresh'
&lt;br&gt;&amp;nbsp; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/ 
&lt;br&gt;assets_controller.rb:57:in `each'
&lt;br&gt;&amp;nbsp; &amp;nbsp;vendor/extensions/paperclipped/app/controllers/admin/ 
&lt;br&gt;assets_controller.rb:57:in `refresh'
&lt;br&gt;&amp;nbsp; &amp;nbsp;radiant (0.8.1) vendor/plugins/haml/rails/./lib/sass/plugin/ 
&lt;br&gt;rails.rb:19:in `process'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/rack/request_handler.rb: 
&lt;br&gt;95:in `process_request'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/abstract_request_handler.rb: 
&lt;br&gt;207:in `main_loop'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/railz/ 
&lt;br&gt;application_spawner.rb:374:in `start_request_handler'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/railz/ 
&lt;br&gt;application_spawner.rb:332:in `handle_spawn_application'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/utils.rb:184:in `safe_fork'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/railz/ 
&lt;br&gt;application_spawner.rb:330:in `handle_spawn_application'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/abstract_server.rb:352:in &amp;nbsp;
&lt;br&gt;`__send__'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/abstract_server.rb:352:in &amp;nbsp;
&lt;br&gt;`main_loop'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/abstract_server.rb:196:in &amp;nbsp;
&lt;br&gt;`start_synchronously'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/abstract_server.rb:163:in &amp;nbsp;
&lt;br&gt;`start'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/railz/ 
&lt;br&gt;application_spawner.rb:209:in `start'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/spawn_manager.rb:262:in &amp;nbsp;
&lt;br&gt;`spawn_rails_application'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/ 
&lt;br&gt;abstract_server_collection.rb:126:in `lookup_or_add'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/spawn_manager.rb:256:in &amp;nbsp;
&lt;br&gt;`spawn_rails_application'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/ 
&lt;br&gt;abstract_server_collection.rb:80:in `synchronize'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/ 
&lt;br&gt;abstract_server_collection.rb:79:in `synchronize'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/spawn_manager.rb:255:in &amp;nbsp;
&lt;br&gt;`spawn_rails_application'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/spawn_manager.rb:154:in &amp;nbsp;
&lt;br&gt;`spawn_application'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/spawn_manager.rb:287:in &amp;nbsp;
&lt;br&gt;`handle_spawn_application'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/abstract_server.rb:352:in &amp;nbsp;
&lt;br&gt;`__send__'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/abstract_server.rb:352:in &amp;nbsp;
&lt;br&gt;`main_loop'
&lt;br&gt;&amp;nbsp; &amp;nbsp;passenger (2.2.7) lib/phusion_passenger/abstract_server.rb:196:in &amp;nbsp;
&lt;br&gt;`start_synchronously'
&lt;br&gt;&lt;br&gt;Rendering /public/500.html (500 Internal Server Error)
&lt;br&gt;&lt;br&gt;######################################################################
&lt;br&gt;######################################################################
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;With optimism,
&lt;br&gt;Dmitry Belitsky
&lt;br&gt;&lt;a href=&quot;http://belitsky.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://belitsky.info&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565039&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Paperclipped-Error-while-regenerating-assets-tp26565039p26565039.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26565003</id>
	<title>Re: Copy_Move Extension still compatible with 0.8?</title>
	<published>2009-11-29T11:14:44Z</published>
	<updated>2009-11-29T11:14:44Z</updated>
	<author>
		<name>Anna-83</name>
	</author>
	<content type="html">I installed this extension without problems, but I also agree that once
&lt;br&gt;something is off, the whole thing implodes. This reminds me of installign
&lt;br&gt;the mailer, and comments. I agree that copy and moving of pages seems core
&lt;br&gt;to a &amp;nbsp;CMS system. on a side note, usually things like this happen because I
&lt;br&gt;didn't branch the right version, or didn't run update at a certain time in
&lt;br&gt;the instructions.
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26565003&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Copy_Move-Extension-still-compatible-with-0.8--tp26555911p26565003.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26564976</id>
	<title>Re: Copy_Move Extension still compatible with 0.8?</title>
	<published>2009-11-29T11:11:31Z</published>
	<updated>2009-11-29T11:11:31Z</updated>
	<author>
		<name>pixelnate</name>
	</author>
	<content type="html">Jeff Casimir wrote:
&lt;br&gt;&amp;gt; Arthur,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for the tip on drag_order, it sounded great. &amp;nbsp;It took me quite
&lt;br&gt;&amp;gt; a bit of trial and error to get it working. &amp;nbsp;It makes me realize that
&lt;br&gt;&amp;gt; the combination of radiant versions, rails versions, and extension
&lt;br&gt;&amp;gt; versions can really be a pain in the ass.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;+1
&lt;br&gt;&lt;br&gt;And it's only going to get [much] worse with v0.9.
&lt;br&gt;&amp;gt; Just an opinion, it would seem that moving/reordering pages is a
&lt;br&gt;&amp;gt; pretty core function of a CMS. &amp;nbsp;It would be sensible to me to roll
&lt;br&gt;&amp;gt; this drag_order extension into the 0.9 core gem.
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;+1
&lt;br&gt;&lt;br&gt;I understand the core devs (Sean, et. al.) being hesitant to add a bunch 
&lt;br&gt;of features into radiant that not everybody needs, but reordering pages 
&lt;br&gt;really is IMHO something that should be in core. I also think that 
&lt;br&gt;adding images (preferably with Paperclipped), the SnS, and Settings 
&lt;br&gt;extensions should be in core as well, but that's just me.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~Nate
&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26564976&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Copy_Move-Extension-still-compatible-with-0.8--tp26555911p26564976.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26563255</id>
	<title>Re: Copy_Move Extension still compatible with 0.8?</title>
	<published>2009-11-29T08:02:37Z</published>
	<updated>2009-11-29T08:02:37Z</updated>
	<author>
		<name>Steven Southard</name>
	</author>
	<content type="html">Wasn't all that in the readme?
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Nov 29, 2009, at 9:51 AM, Jeff Casimir wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Arthur,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for the tip on drag_order, it sounded great. &amp;nbsp;It took me quite
&lt;br&gt;&amp;gt; a bit of trial and error to get it working. &amp;nbsp;It makes me realize that
&lt;br&gt;&amp;gt; the combination of radiant versions, rails versions, and extension
&lt;br&gt;&amp;gt; versions can really be a pain in the ass.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Just an opinion, it would seem that moving/reordering pages is a
&lt;br&gt;&amp;gt; pretty core function of a CMS. &amp;nbsp;It would be sensible to me to roll
&lt;br&gt;&amp;gt; this drag_order extension into the 0.9 core gem.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Anyway, here is the story of my struggle through getting drag_order
&lt;br&gt;&amp;gt; working: -----------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Downloaded the latest TAR from GitHub, extracted
&lt;br&gt;&amp;gt; - Ran rake radiant:extensions:drag_order:migrate -- failed.
&lt;br&gt;&amp;gt; - Ran rake radiant:extensions:drag_order:update -- failed.
&lt;br&gt;&amp;gt; - Ran rake radiant:extensions:drag_order:update -t -- failed, but see
&lt;br&gt;&amp;gt; that the problem is the &amp;quot;require 'application'&amp;quot; on line two of
&lt;br&gt;&amp;gt; drag_order_extension.rb. &amp;nbsp;Change it to &amp;quot;application_controller&amp;quot;
&lt;br&gt;&amp;gt; - Ran rake radiant:extensions:drag_order:update -t -- passed
&lt;br&gt;&amp;gt; - Ran rake radiant:extensions:drag_order:migrate -t -- failed, error
&lt;br&gt;&amp;gt; from DB that &amp;quot;Pages&amp;quot; table already has a position field (from the
&lt;br&gt;&amp;gt; REORDER extension). Edit the migration to comment out the column
&lt;br&gt;&amp;gt; creation lines, re-run, passed.
&lt;br&gt;&amp;gt; - Restart the server
&lt;br&gt;&amp;gt; - Here's what I see on the admin index page:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://img.skitch.com/20091129-x54ie7nrq27r1g8n8kk6piqp6g.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img.skitch.com/20091129-x54ie7nrq27r1g8n8kk6piqp6g.jpg&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Working with extensions always makes me feel like a freaking &amp;nbsp;
&lt;br&gt;&amp;gt; noobie, ugh!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I looked in vendor/extensions/drag_order/app/views/admin/page/ and
&lt;br&gt;&amp;gt; everything is there. &amp;nbsp;Though I wondered why &amp;quot;page&amp;quot; and not &amp;quot;pages&amp;quot; --
&lt;br&gt;&amp;gt; renamed the folder to &amp;quot;pages&amp;quot;, restarted, and those error messages are
&lt;br&gt;&amp;gt; gone. &amp;nbsp;Here's what I see:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://img.skitch.com/20091129-pkk3m9n5iqsphw7i9253rsyhw1.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://img.skitch.com/20091129-pkk3m9n5iqsphw7i9253rsyhw1.jpg&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sweet! Try it and --- uhhh --- nothing happens. &amp;nbsp;Look at the HTML
&lt;br&gt;&amp;gt; source and find this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;td class='drag_order'&amp;gt;&amp;lt;img alt=&amp;quot;Drag this icon to move the page&amp;quot;
&lt;br&gt;&amp;gt; src=&amp;quot;/images/admin/drag_order.png?1259505171&amp;quot; /&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Looks reasonable, but there must be some Javascript missing. &amp;nbsp;Look at
&lt;br&gt;&amp;gt; the header area and see prototype, string, effects, tabcontrol,
&lt;br&gt;&amp;gt; ruledtable, admin, sitemap, and lowpro javascripts. &amp;nbsp;Nothing about
&lt;br&gt;&amp;gt; drag_order, hmmm. &amp;nbsp;Look in the file system and I see drag_order.js
&lt;br&gt;&amp;gt; under public/javascripts/admin/, so the file is in the right place
&lt;br&gt;&amp;gt; just not being included in the header.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I really don't understand how plugins get loaded and such, but I see
&lt;br&gt;&amp;gt; the include statements in /app/views/admin/pages/_header.html.haml.
&lt;br&gt;&amp;gt; Clearly this file isn't getting picked up for some reason. &amp;nbsp;As a first
&lt;br&gt;&amp;gt; hack, I copy the two include lines to the _header.html.haml of the
&lt;br&gt;&amp;gt; REORDER extension, since that one seems to be getting loaded. &amp;nbsp;Copy
&lt;br&gt;&amp;gt; the includes, restart, reload, and it looks good! &amp;nbsp;I can drag the
&lt;br&gt;&amp;gt; handle around and see the purple indicator.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Drop a file, then boom: Application error from the URL
&lt;br&gt;&amp;gt; &amp;quot;&lt;a href=&quot;http://chavez.casimircreative.com/admin/pages/75/move_to/106/1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://chavez.casimircreative.com/admin/pages/75/move_to/106/1&lt;/a&gt;&amp;quot;.
&lt;br&gt;&amp;gt; Ugh. &amp;nbsp;Check out the log and this is what I see:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Processing ApplicationController#move_to (for 76.106.40.99 at
&lt;br&gt;&amp;gt; 2009-11-29 15:12:57) [GET]
&lt;br&gt;&amp;gt; &amp;nbsp; Parameters: {&amp;quot;rel&amp;quot;=&amp;gt;&amp;quot;106&amp;quot;, &amp;quot;action&amp;quot;=&amp;gt;&amp;quot;move_to&amp;quot;, &amp;quot;id&amp;quot;=&amp;gt;&amp;quot;75&amp;quot;,
&lt;br&gt;&amp;gt; &amp;quot;controller&amp;quot;=&amp;gt;&amp;quot;admin/page&amp;quot;, &amp;quot;pos&amp;quot;=&amp;gt;&amp;quot;1&amp;quot;}
&lt;br&gt;&amp;gt; NameError (uninitialized constant Admin::PageController):
&lt;br&gt;&amp;gt; &amp;nbsp; /opt/ruby-enterprise/lib/ruby/gems/1.8/gems/passenger-2.2.4/lib/ 
&lt;br&gt;&amp;gt; phusion_passenger/rack/request_handler.rb:91:in
&lt;br&gt;&amp;gt; `process_request'
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I already know there's something about Page versus Pages, so this
&lt;br&gt;&amp;gt; isn't shocking. &amp;nbsp;First I look in drag_order_extension.rb and find the
&lt;br&gt;&amp;gt; &amp;quot;activate&amp;quot; and &amp;quot;deactivate&amp;quot; methods that must be responsible for
&lt;br&gt;&amp;gt; telling Radiant about the extension's views, modules, and such. &amp;nbsp;I
&lt;br&gt;&amp;gt; should come back here to figure out why the _header wasn't being
&lt;br&gt;&amp;gt; picked up. &amp;nbsp;Moving on...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I search in drag_order/lib/drag_order for any files containing the
&lt;br&gt;&amp;gt; text &amp;quot;PageController&amp;quot; (from the error message). &amp;nbsp;The only appears in
&lt;br&gt;&amp;gt; &amp;quot;page_controller_extensions.rb&amp;quot;, so I rename the file itself to
&lt;br&gt;&amp;gt; &amp;quot;pages_controller_extensions.rb&amp;quot; and, inside the file, rename the
&lt;br&gt;&amp;gt; module to DragOrder::PagesControllerExtensions.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Reload and boom: uninitialized constant
&lt;br&gt;&amp;gt; DragOrder::PageControllerExtensions error from the Radiant extension
&lt;br&gt;&amp;gt; loader. &amp;nbsp;Sounds reasonable. &amp;nbsp;Looking at the initializer code radiant
&lt;br&gt;&amp;gt; is calling that activate method that I saw in the
&lt;br&gt;&amp;gt; drag_order_extension.rb file, so I'll go look at that.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The lines that caught my eye before looked like
&lt;br&gt;&amp;gt; &amp;quot;(Admin::PageController rescue Admin::PagesController)&amp;quot; which seemed
&lt;br&gt;&amp;gt; unnecessary if my instance is using pages. &amp;nbsp;So I do some simplifying
&lt;br&gt;&amp;gt; and renaming to end up with this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; def activate
&lt;br&gt;&amp;gt; &amp;nbsp; admin.page.index.add :sitemap_head, &amp;quot;drag_order_header&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; admin.page.index.add :node, &amp;quot;drag_order&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; admin.page.index.add :top, &amp;quot;header&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; Page.send :include, DragOrder::PageExtensions
&lt;br&gt;&amp;gt; &amp;nbsp; Admin::PagesController.send :helper, DragOrder::PageHelper
&lt;br&gt;&amp;gt; &amp;nbsp; Admin::PagesController.send :include, &amp;nbsp;
&lt;br&gt;&amp;gt; DragOrder::PagesControllerExtensions
&lt;br&gt;&amp;gt; &amp;nbsp; StandardTags.send :include, DragOrder::TagExtensions
&lt;br&gt;&amp;gt; end
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I compare that to the activate method of the working REORDER extension
&lt;br&gt;&amp;gt; and see that the top three lines are basically identical. &amp;nbsp;I wonder
&lt;br&gt;&amp;gt; why the partials aren't getting picked up. &amp;nbsp;Maybe this whole method
&lt;br&gt;&amp;gt; isn't getting executed?? &amp;nbsp;Restart the server and see what happens...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It loads. &amp;nbsp;Try to do a drag &amp; drop, and:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Processing ApplicationController#move_to (for 76.106.40.99 at
&lt;br&gt;&amp;gt; 2009-11-29 15:38:14) [GET]
&lt;br&gt;&amp;gt; &amp;nbsp; Parameters: {&amp;quot;rel&amp;quot;=&amp;gt;&amp;quot;106&amp;quot;, &amp;quot;action&amp;quot;=&amp;gt;&amp;quot;move_to&amp;quot;, &amp;quot;id&amp;quot;=&amp;gt;&amp;quot;75&amp;quot;,
&lt;br&gt;&amp;gt; &amp;quot;controller&amp;quot;=&amp;gt;&amp;quot;admin/page&amp;quot;, &amp;quot;pos&amp;quot;=&amp;gt;&amp;quot;1&amp;quot;}
&lt;br&gt;&amp;gt; NameError (uninitialized constant Admin::PageController):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Maybe it's a routing problem? &amp;nbsp;I reopen drag_order_extension.rb and
&lt;br&gt;&amp;gt; look at the &amp;quot;define_routes&amp;quot; method. &amp;nbsp;I change this line:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; map.with_options :controller =&amp;gt; &amp;quot;admin/page&amp;quot; do |page|
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; to this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; map.with_options :controller =&amp;gt; &amp;quot;admin/pages&amp;quot; do |page|
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Restart the server, drag and drop...HOLY CRAP IT WORKED!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I at once love and hate the extension system.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Jeff
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Sun, Nov 29, 2009 at 12:04 AM, Nate &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26563255&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pixelnate@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Arthur Gunn wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hey Jeff,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; No insights into copy_move functionality, you could of course &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; checkout
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; a previous version, but I wonder why not use:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://github.com/bright4/radiant-drag-order&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/bright4/radiant-drag-order&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Ajax copy, move and reorder all in one.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Awesome find. I thought Sean's reorder extension had withered and &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; died.
&lt;br&gt;&amp;gt;&amp;gt; Nice to see that it was revived and updated.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ~Nate
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26563255&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Radiant mailing list
&lt;br&gt;&amp;gt; Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26563255&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;&amp;gt; Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Radiant mailing list
&lt;br&gt;Post: &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26563255&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Radiant@...&lt;/a&gt;
&lt;br&gt;Search: &lt;a href=&quot;http://radiantcms.org/mailing-list/search/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radiantcms.org/mailing-list/search/&lt;/a&gt;&lt;br&gt;Site: &amp;nbsp; &lt;a href=&quot;http://lists.radiantcms.org/mailman/listinfo/radiant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.radiantcms.org/mailman/listinfo/radiant&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Radiant---User-%28New%29-f31962.html&quot; embed=&quot;fixTarget[31962]&quot; target=&quot;_top&quot; &gt;Radiant - User (New)&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Copy_Move-Extension-still-compatible-with-0.8--tp26555911p26563255.html" />
</entry>

</feed>
