Skip to content
Snippets Groups Projects
Select Git revision
  • dd_msg_area_chooser_coloring_fix_and_separator_char_fix
  • dailybuild_linux-x64
  • dailybuild_win32
  • master default protected
  • sqlite
  • rip_abstraction
  • dailybuild_macos-armv8
  • dd_file_lister_filanem_in_desc_color
  • mode7
  • dd_msg_reader_are_you_there_warning_improvement
  • c23-playing
  • syncterm-1.3
  • syncterm-1.2
  • test-build
  • hide_remote_connection_with_telgate
  • 638-can-t-control-c-during-a-file-search
  • add_body_to_pager_email
  • mingw32-build
  • cryptlib-3.4.7
  • ree/mastermind
  • sbbs320d
  • syncterm-1.6
  • syncterm-1.5
  • syncterm-1.4
  • sbbs320b
  • syncterm-1.3
  • syncterm-1.2
  • syncterm-1.2rc6
  • syncterm-1.2rc5
  • push
  • syncterm-1.2rc4
  • syncterm-1.2rc2
  • syncterm-1.2rc1
  • sbbs319b
  • sbbs318b
  • goodbuild_linux-x64_Sep-01-2020
  • goodbuild_win32_Sep-01-2020
  • goodbuild_linux-x64_Aug-31-2020
  • goodbuild_win32_Aug-31-2020
  • goodbuild_win32_Aug-30-2020
40 results

dumpobjs.js

Blame
  • dumpobjs.js 2.82 KiB
    // system
    console.clear();
    print("\1hproperties of \1ysystem \1wobject\1n");
    for(i in system)
    	print("system." + i + " = " + system[i]);
    
    // system.stats
    console.clear();
    print("\1hproperties of \1ysystem.stats \1wobject\1n");
    for(i in system.stats)
    	print("system.stats." + i + " = " + system.stats[i]);
    
    // system.node_list[]
    console.clear();
    print("\1helements of \1ysystem.node_list \1warray\1n");
    for(n in system.node_list)
    	for(i in system.node_list[n])
    		print("system.node_list[" + n + "]." + i + " = " + system.node_list[n][i]);
    
    // client
    console.clear();
    print("\1hproperties of \1yclient \1wobject\1n");
    for(i in client)
    	print("client." + i + " = " + client[i]);
    
    // client.socket
    console.clear();
    print("\1hproperties of \1yclient.socket \1wobject\1n");
    for(i in client.socket)
    	print("client.socket." + i + " = " + client.socket[i]);
    
    // server
    console.clear();
    print("\1hproperties of \1yserver \1wobject\1n");
    for(i in server)
    	print("server." + i + " = " + server[i]);
    
    // user
    console.clear();
    print("\1hproperties of \1yuser \1wobject\1n");
    for(i in user)
    	print("user." + i + " = " + user[i]);
    
    // user.stats
    console.clear();
    print("\1hproperties of \1yuser.stats \1wobject\1n");
    for(i in user.stats)
    	print("user.stats." + i + " = " + user.stats[i]);
    
    // user.security
    console.clear();
    print("\1hproperties of \1yuser.security \1wobject\1n");
    for(i in user.security)
    	print("user.security." + i + " = " + user.security[i]);
    
    // msg_area
    console.clear();
    print("\1hproperties of \1ymsg_area \1wobject\1n");
    for(i in msg_area)
    	print("msg_area." + i + " = " + msg_area[i]);
    
    // msg_area.grp_list[]
    print("\1helements of \1ymsg_area.grp_list \1warray\1n");
    for(n in msg_area.grp_list) {
    	for(i in msg_area.grp_list[n])
    		print("msg_area.grp_list[" + n + "]." + i + " = " + msg_area.grp_list[n][i]);
    	for(d in msg_area.grp_list[n].sub_list)
    		for(i in msg_area.grp_list[n].sub_list[d])
    			print("msg_area.grp_list[" + n + "].sub_list[" + d + "]." + i + " = " + 
    				msg_area.grp_list[n].sub_list[d][i]);
    }
    
    // file_area
    console.clear();
    print("\1hproperties of \1yfile_area \1wobject\1n");
    for(i in file_area)
    	print("file_area." + i + " = " + file_area[i]);
    
    // file_area.lib_list[]
    print("\1helements of \1yfile_area.lib_list \1warray\1n");
    for(n in file_area.lib_list) {
    	for(i in file_area.lib_list[n])
    		print("file_area.lib_list[" + n + "]." + i + " = " + file_area.lib_list[n][i]);
    	for(d in file_area.lib_list[n].dir_list)
    		for(i in file_area.lib_list[n].dir_list[d])
    			print("file_area.lib_list[" + n + "].dir_list[" + d + "]." + i + " = " + 
    				file_area.lib_list[n].dir_list[d][i]);
    }
    
    // bbs
    console.clear();
    print("\1hproperties of \1ybbs \1wobject\1n");
    for(i in bbs)
    	print("bbs." + i + " = " + bbs[i]);
    
    // console
    console.clear();
    print("\1hproperties of \1yconsole \1wobject\1n");
    for(i in console)
    	print("console." + i + " = " + console[i]);