I’m using the TimerActions plugin to do a periodic save of the wiki. It works by accepting an actions string and invoking it periodically. The problem is that it also invokes it on startup which messes up my saver (the native html saver, it requires an interactive action to be able to save, so the non interactive save on startup causes it to have errors).
So what I want is an action string (that is, something that invokeActionString will execute) that will call save only if an initial save was already done. I don’t know if an initial save can be identified, so if not, I want something that waits x minutes (so up until then, it will be called, but do nothing).
(as for the initial save, if there’s a hook to listen to saves, then that can set a tiddle field, or some other variable that the conditional action checks).