By fumbling on
I need a bit more granularity than the either/or "administer taxonomy" checkbox in permissions. I would like to have a folksonomy where users can create categories (taxonomies) and terms, but not delete categories (taxonomies) and terms. Is there any module that helps on this front?
Comments
Search downloads is your friend
I did a simple search on taxonomy permissions and found the Taxonomy delegate module. It doesn't allow the creation of new taxonomies, but does allow for modifying existing taxonomies based on roles.
---
"Nice to meet you Rose...run for your life." - The Doctor
My first public Drupal site - EyeOnThe503
Thanks, I'll try Taxonomy
Thanks, I'll try Taxonomy delegate, looks like it may get me at least most of the way home on this.
=-=
allowing of user created terms can be done with "tags" in core.
Thanks. I completely agree
Thanks. I completely agree that users can add tags to posts and that these contribute to the taxonomy at the bottom level. But what I'm looking for is the capacity for users to create taxonomies/categories themselves (rather than only terms within taxonomies), and independent of posting content. I realize now this is probably easier said than done though.
=-=
ah, you mean vocabularies
Use the dev version, and add String Overrides if you'd like
I found Taxonomy Delegate module myself the other day too. I found that under Drupal 6, it is very important to use the Dev version of the module. The 6.x-1.3 release had various problems for me (after editing its settings, and also at seemingly random times, the module would stop working - the menu item would no longer appear, and even going manually to the page's address would not work. I fully uninstalled the module and switched to the 2008-Nov-07 dev version, which is several months newer, and it works flawlessly (aside from one small bug which you can find an easy fix for in the Issues queue, where it shows !vocab or something instead of displaying the actual name).
Since my own interest in Taxonomy Delegate is to make controlled access to taxonomy both accessible and understandable for end-users (not Drupal admins), I also augmented it with String Overrides module, to change all of Taxonomy's confusing terminology to something that requires no explanation for people who don't want/need to know about "taxonomy" :) If you'd like, save the following into a text file with a .po extension and import it into String Overrides module (this basically changes most/every instance of the word Term into Category... it also changes the real taxonomy section's wording for consistency in my scenario, but you can remove those parts if you prefer):
-- David
davidnewkerk.com | absolutecross.com
View my Drupal lessons & guides
I forgot to mention that I
I forgot to mention that I agree with the suggestion to use Free Tagging in your scenario, as it allows the creation of terms without permitting the deletion of terms. I'm not sure if there's any way (though maybe there is) to allow users access to create whole taxonomy vocabularies though, aside from giving them the administer taxonomy permission. Off-hand I'm not sure what I'd want to ever do that for (though I'm guessing you have a good reason)... perhaps instead (if it applies to your situation) consider setting a specific vocabulary and just use its built-in hierarchy ability (terms can be the "children" of other "parent" terms).
You might also have a look at http://drupal.org/project/community_tags
-- David
davidnewkerk.com | absolutecross.com
View my Drupal lessons & guides
Thanks, see my reply above
Thanks, see my reply above to "very misunderstood" regarding using tagging. I like your idea of just treating tags as categories though by hiding the top level. But can users ever create tags separate from creating content those tags are attached to? In terms of what I'm trying to do, it's similar to the dmoz.org open directory project, but for micro-content, not sites. Thanks again.