By David Latapie on
Hello,
Is there a way or a module to filter content according to input format (admin/content/node)? For instance, I would like to find any content that had been submitted under “Filtered HTML”.
Thank you
Hello,
Is there a way or a module to filter content according to input format (admin/content/node)? For instance, I would like to find any content that had been submitted under “Filtered HTML”.
Thank you
Comments
SQL solution
I had to do this a while back when migrating from one filter to another (since I wanted to uninstall Markdown in favor of Textile).
You'll want to do a select from the node_revisions table and then change the ones that are of the format you're interested in changing.
So it'd be
select * from node_revisions where format = 4or something.Extrapolation: filtering everything
Thank you for this solution. I did it manually, since I have just a few of them, but my idea was to be able to allow it for others.
May I suggest something? In a French blogware called Dotclear, it is possible to subscribe to every kind of research; tag, lang, tag+lang, tag+lang+month, month… I’d appreciate the same kind of feature for filters, some sort of “if it is a function you can filter on it”. For now, every filter has to be created manually. Of course, not every RSS had been created manually in Dotclear; this is the platform that allows it natively. I hope such a thing is possible with Drupal filters.
Bottom line: to be able to filter on every aspect. For a given feature, to be able to filter on this feature. This would of course apply to our present input format thing.
I hope I was clear. What do you think of it?
(BTW, sorry for the exclamation mark in the title)