I'm new to Drupal but after only two days I start to like it a lot!
Drupal version: 4.6
Web-server: Apache
I'm working on a small filter module that uses XML as input language and translates to HTML using XSLT. Thanks to the exelent filter_example.module:
http://drupaldocs.org/api/4.6/file/contributions/docs/developer/examples...
, it was quite easy to create my filter.
My problem is that I would like to be able to change the filter (that is change the xsl style sheet that the filter uses) and these changes should affect all nodes that uses the filter.
I tried to do:
case 'no cache':
return TRUE;
, but this doesn't give me the desired behaviour. If I change the xsl style sheet, only nodes created after the changes will be affected. Any suggestions to what I'm doing wrong?
I've also noticed, that if I click on the preview button without changing the Body content, the filter will not be applied but this is probalby a desired feature.
Kind regards,
~ karl