Monday, November 08, 2010 at 12:04 AM.
system.verbs.builtins.opmlEditor.saveOpenDatabases
on saveOpenDatabases () {
<<Changes
<<1/18/10; 11:29:01 AM by DW
<<Created.
if user.opmlEditor.prefs.flSaveDatabases {
local (now = clock.now (), ctsecs = (user.opmlEditor.prefs.ctMinutesBetwSaves * 60));
if (now - user.opmlEditor.stats.whenLastDatabaseSave) > ctsecs {
user.opmlEditor.stats.whenLastDatabaseSave = now;
user.opmlEditor.stats.ctDatabaseSaves++;
fileMenu.saveOpenDatabases ()}}}
<<bundle //test code
<<saveOpenDatabases ()
This listing is for code that runs in the OPML Editor environment. I created these listings because I wanted the search engines to index it, so that when I want to look up something in my codebase I don't have to use the much slower search functionality in my object database. Dave Winer.