diff -wc3r otp_src_R10B-2/lib/appmon/priv/appmon.tool otp_src_R10B-2.modified/lib/appmon/priv/appmon.tool *** otp_src_R10B-2/lib/appmon/priv/appmon.tool Mon Oct 8 02:10:38 2001 --- otp_src_R10B-2.modified/lib/appmon/priv/appmon.tool Mon Jan 31 23:05:58 2005 *************** *** 4,7 **** {start,{appmon,start,[]}}, {icon,"appmon.gif"}, {message,"Application Monitor"}, ! {html,"../doc/index.html"}]. --- 4,7 ---- {start,{appmon,start,[]}}, {icon,"appmon.gif"}, {message,"Application Monitor"}, ! {html,"../doc/html/index.html"}]. diff -wc3r otp_src_R10B-2/lib/debugger/priv/debugger.tool otp_src_R10B-2.modified/lib/debugger/priv/debugger.tool *** otp_src_R10B-2/lib/debugger/priv/debugger.tool Thu May 7 15:00:24 1998 --- otp_src_R10B-2.modified/lib/debugger/priv/debugger.tool Mon Jan 31 23:07:39 2005 *************** *** 3,6 **** {start,{debugger,start,[]}}, {icon,"debugger.gif"}, {message,"The Debugger"}, ! {html,"../doc/index.html"}}. --- 3,6 ---- {start,{debugger,start,[]}}, {icon,"debugger.gif"}, {message,"The Debugger"}, ! {html,"../doc/html/index.html"}}. diff -wc3r otp_src_R10B-2/lib/gs/src/tool_utils.erl otp_src_R10B-2.modified/lib/gs/src/tool_utils.erl *** otp_src_R10B-2/lib/gs/src/tool_utils.erl Tue Sep 14 05:11:30 2004 --- otp_src_R10B-2.modified/lib/gs/src/tool_utils.erl Mon Jan 31 23:48:38 2005 *************** *** 64,71 **** %% Local file local -> case os:type() of ! {unix,_AnyType} -> ! "netscape -remote \"openURL(file:" ++ File ++ ")\""; {win32,_AnyType} -> "start " ++ filename:nativename(File); --- 64,74 ---- %% Local file local -> case os:type() of ! {unix,Type} -> ! case Type of ! darwin -> "open " ++ File; ! _Else -> "netscape -remote \"openURL(file:" ++ File ++ ")\""; ! end; {win32,_AnyType} -> "start " ++ filename:nativename(File); *************** *** 76,84 **** %% URL remote -> case os:type() of ! {unix,_AnyType} -> ! "netscape -remote \"openURL(" ++ File ++ ")\""; ! {win32,_AnyType} -> "netscape.exe -h " ++ regexp:gsub(File,"\\\\","/"); _Other -> --- 79,89 ---- %% URL remote -> case os:type() of ! {unix,Type} -> ! case Type of ! darwin -> "open " ++ File; ! _Else -> "netscape -remote \"openURL(file:" ++ File ++ ")\""; ! end; {win32,_AnyType} -> "netscape.exe -h " ++ regexp:gsub(File,"\\\\","/"); _Other -> diff -wc3r otp_src_R10B-2/lib/pman/priv/pman.tool otp_src_R10B-2.modified/lib/pman/priv/pman.tool *** otp_src_R10B-2/lib/pman/priv/pman.tool Wed May 28 06:33:49 1997 --- otp_src_R10B-2.modified/lib/pman/priv/pman.tool Mon Jan 31 23:07:55 2005 *************** *** 3,6 **** {start,{pman,start,[]}}, {icon,"pman.gif"}, {message,"Process Manager"}, ! {html,"../doc/index.html"}}. --- 3,6 ---- {start,{pman,start,[]}}, {icon,"pman.gif"}, {message,"Process Manager"}, ! {html,"../doc/html/index.html"}}. diff -wc3r otp_src_R10B-2/lib/pman/src/pman_main.erl otp_src_R10B-2.modified/lib/pman/src/pman_main.erl *** otp_src_R10B-2/lib/pman/src/pman_main.erl Tue Nov 2 03:40:12 2004 --- otp_src_R10B-2.modified/lib/pman/src/pman_main.erl Mon Jan 31 23:45:19 2005 *************** *** 419,425 **** %% Start Help window execute_cmd('Help',Pman_data,_Data,_Args) -> ! HelpFile = filename:join(code:priv_dir(pman), "../doc/index.html"), tool_utils:open_help(gse:start([{kernel, true}]), HelpFile), Pman_data; --- 419,425 ---- %% Start Help window execute_cmd('Help',Pman_data,_Data,_Args) -> ! HelpFile = filename:join([code:priv_dir(pman), "doc", "html", "index.html"]), tool_utils:open_help(gse:start([{kernel, true}]), HelpFile), Pman_data; diff -wc3r otp_src_R10B-2/lib/pman/src/pman_shell.erl otp_src_R10B-2.modified/lib/pman/src/pman_shell.erl *** otp_src_R10B-2/lib/pman/src/pman_shell.erl Tue Nov 2 03:40:10 2004 --- otp_src_R10B-2.modified/lib/pman/src/pman_shell.erl Mon Jan 31 23:46:05 2005 *************** *** 475,481 **** end, Shell_data; 'Help' -> ! HelpFile = filename:join(code:priv_dir(pman), "../doc/index.html"), tool_utils:open_help(gs:start([{kernel, true}]), HelpFile), Shell_data; 'Kill'when pid(Shell) -> --- 475,481 ---- end, Shell_data; 'Help' -> ! HelpFile = filename:join([code:priv_dir(pman), "doc", "html", "index.html"]), tool_utils:open_help(gs:start([{kernel, true}]), HelpFile), Shell_data; 'Kill'when pid(Shell) -> diff -wc3r otp_src_R10B-2/lib/toolbar/src/toolbar_lib.erl otp_src_R10B-2.modified/lib/toolbar/src/toolbar_lib.erl *** otp_src_R10B-2/lib/toolbar/src/toolbar_lib.erl Tue Sep 14 05:10:33 2004 --- otp_src_R10B-2.modified/lib/toolbar/src/toolbar_lib.erl Mon Jan 31 23:49:25 2005 *************** *** 50,63 **** % Returns the address to the toolbar help file %---------------------------------------- help_file() -> ! filename:join(code:lib_dir(toolbar),"doc/index.html"). %---------------------------------------- % otp_file() => string() % Returns the address to the OTP documentation %---------------------------------------- otp_file() -> ! filename:join(code:root_dir(),"doc/index.html"). %---------------------------------------- % error_string(Reason) => string() --- 50,63 ---- % Returns the address to the toolbar help file %---------------------------------------- help_file() -> ! filename:join([code:lib_dir(toolbar),"doc", "html", "index.html"]). %---------------------------------------- % otp_file() => string() % Returns the address to the OTP documentation %---------------------------------------- otp_file() -> ! filename:join([code:root_dir(),"doc", "html", "index.html"]). %---------------------------------------- % error_string(Reason) => string() diff -wc3r otp_src_R10B-2/lib/tv/priv/tv.tool otp_src_R10B-2.modified/lib/tv/priv/tv.tool *** otp_src_R10B-2/lib/tv/priv/tv.tool Wed May 28 06:33:54 1997 --- otp_src_R10B-2.modified/lib/tv/priv/tv.tool Mon Jan 31 23:49:43 2005 *************** *** 3,6 **** {start,{tv,start,[]}}, {icon,"tv.gif"}, {message,"The Table Visualizer"}, ! {html,"../doc/index.html"}}. --- 3,6 ---- {start,{tv,start,[]}}, {icon,"tv.gif"}, {message,"The Table Visualizer"}, ! {html,"../doc/html/index.html"}}. diff -wc3r otp_src_R10B-2/lib/tv/src/tv_main.erl otp_src_R10B-2.modified/lib/tv/src/tv_main.erl *** otp_src_R10B-2/lib/tv/src/tv_main.erl Mon Sep 27 07:58:00 2004 --- otp_src_R10B-2.modified/lib/tv/src/tv_main.erl Mon Jan 31 23:50:31 2005 *************** *** 646,659 **** {gs, _Id, click, help_button, _Args} -> ! HelpFile = filename:join(code:priv_dir(tv), "../doc/index.html"), tool_utils:open_help(gs:start([{kernel, true}]), HelpFile), loop(KindOfTable,CurrNode,MarkedCell,GridLines,WinSize,Tables,Shortcuts, UnreadHidden,SysTabHidden,SortKey,Children); {gs, _Id, click, otp_help_button, _Args} -> ! IndexFile = filename:join(code:root_dir(), "doc/index.html"), tool_utils:open_help(gs:start([{kernel, true}]), IndexFile), loop(KindOfTable,CurrNode,MarkedCell,GridLines,WinSize,Tables,Shortcuts, UnreadHidden,SysTabHidden,SortKey,Children); --- 646,659 ---- {gs, _Id, click, help_button, _Args} -> ! HelpFile = filename:join([code:priv_dir(tv), "doc", "html", "index.html"]), tool_utils:open_help(gs:start([{kernel, true}]), HelpFile), loop(KindOfTable,CurrNode,MarkedCell,GridLines,WinSize,Tables,Shortcuts, UnreadHidden,SysTabHidden,SortKey,Children); {gs, _Id, click, otp_help_button, _Args} -> ! IndexFile = filename:join([code:root_dir(), "doc", "html", "index.html"]), tool_utils:open_help(gs:start([{kernel, true}]), IndexFile), loop(KindOfTable,CurrNode,MarkedCell,GridLines,WinSize,Tables,Shortcuts, UnreadHidden,SysTabHidden,SortKey,Children); *************** *** 1021,1027 **** handle_keypress(help_button,KindOfTable,CurrNode,MarkedCell,GridLines, WinSize,Tables,Shortcuts,UnreadHidden,SysTabHidden,SortKey,Children) -> ! HelpFile = filename:join(code:priv_dir(tv), "../doc/index.html"), tool_utils:open_help(gs:start([{kernel, true}]), HelpFile), loop(KindOfTable,CurrNode,MarkedCell,GridLines,WinSize,Tables,Shortcuts, UnreadHidden,SysTabHidden,SortKey,Children); --- 1021,1027 ---- handle_keypress(help_button,KindOfTable,CurrNode,MarkedCell,GridLines, WinSize,Tables,Shortcuts,UnreadHidden,SysTabHidden,SortKey,Children) -> ! HelpFile = filename:join([code:priv_dir(tv), "doc", "html", "index.html"]), tool_utils:open_help(gs:start([{kernel, true}]), HelpFile), loop(KindOfTable,CurrNode,MarkedCell,GridLines,WinSize,Tables,Shortcuts, UnreadHidden,SysTabHidden,SortKey,Children); diff -wc3r otp_src_R10B-2/lib/tv/src/tv_pc_menu_handling.erl otp_src_R10B-2.modified/lib/tv/src/tv_pc_menu_handling.erl *** otp_src_R10B-2/lib/tv/src/tv_pc_menu_handling.erl Tue Sep 14 05:11:43 2004 --- otp_src_R10B-2.modified/lib/tv/src/tv_pc_menu_handling.erl Mon Jan 31 23:51:09 2005 *************** *** 138,144 **** help_button(ProcVars) -> ! HelpFile = filename:join(code:priv_dir(tv), "../doc/index.html"), tool_utils:open_help(gs:start([{kernel, true}]), HelpFile), ProcVars. --- 138,144 ---- help_button(ProcVars) -> ! HelpFile = filename:join([code:priv_dir(tv), "doc", "html", "index.html"]), tool_utils:open_help(gs:start([{kernel, true}]), HelpFile), ProcVars. *************** *** 146,152 **** otp_help_button(ProcVars) -> ! IndexFile = filename:join(code:root_dir(), "doc/index.html"), tool_utils:open_help(gs:start([{kernel, true}]), IndexFile), ProcVars. --- 146,152 ---- otp_help_button(ProcVars) -> ! IndexFile = filename:join([code:root_dir(), "doc", "html", "index.html"]), tool_utils:open_help(gs:start([{kernel, true}]), IndexFile), ProcVars.