[Radiant] tags extension -- words that won't validate

2010-04-06 Thread Steven Southard
I've been using the tags extension ubiquitously through out a large site and I've found one word that won't validate. Anytime I use "Media" I get, "Validation errors occurred while processing this form. Please take a moment to review the form and correct any input errors before continuing."

[Radiant] tags extension -- tag_cloud minimum

2010-03-03 Thread Steven Southard
I've been searching through the code to find what is setting the minimum of three pages tagged before a tag is listed in a tag_cloud but so far it has eluded me. Can anyone point me in the right direction? Steven Steven Southard http://www.stevensouthard.com _

[Radiant] Tags Extension Bug?

2009-08-28 Thread subsorama
Hi, I think I am seeing a bug in the Tags extension - whenever a tag is deleted from a page it appears that same tag cannot be re-applied even to different page. Has anyone else come across this? Any idea's on what might be causing it? Thanks, ___

[Radiant] Radiant Tags Extension

2009-06-30 Thread Petrik de Heus
I had some trouble with the page ordering not working properly (with the radiant-reorder-extension). Turns out it was caused by the radiant-tags-extension which adds a setter for meta_tags to Page: def meta_tags= tags self.save if self.new_record? ... The problem with this is

Re: [Radiant] tags extension

2009-04-07 Thread Steven Southard
I've done this twice now on two different servers. If I use git clone to build my radiant project and try to start it up with the tags extension it has this problem. If I use the radiant gem to build my project it seems to work fine. The problem is solved for me but I can't help and wond

[Radiant] tags extension

2009-04-06 Thread Steven Southard
Has anyone else installed Radiant 7.1 and the tags and seen: NoMethodError in Admin/pages#edit Showing vendor/extensions/tags/app/views/admin/pages/ _tag_field.html.erb where line #3 raised: undefined method `quoted_table_name' for false:FalseClass Extracted source (around line #3): 1: 2:

[Radiant] tags extension and has_many_polymorphs

2009-02-11 Thread Jim Gay
I'm curious about the usage of has_many_polymorphs provided in the tags extension. Has anyone built other extensions on top of this? Polymorphic association is overkill if the only thing being tagged is a Page model so I'm contemplating a major refactoring of the tags extension or writing a

Re: [Radiant] tags extension

2009-02-10 Thread Enrico Teotti
Hi, maybe I was drunk. Apparently works fine inside No need for tricks. It will automatically display the tags of that children page. Ciao, Enrico 2009/1/28 Simon Josi : > Maybe this could work: > http://github.com/Aissac/radiant-extensions-extension > > greets > /simon > > On Wed, 28 Jan 2009 1

Re: [Radiant] tags extension

2009-02-10 Thread Steven Southard
I'm looking at radius_tags.rb tag "all_tags:each" do |tag| order = tag.attr['order'] || 'name' limit = tag.attr['limit'] || '5' result = [] case order when 'name' all_tags = MetaTag.find(:all, :limit => limit) else all_tags = MetaTag.cloud(:limit => limit)

[Radiant] tags extension

2009-02-09 Thread Steven Southard
seems to list tags even if they're not currently being used. Is there any way to list only tags that are being used? Or is there any way to manage tag or at least remove unused tags? //Steven ___ Radiant mailing list Post: Radiant@radiantcms.o

Re: [Radiant] tags extension -> dropdown

2009-02-09 Thread Steven Southard
While trying to express what it was I was really after, I came up with this and it works fine for what I wanted. Thank you for you assistance. option> //Steven On Feb 9, 2009, at 7:17 PM, N. Turnage wrote: Steven Southard wrote: Really? It looks like it would make a nice dropdown of some

Re: [Radiant] tags extension -> dropdown

2009-02-09 Thread N. Turnage
Steven Southard wrote: Really? It looks like it would make a nice dropdown of something, yet I don't see how that accesses tags at all. This tells radiant to look in the "something" tree. This sets up a for each loop. This inserts the value of the slug (think "something-child-one") as

Re: [Radiant] tags extension -> dropdown

2009-02-09 Thread Steven Southard
Really? It looks like it would make a nice dropdown of something, yet I don't see how that accesses tags at all. On Feb 9, 2009, at 7:01 PM, N. Turnage wrote: Steven Southard wrote: Is there any way to break tags up so It can be made into a dropdown? I imagine it would be something like

Re: [Radiant] tags extension -> dropdown

2009-02-09 Thread N. Turnage
Steven Southard wrote: Is there any way to break tags up so It can be made into a dropdown? I imagine it would be something like this: // Nate ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-

[Radiant] tags extension -> dropdown

2009-02-09 Thread Steven Southard
Is there any way to break tags up so It can be made into a dropdown? ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant

Re: [Radiant] tags extension

2009-01-28 Thread Simon Josi
Maybe this could work: http://github.com/Aissac/radiant-extensions-extension greets /simon On Wed, 28 Jan 2009 12:14:42 +1100 Enrico Teotti wrote: > Hi, > I need to have the tag list for each page coming out of: > > > I'd use a: > > > but since that's not allowed by radius I am now clueless

Re: [Radiant] tags extension

2009-01-27 Thread Enrico Teotti
Hi, I need to have the tag list for each page coming out of: I'd use a: but since that's not allowed by radius I am now clueless. How would you do it? Is anybody doing such a thing? Cheers, Enrico ___ Radiant mailing list Post: Radiant@radiantcms.or

Re: [Radiant] tags extension

2009-01-20 Thread Jim Gay
Steven, Check out the tag for non-0.7 radiant http://github.com/jomz/radiant-tags-extension/tree/pre-radiant-0.7 -Jim On Jan 19, 2009, at 8:18 PM, Steven Southard wrote: It seemed to be something with the pages folder. I changed the name to "page" and it worked fine. On Ja

Re: [Radiant] tags extension

2009-01-19 Thread Steven Southard
It seemed to be something with the pages folder. I changed the name to "page" and it worked fine. On Jan 19, 2009, at 6:35 PM, Steven Southard wrote: Yeah, actually i think my copy and past left the "s" off but it's actually located there with the "s". Don't think that is the problem.

Re: [Radiant] tags extension

2009-01-19 Thread Steven Southard
Yeah, actually i think my copy and past left the "s" off but it's actually located there with the "s". Don't think that is the problem. Any other ideas? On Jan 19, 2009, at 5:04 PM, Jeroen Janssen wrote: Hi, I think the extension needs to be installed in the "vendor/extensions/tags" di

Re: [Radiant] tags extension

2009-01-19 Thread Jeroen Janssen
Hi, I think the extension needs to be installed in the "vendor/extensions/tags" directory if I understand correctly. Best regards, Jeroen Janssen On Mon, Jan 19, 2009 at 11:03 PM, Steven Southard wrote: > I tried installing Jomz's tags extension using: > > git clone git://github.com/jomz/radia

[Radiant] tags extension

2009-01-19 Thread Steven Southard
I tried installing Jomz's tags extension using: git clone git://github.com/jomz/radiant-tags-extension.git vendor/ extensions/tag rake production radiant:extensions:tags:install and it seemed to install fine except I get: `tag_field' default partial not found! on any page I was wondering if

Re: [Radiant] Tags extension: move to latest edge breaks db migration

2008-11-13 Thread Benny Degezelle
> The task rake db:migration breaks on a file of the Tags extensions if I > move to latest edge. http://pastie.org/312887 > > > /simon Hi Simon, Quite sure that this is caused by a change in rails; rails 2.1.1 moved module Dependencies to ActiveSupport::Dependencies I'm swamped as ever at the mo

[Radiant] Tags extension: move to latest edge breaks db migration

2008-11-12 Thread Simon Josi
The task rake db:migration breaks on a file of the Tags extensions if I move to latest edge. http://pastie.org/312887 /simon signature.asc Description: PGP signature ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org

Re: [Radiant] Re: radiant-tags-extension with PostgreSQL?

2008-10-26 Thread Jay Levitt
Benny Degezelle wrote: 5. I also think I sent a pull request to everyone else. Hope that's the right thing to do. Pull request received and handled. I cherry-picked your commits instead of merging though, because i think the tag_list_technorati stuff by ehaselwanter should go in a seperate br

[Radiant] Re: radiant-tags-extension with PostgreSQL?

2008-10-26 Thread Benny Degezelle
> 5. I also think I sent a pull request to everyone else. Hope that's the > right thing to do. Pull request received and handled. I cherry-picked your commits instead of merging though, because i think the tag_list_technorati stuff by ehaselwanter should go in a seperate branch. 6. If all the p

Re: [Radiant] radiant-tags-extension with PostgreSQL?

2008-10-25 Thread Jay Levitt
Jay Levitt wrote: I added Edmund Haselwanter's bug fix to my copy of the "tags" extension (thanks for that fix!), and now I'm trying to display a tag_cloud. But I get this error instead of a cloud: PGError: ERROR: column "meta_tags.id" must appear in the GROUP BY clause or be used in an aggr

[Radiant] radiant-tags-extension with PostgreSQL?

2008-10-25 Thread Jay Levitt
I added Edmund Haselwanter's bug fix to my copy of the "tags" extension (thanks for that fix!), and now I'm trying to display a tag_cloud. But I get this error instead of a cloud: PGError: ERROR: column "meta_tags.id" must appear in the GROUP BY clause or be used in an aggregate function : SE

Re: [Radiant] Bugfix and new tag for radiant-tags-extension

2008-10-07 Thread Haselwanter Edmund
On 07.10.2008, at 20:42, Jim Gay wrote: Edmund, Thanks for catching that. I added in the complex strings stuff so it was my mistake. Benny (github.com/jomz) has been managing this extension so you could fork the extension, make the changes, and send him the pull request. So there is a kin

Re: [Radiant] Bugfix and new tag for radiant-tags-extension

2008-10-07 Thread Jim Gay
do is spec all the behavior for tags. -Jim On Oct 7, 2008, at 1:39 PM, Haselwanter Edmund wrote: Hi *, I came across a smal bug in the radiant-tags-extension. What is the recommended way to provide the bug fix? Always directly contact the author? Its in the tag_list tag when using the

[Radiant] Bugfix and new tag for radiant-tags-extension

2008-10-07 Thread Haselwanter Edmund
Hi *, I came across a smal bug in the radiant-tags-extension. What is the recommended way to provide the bug fix? Always directly contact the author? Its in the tag_list tag when using the complex mode. the string should be splited with MetaTag::DELIMITER and not with " ". And