Here is a small fix for MasterIncludes plugin - so it works correctly with tiddlers tagged "doNotSave" in version 2.4.1.
Edit MasterIncludesPlugin.js as follows: in SaverBase.prototype.externalize = function(store): 216c216,217 < results.push(this.externalizeTiddler(store, tiddlers [t])); --- > if(!tiddlers[t].doNotSave()) > results.push(this.externalizeTiddler(store, tiddlers[t])); This happened because the core implementation of the function changed after the MasterIncludes plugin was published. Is there an automatical mechanism to detect this sort of thing? For example, if each function in the core had a version number that was updated whenever it was changed, then plugins could self check if functions they replaced have since changed and so have become suspect. Michael --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/TiddlyWikiDev?hl=en -~----------~----~----~----~------~----~------~--~---
