From a326e9553192378aac190096ea3d927d821123e9 Mon Sep 17 00:00:00 2001 From: Sjon Hortensius Date: Sat, 13 Jun 2015 14:44:54 +0200 Subject: updated progress --- PROGRESS.md | 257 ++++++++++++++++++++++++++++++------------------------------ 1 file changed, 128 insertions(+), 129 deletions(-) (limited to 'PROGRESS.md') diff --git a/PROGRESS.md b/PROGRESS.md index 11803bf..592d477 100644 --- a/PROGRESS.md +++ b/PROGRESS.md @@ -7,6 +7,47 @@ The script used to generate the table can be found at the bottom of this page Use the ✅ emoji (`✅`) to show that the bootstrap conversion is complete Use the 🔄 emoji (`🔄`) to show that the bootstrap conversion is in progress +The table can be generated by running this bash script on the directory in which the php files are located. e.g.: + +````bash + mktable.sh pfsense-bootstrap/usr/local/www +```` + +You can then copy/paste the script output into this file. (Is that recursive?) + +````bash +#!/bin/bash +# mktable.sh + +# Generate a table in GitHub markdown showing each php file and whether it has been converted to bootstrap yet +# $1 = path to pfSense usr/local/www directory +# Completed files are assumed to have foot.inc included + +COMPLETED=' ✅' +INPROGRESS=' 🔄' +pushd $1 + +printf "|%-45s|%-25s|%-24s|%-60s|\n" "Page/file" "Status" "User" "Comments" +printf "|---------------------------------------------|:-------------------------:|------------------------|------------------------------------------------------------|\n" + +FILES=$(ls -1 *.php) + +for F in $FILES ; do + printf "|%-45s|" $F + + if(grep foot.inc $F >/dev/null 2>&1 ) ; then + printf "%-25s" "$COMPLETED" + else + printf "%25s" " " + fi + + printf "|%24s|%60s|\n" " " " " + +done + +popd + +```` ### PHP file status |Page/file |Status |User |Comments | |---------------------------------------------|:-------------------------:|------------------------|------------------------------------------------------------| @@ -20,30 +61,30 @@ Use the 🔄 emoji (`🔄`) to show that the bootstrap conversion is i |diag_defaults.php | ✅ | | | |diag_dns.php | ✅ | | | |diag_dump_states.php | ✅ | | | -|diag_dump_states_sources.php | | | | +|diag_dump_states_sources.php | ✅ | | | |diag_gmirror.php | | | | -|diag_ipsec_leases.php | | | | +|diag_ipsec_leases.php | ✅ | | | |diag_ipsec.php | | | | -|diag_ipsec_sad.php | | | | +|diag_ipsec_sad.php | ✅ | | | |diag_ipsec_spd.php | ✅ | | | |diag_ipsec_xml.php | | | | |diag_limiter_info.php | ✅ | | | |diag_logs_filter_dynamic.php | ✅ | | | -|diag_logs_filter.php | | | | +|diag_logs_filter.php | ✅ | | | |diag_logs_filter_summary.php | ✅ | | | |diag_logs.php | ✅ | | | |diag_logs_settings.php | ✅ | | | |diag_logs_vpn.php | ✅ | | | -|diag_nanobsd.php | | | | +|diag_nanobsd.php | ✅ | | | |diag_ndp.php | ✅ | | | -|diag_packet_capture.php | | | | +|diag_packet_capture.php | ✅ | | | |diag_patterns.php | ✅ | | | |diag_pf_info.php | ✅ | | | |diag_ping.php | ✅ | | | |diag_pkglogs.php | ✅ | | | -|diag_resetstate.php | | | | +|diag_resetstate.php | ✅ | | | |diag_routes.php | ✅ | | | -|diag_smart.php | | | | +|diag_smart.php | ✅ | | | |diag_sockets.php | ✅ | | | |diag_states_summary.php | ✅ | | | |diag_system_activity.php | ✅ | | | @@ -60,22 +101,22 @@ Use the 🔄 emoji (`🔄`) to show that the bootstrap conversion is i |firewall_nat_1to1_edit.php | | | | |firewall_nat_1to1.php | | | | |firewall_nat_edit.php | | | | -|firewall_nat_npt_edit.php | | | | -|firewall_nat_npt.php | | | | +|firewall_nat_npt_edit.php | ✅ | | | +|firewall_nat_npt.php | ✅ | | | |firewall_nat_out_edit.php | | | | |firewall_nat_out.php | | | | |firewall_nat.php | | | | |firewall_rules_edit.php | ✅ | | | |firewall_rules.php | ✅ | | | |firewall_schedule_edit.php | | | | -|firewall_schedule.php | | | | +|firewall_schedule.php | ✅ | | | |firewall_shaper_layer7.php | | | | |firewall_shaper.php | | | | |firewall_shaper_queues.php | | | | |firewall_shaper_vinterface.php | | | | -|firewall_shaper_wizards.php | | | | -|firewall_virtual_ip_edit.php | | | | -|firewall_virtual_ip.php | | | | +|firewall_shaper_wizards.php | ✅ | | | +|firewall_virtual_ip_edit.php | ✅ | | | +|firewall_virtual_ip.php | ✅ | | | |getserviceproviders.php | | | | |getstats.php | | | | |graph_cpu.php | | | | @@ -85,26 +126,26 @@ Use the 🔄 emoji (`🔄`) to show that the bootstrap conversion is i |ifstats.php | | | | |index.php | ✅ | | | |interfaces_assign.php | ✅ | | | -|interfaces_bridge_edit.php | | | | -|interfaces_bridge.php | | | | -|interfaces_gif_edit.php | | | | +|interfaces_bridge_edit.php | ✅ | | | +|interfaces_bridge.php | ✅ | | | +|interfaces_gif_edit.php | ✅ | | | |interfaces_gif.php | ✅ | | | -|interfaces_gre_edit.php | | | | +|interfaces_gre_edit.php | ✅ | | | |interfaces_gre.php | ✅ | | | |interfaces_groups_edit.php | | | | |interfaces_groups.php | | | | -|interfaces_lagg_edit.php | | | | -|interfaces_lagg.php | | | | +|interfaces_lagg_edit.php | ✅ | | | +|interfaces_lagg.php | ✅ | | | |interfaces.php | | | | -|interfaces_ppps_edit.php | | | | -|interfaces_ppps.php | | | | +|interfaces_ppps_edit.php | ✅ | | | +|interfaces_ppps.php | ✅ | | | |interfaces_qinq_edit.php | | | | -|interfaces_qinq.php | | | | +|interfaces_qinq.php | ✅ | | | |interfaces_vlan_edit.php | ✅ | | | |interfaces_vlan.php | ✅ | | | -|interfaces_wireless_edit.php | | | | -|interfaces_wireless.php | | | | -|license.php | | | | +|interfaces_wireless_edit.php | ✅ | | | +|interfaces_wireless.php | ✅ | | | +|license.php | ✅ | | | |load_balancer_monitor_edit.php | | | | |load_balancer_monitor.php | | | | |load_balancer_pool_edit.php | | | | @@ -113,82 +154,82 @@ Use the 🔄 emoji (`🔄`) to show that the bootstrap conversion is i |load_balancer_relay_action.php | | | | |load_balancer_relay_protocol_edit.php | | | | |load_balancer_relay_protocol.php | | | | -|load_balancer_setting.php | | | | +|load_balancer_setting.php | ✅ | | | |load_balancer_virtual_server_edit.php | | | | |load_balancer_virtual_server.php | | | | |pkg_edit.php | | | | |pkg_mgr_installed.php | ✅ | | | |pkg_mgr_install.php | ✅ | | | |pkg_mgr.php | ✅ | | | -|pkg_mgr_settings.php | | | | +|pkg_mgr_settings.php | ✅ | | | |pkg.php | | | | |reboot.php | ✅ | | | |restart_httpd.php | | | | -|services_captiveportal_filemanager.php | | | | -|services_captiveportal_hostname_edit.php | | | | -|services_captiveportal_hostname.php | | | | -|services_captiveportal_ip_edit.php | | | | -|services_captiveportal_ip.php | | | | -|services_captiveportal_mac_edit.php | | | | -|services_captiveportal_mac.php | | | | +|services_captiveportal_filemanager.php | ✅ | | | +|services_captiveportal_hostname_edit.php | ✅ | | | +|services_captiveportal_hostname.php | ✅ | | | +|services_captiveportal_ip_edit.php | ✅ | | | +|services_captiveportal_ip.php | ✅ | | | +|services_captiveportal_mac_edit.php | ✅ | | | +|services_captiveportal_mac.php | ✅ | | | |services_captiveportal.php | | | | -|services_captiveportal_vouchers_edit.php | | | | -|services_captiveportal_vouchers.php | | | | -|services_captiveportal_zones_edit.php | | | | +|services_captiveportal_vouchers_edit.php | ✅ | | | +|services_captiveportal_vouchers.php | ✅ | | | +|services_captiveportal_zones_edit.php | ✅ | | | |services_captiveportal_zones.php | | | | -|services_dhcp_edit.php | | | | +|services_dhcp_edit.php | ✅ | | | |services_dhcp.php | | | | |services_dhcp_relay.php | ✅ | | | -|services_dhcpv6_edit.php | | | | -|services_dhcpv6.php | | | | +|services_dhcpv6_edit.php | ✅ | | | +|services_dhcpv6.php | ✅ | | | |services_dhcpv6_relay.php | ✅ | | | -|services_dnsmasq_domainoverride_edit.php | | | | -|services_dnsmasq_edit.php | | | | -|services_dnsmasq.php | | | | -|services_dyndns_edit.php | | | | -|services_dyndns.php | | | | -|services_igmpproxy_edit.php | | | | -|services_igmpproxy.php | | | | -|services_ntpd_gps.php | | | | -|services_ntpd.php | | | | -|services_ntpd_pps.php | | | | -|services_rfc2136_edit.php | | | | -|services_rfc2136.php | | | | +|services_dnsmasq_domainoverride_edit.php | ✅ | | | +|services_dnsmasq_edit.php | ✅ | | | +|services_dnsmasq.php | ✅ | | | +|services_dyndns_edit.php | ✅ | | | +|services_dyndns.php | ✅ | | | +|services_igmpproxy_edit.php | ✅ | | | +|services_igmpproxy.php | ✅ | | | +|services_ntpd_gps.php | ✅ | | | +|services_ntpd.php | ✅ | | | +|services_ntpd_pps.php | ✅ | | | +|services_rfc2136_edit.php | ✅ | | | +|services_rfc2136.php | ✅ | | | |services_router_advertisements.php | | | | -|services_snmp.php | | | | -|services_unbound_acls.php | | | | -|services_unbound_advanced.php | | | | -|services_unbound_domainoverride_edit.php | | | | -|services_unbound_host_edit.php | | | | -|services_unbound.php | | | | +|services_snmp.php | ✅ | | | +|services_unbound_acls.php | ✅ | | | +|services_unbound_advanced.php | ✅ | | | +|services_unbound_domainoverride_edit.php | ✅ | | | +|services_unbound_host_edit.php | ✅ | | | +|services_unbound.php | ✅ | | | |services_wol_edit.php | ✅ | | | |services_wol.php | ✅ | | | |stats.php | | | | -|status_captiveportal_expire.php | | | | -|status_captiveportal.php | | | | -|status_captiveportal_test.php | | | | -|status_captiveportal_voucher_rolls.php | | | | -|status_captiveportal_vouchers.php | | | | +|status_captiveportal_expire.php | ✅ | | | +|status_captiveportal.php | ✅ | | | +|status_captiveportal_test.php | ✅ | | | +|status_captiveportal_voucher_rolls.php | ✅ | | | +|status_captiveportal_vouchers.php | ✅ | | | |status_dhcp_leases.php | ✅ | | | |status_dhcpv6_leases.php | ✅ | | | -|status_filter_reload.php | | | | +|status_filter_reload.php | ✅ | | | |status_gateway_groups.php | ✅ | | | |status_gateways.php | ✅ | | | -|status_graph_cpu.php | | | | +|status_graph_cpu.php | ✅ | | | |status_graph.php | ✅ | | | |status_interfaces.php | ✅ | | | -|status_lb_pool.php | | | | +|status_lb_pool.php | ✅ | | | |status_lb_vs.php | ✅ | | | |status_ntpd.php | ✅ | | | |status_openvpn.php | | | | -|status.php | | | | +|status.php | ✅ | | | |status_queues.php | | | | |status_rrd_graph_img.php | | | | -|status_rrd_graph.php | | | | +|status_rrd_graph.php | ✅ | | | |status_rrd_graph_settings.php | ✅ | | | -|status_services.php | | | | -|status_upnp.php | | | | -|status_wireless.php | | | | +|status_services.php | ✅ | | | +|status_upnp.php | ✅ | | | +|status_wireless.php | ✅ | | | |system_advanced_admin.php | ✅ | | | |system_advanced_firewall.php | ✅ | | | |system_advanced_misc.php | ✅ | | | @@ -199,13 +240,13 @@ Use the 🔄 emoji (`🔄`) to show that the bootstrap conversion is i |system_camanager.php | ✅ | | | |system_certmanager.php | ✅ | | | |system_crlmanager.php | | | | -|system_firmware_auto.php | | | | -|system_firmware_check.php | | | | +|system_firmware_auto.php | ✅ | | | +|system_firmware_check.php | ✅ | | | |system_firmware.php | ✅ | | | -|system_firmware_restorefullbackup.php | | | | -|system_firmware_settings.php | | | | -|system_gateway_groups_edit.php | | | | -|system_gateway_groups.php | | | | +|system_firmware_restorefullbackup.php | ✅ | | | +|system_firmware_settings.php | ✅ | | | +|system_gateway_groups_edit.php | ✅ | | | +|system_gateway_groups.php | ✅ | | | |system_gateways_edit.php | ✅ | | | |system_gateways.php | ✅ | | | |system_groupmanager_addprivs.php | ✅ | | | @@ -214,8 +255,8 @@ Use the 🔄 emoji (`🔄`) to show that the bootstrap conversion is i |system.php | ✅ | | | |system_routes_edit.php | ✅ | | | |system_routes.php | ✅ | | | -|system_usermanager_addprivs.php | | | | -|system_usermanager_passwordmg.php | | | | +|system_usermanager_addprivs.php | ✅ | | | +|system_usermanager_passwordmg.php | ✅ | | | |system_usermanager.php | ✅ | | | |system_usermanager_settings_ldapacpicker.php | | | | |system_usermanager_settings.php | | | | @@ -224,62 +265,20 @@ Use the 🔄 emoji (`🔄`) to show that the bootstrap conversion is i |vpn_ipsec_keys_edit.php | ✅ | | | |vpn_ipsec_keys.php | ✅ | | | |vpn_ipsec_mobile.php | ✅ | | | -|vpn_ipsec_phase1.php | | | | -|vpn_ipsec_phase2.php | | | | +|vpn_ipsec_phase1.php | ✅ | | | +|vpn_ipsec_phase2.php | ✅ | | | |vpn_ipsec.php | ✅ | | | |vpn_ipsec_settings.php | ✅ | | | |vpn_l2tp.php | ✅ | | | |vpn_l2tp_users_edit.php | ✅ | | | |vpn_l2tp_users.php | ✅ | | | -|vpn_openvpn_client.php | | | | -|vpn_openvpn_csc.php | | | | -|vpn_openvpn_server.php | | | | -|vpn_pppoe_edit.php | | | | -|vpn_pppoe.php | | | | +|vpn_openvpn_client.php | ✅ | | | +|vpn_openvpn_csc.php | ✅ | | | +|vpn_openvpn_server.php | ✅ | | | +|vpn_pppoe_edit.php | ✅ | | | +|vpn_pppoe.php | ✅ | | | |vpn_pptp.php | | | | |vpn_pptp_users_edit.php | | | | |vpn_pptp_users.php | | | | |wizard.php | | | | |xmlrpc.php | | | | - -The table can be generated by running this bash script on the directory in which the php files are located. e.g.: - -````bash - mktable.sh pfsense-bootstrap/usr/local/www -```` - -You can then copy/paste the script output into this file. (Is that recursive?) - -````bash -#!/bin/bash -# mktable.sh - -# Generate a table in GitHub markdown showing each php file and whether it has been converted to bootstrap yet -# $1 = path to pfSense usr/local/www directory -# Completed files are assumed to have foot.inc included - -COMPLETED=' ✅' -INPROGRESS=' 🔄' -pushd $1 - -printf "|%-45s|%-25s|%-24s|%-60s|\n" "Page/file" "Status" "User" "Comments" -printf "|---------------------------------------------|:-------------------------:|------------------------|------------------------------------------------------------|\n" - -FILES=$(ls -1 *.php) - -for F in $FILES ; do - printf "|%-45s|" $F - - if(grep foot.inc $F >/dev/null 2>&1 ) ; then - printf "%-25s" "$COMPLETED" - else - printf "%25s" " " - fi - - printf "|%24s|%60s|\n" " " " " - -done - -popd - -```` -- cgit v1.1