issue 2
(TagCloud) commented on by 9dragon9
- Hi Miguel,
may be tha tag-cloud-tag would help you out for this
its not perfect, but a start
Hi Miguel,
may be tha tag-cloud-tag would help you out for this
its not perfect, but a start
Nov 30, 2008
issue 2
(TagCloud) reported by miguel.ping
- A TagCloud functionality would be great. A static method on the Tag class
would do the trick. Here is the query:
Tag.withCriteria {
projections {
groupProperty('name')
countDistinct('name')
}
}
A TagCloud functionality would be great. A static method on the Tag class
would do the trick. Here is the query:
Tag.withCriteria {
projections {
groupProperty('name')
countDistinct('name')
}
}
Oct 07, 2008
issue 1
(Improve taggable type name) reported by akochnev
- Currently, the plugin uses delegate.class.toString() as the taggable type
of Tagging, resulting in the string "class Foo" (for Foo.groovy) stored in
the database for the taggable type. A cleaner (and more compatible w/
Rails) way is to use delegate.class.name, which results in 'Foo' being
stored in the database.
Attached is the patch.
Currently, the plugin uses delegate.class.toString() as the taggable type
of Tagging, resulting in the string "class Foo" (for Foo.groovy) stored in
the database for the taggable type. A cleaner (and more compatible w/
Rails) way is to use delegate.class.name, which results in 'Foo' being
stored in the database.
Attached is the patch.