Monday, April 04, 2011 at 1:06 AM.

radio2Suite.utilities.exportUserTable

on exportUserTable (username) {
	<<Changes
		<<3/1/11; 9:21:23 PM by DW
			<<Run this script to export a copy of your user table to the folder containing the OPML app. I may ask you to run this script when we're debugging, so I can see what happens when I try it with your data.
	local (adrdata = radio2suite.init ());
	local (f = frontier.pathstring + username + ".fttb");
	file.surefilepath (f);
	export.sendobject (@adrdata^.users.[username], f);
	file.openfolder (file.folderfrompath (f))};
bundle { //test code
	exportUserTable ("dave")}



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.