Monday, November 08, 2010 at 12:03 AM.

system.verbs.builtins.Frontier.tools.windowTypes.commands.workOffline

<<Toggle the offline flag.
	<<09/23/00; 4:23:09 PM by PBS
	<<Changes:
		<<12/02/00; 4:43:29 PM by PBS
			<<When going offline, shut down all daemons, including the web server.
			<<When going online, start up all daemons with startup set to true.
if defined (tcp.isOffline) and defined (tcp.setOffline) {
	local (flOffline = tcp.isOffline ());
	if flOffline { //already offline?
		tcp.setOffline (false); //go online
		inetd.start ()}
	else { //nope, online right now
		tcp.setOffline (true); //go offline
		inetd.stop ()}}



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.