summaryrefslogtreecommitdiffstats
path: root/PROGRESS.md
diff options
context:
space:
mode:
authorSjon Hortensius <sjon@hortensius.net>2015-06-13 14:44:54 +0200
committerSjon Hortensius <sjon@hortensius.net>2015-06-13 14:44:54 +0200
commita326e9553192378aac190096ea3d927d821123e9 (patch)
tree72ef90888bf697bb1d4e1bae1d281134857a6f3b /PROGRESS.md
parentd8e0d4255f08df1de4f915c4b19db55222e27c81 (diff)
downloadpfsense-a326e9553192378aac190096ea3d927d821123e9.zip
pfsense-a326e9553192378aac190096ea3d927d821123e9.tar.gz
updated progress
Diffstat (limited to 'PROGRESS.md')
-rw-r--r--PROGRESS.md257
1 files changed, 128 insertions, 129 deletions
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 &#x2705; emoji (`&#x2705;`) to show that the bootstrap conversion is complete
Use the &#x1f504; emoji (`&#x1f504;`) 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=' &#x2705;'
+INPROGRESS=' &#x1f504;'
+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 &#x1f504; emoji (`&#x1f504;`) to show that the bootstrap conversion is i
|diag_defaults.php | &#x2705; | | |
|diag_dns.php | &#x2705; | | |
|diag_dump_states.php | &#x2705; | | |
-|diag_dump_states_sources.php | | | |
+|diag_dump_states_sources.php | &#x2705; | | |
|diag_gmirror.php | | | |
-|diag_ipsec_leases.php | | | |
+|diag_ipsec_leases.php | &#x2705; | | |
|diag_ipsec.php | | | |
-|diag_ipsec_sad.php | | | |
+|diag_ipsec_sad.php | &#x2705; | | |
|diag_ipsec_spd.php | &#x2705; | | |
|diag_ipsec_xml.php | | | |
|diag_limiter_info.php | &#x2705; | | |
|diag_logs_filter_dynamic.php | &#x2705; | | |
-|diag_logs_filter.php | | | |
+|diag_logs_filter.php | &#x2705; | | |
|diag_logs_filter_summary.php | &#x2705; | | |
|diag_logs.php | &#x2705; | | |
|diag_logs_settings.php | &#x2705; | | |
|diag_logs_vpn.php | &#x2705; | | |
-|diag_nanobsd.php | | | |
+|diag_nanobsd.php | &#x2705; | | |
|diag_ndp.php | &#x2705; | | |
-|diag_packet_capture.php | | | |
+|diag_packet_capture.php | &#x2705; | | |
|diag_patterns.php | &#x2705; | | |
|diag_pf_info.php | &#x2705; | | |
|diag_ping.php | &#x2705; | | |
|diag_pkglogs.php | &#x2705; | | |
-|diag_resetstate.php | | | |
+|diag_resetstate.php | &#x2705; | | |
|diag_routes.php | &#x2705; | | |
-|diag_smart.php | | | |
+|diag_smart.php | &#x2705; | | |
|diag_sockets.php | &#x2705; | | |
|diag_states_summary.php | &#x2705; | | |
|diag_system_activity.php | &#x2705; | | |
@@ -60,22 +101,22 @@ Use the &#x1f504; emoji (`&#x1f504;`) 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 | &#x2705; | | |
+|firewall_nat_npt.php | &#x2705; | | |
|firewall_nat_out_edit.php | | | |
|firewall_nat_out.php | | | |
|firewall_nat.php | | | |
|firewall_rules_edit.php | &#x2705; | | |
|firewall_rules.php | &#x2705; | | |
|firewall_schedule_edit.php | | | |
-|firewall_schedule.php | | | |
+|firewall_schedule.php | &#x2705; | | |
|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 | &#x2705; | | |
+|firewall_virtual_ip_edit.php | &#x2705; | | |
+|firewall_virtual_ip.php | &#x2705; | | |
|getserviceproviders.php | | | |
|getstats.php | | | |
|graph_cpu.php | | | |
@@ -85,26 +126,26 @@ Use the &#x1f504; emoji (`&#x1f504;`) to show that the bootstrap conversion is i
|ifstats.php | | | |
|index.php | &#x2705; | | |
|interfaces_assign.php | &#x2705; | | |
-|interfaces_bridge_edit.php | | | |
-|interfaces_bridge.php | | | |
-|interfaces_gif_edit.php | | | |
+|interfaces_bridge_edit.php | &#x2705; | | |
+|interfaces_bridge.php | &#x2705; | | |
+|interfaces_gif_edit.php | &#x2705; | | |
|interfaces_gif.php | &#x2705; | | |
-|interfaces_gre_edit.php | | | |
+|interfaces_gre_edit.php | &#x2705; | | |
|interfaces_gre.php | &#x2705; | | |
|interfaces_groups_edit.php | | | |
|interfaces_groups.php | | | |
-|interfaces_lagg_edit.php | | | |
-|interfaces_lagg.php | | | |
+|interfaces_lagg_edit.php | &#x2705; | | |
+|interfaces_lagg.php | &#x2705; | | |
|interfaces.php | | | |
-|interfaces_ppps_edit.php | | | |
-|interfaces_ppps.php | | | |
+|interfaces_ppps_edit.php | &#x2705; | | |
+|interfaces_ppps.php | &#x2705; | | |
|interfaces_qinq_edit.php | | | |
-|interfaces_qinq.php | | | |
+|interfaces_qinq.php | &#x2705; | | |
|interfaces_vlan_edit.php | &#x2705; | | |
|interfaces_vlan.php | &#x2705; | | |
-|interfaces_wireless_edit.php | | | |
-|interfaces_wireless.php | | | |
-|license.php | | | |
+|interfaces_wireless_edit.php | &#x2705; | | |
+|interfaces_wireless.php | &#x2705; | | |
+|license.php | &#x2705; | | |
|load_balancer_monitor_edit.php | | | |
|load_balancer_monitor.php | | | |
|load_balancer_pool_edit.php | | | |
@@ -113,82 +154,82 @@ Use the &#x1f504; emoji (`&#x1f504;`) 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 | &#x2705; | | |
|load_balancer_virtual_server_edit.php | | | |
|load_balancer_virtual_server.php | | | |
|pkg_edit.php | | | |
|pkg_mgr_installed.php | &#x2705; | | |
|pkg_mgr_install.php | &#x2705; | | |
|pkg_mgr.php | &#x2705; | | |
-|pkg_mgr_settings.php | | | |
+|pkg_mgr_settings.php | &#x2705; | | |
|pkg.php | | | |
|reboot.php | &#x2705; | | |
|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 | &#x2705; | | |
+|services_captiveportal_hostname_edit.php | &#x2705; | | |
+|services_captiveportal_hostname.php | &#x2705; | | |
+|services_captiveportal_ip_edit.php | &#x2705; | | |
+|services_captiveportal_ip.php | &#x2705; | | |
+|services_captiveportal_mac_edit.php | &#x2705; | | |
+|services_captiveportal_mac.php | &#x2705; | | |
|services_captiveportal.php | | | |
-|services_captiveportal_vouchers_edit.php | | | |
-|services_captiveportal_vouchers.php | | | |
-|services_captiveportal_zones_edit.php | | | |
+|services_captiveportal_vouchers_edit.php | &#x2705; | | |
+|services_captiveportal_vouchers.php | &#x2705; | | |
+|services_captiveportal_zones_edit.php | &#x2705; | | |
|services_captiveportal_zones.php | | | |
-|services_dhcp_edit.php | | | |
+|services_dhcp_edit.php | &#x2705; | | |
|services_dhcp.php | | | |
|services_dhcp_relay.php | &#x2705; | | |
-|services_dhcpv6_edit.php | | | |
-|services_dhcpv6.php | | | |
+|services_dhcpv6_edit.php | &#x2705; | | |
+|services_dhcpv6.php | &#x2705; | | |
|services_dhcpv6_relay.php | &#x2705; | | |
-|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 | &#x2705; | | |
+|services_dnsmasq_edit.php | &#x2705; | | |
+|services_dnsmasq.php | &#x2705; | | |
+|services_dyndns_edit.php | &#x2705; | | |
+|services_dyndns.php | &#x2705; | | |
+|services_igmpproxy_edit.php | &#x2705; | | |
+|services_igmpproxy.php | &#x2705; | | |
+|services_ntpd_gps.php | &#x2705; | | |
+|services_ntpd.php | &#x2705; | | |
+|services_ntpd_pps.php | &#x2705; | | |
+|services_rfc2136_edit.php | &#x2705; | | |
+|services_rfc2136.php | &#x2705; | | |
|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 | &#x2705; | | |
+|services_unbound_acls.php | &#x2705; | | |
+|services_unbound_advanced.php | &#x2705; | | |
+|services_unbound_domainoverride_edit.php | &#x2705; | | |
+|services_unbound_host_edit.php | &#x2705; | | |
+|services_unbound.php | &#x2705; | | |
|services_wol_edit.php | &#x2705; | | |
|services_wol.php | &#x2705; | | |
|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 | &#x2705; | | |
+|status_captiveportal.php | &#x2705; | | |
+|status_captiveportal_test.php | &#x2705; | | |
+|status_captiveportal_voucher_rolls.php | &#x2705; | | |
+|status_captiveportal_vouchers.php | &#x2705; | | |
|status_dhcp_leases.php | &#x2705; | | |
|status_dhcpv6_leases.php | &#x2705; | | |
-|status_filter_reload.php | | | |
+|status_filter_reload.php | &#x2705; | | |
|status_gateway_groups.php | &#x2705; | | |
|status_gateways.php | &#x2705; | | |
-|status_graph_cpu.php | | | |
+|status_graph_cpu.php | &#x2705; | | |
|status_graph.php | &#x2705; | | |
|status_interfaces.php | &#x2705; | | |
-|status_lb_pool.php | | | |
+|status_lb_pool.php | &#x2705; | | |
|status_lb_vs.php | &#x2705; | | |
|status_ntpd.php | &#x2705; | | |
|status_openvpn.php | | | |
-|status.php | | | |
+|status.php | &#x2705; | | |
|status_queues.php | | | |
|status_rrd_graph_img.php | | | |
-|status_rrd_graph.php | | | |
+|status_rrd_graph.php | &#x2705; | | |
|status_rrd_graph_settings.php | &#x2705; | | |
-|status_services.php | | | |
-|status_upnp.php | | | |
-|status_wireless.php | | | |
+|status_services.php | &#x2705; | | |
+|status_upnp.php | &#x2705; | | |
+|status_wireless.php | &#x2705; | | |
|system_advanced_admin.php | &#x2705; | | |
|system_advanced_firewall.php | &#x2705; | | |
|system_advanced_misc.php | &#x2705; | | |
@@ -199,13 +240,13 @@ Use the &#x1f504; emoji (`&#x1f504;`) to show that the bootstrap conversion is i
|system_camanager.php | &#x2705; | | |
|system_certmanager.php | &#x2705; | | |
|system_crlmanager.php | | | |
-|system_firmware_auto.php | | | |
-|system_firmware_check.php | | | |
+|system_firmware_auto.php | &#x2705; | | |
+|system_firmware_check.php | &#x2705; | | |
|system_firmware.php | &#x2705; | | |
-|system_firmware_restorefullbackup.php | | | |
-|system_firmware_settings.php | | | |
-|system_gateway_groups_edit.php | | | |
-|system_gateway_groups.php | | | |
+|system_firmware_restorefullbackup.php | &#x2705; | | |
+|system_firmware_settings.php | &#x2705; | | |
+|system_gateway_groups_edit.php | &#x2705; | | |
+|system_gateway_groups.php | &#x2705; | | |
|system_gateways_edit.php | &#x2705; | | |
|system_gateways.php | &#x2705; | | |
|system_groupmanager_addprivs.php | &#x2705; | | |
@@ -214,8 +255,8 @@ Use the &#x1f504; emoji (`&#x1f504;`) to show that the bootstrap conversion is i
|system.php | &#x2705; | | |
|system_routes_edit.php | &#x2705; | | |
|system_routes.php | &#x2705; | | |
-|system_usermanager_addprivs.php | | | |
-|system_usermanager_passwordmg.php | | | |
+|system_usermanager_addprivs.php | &#x2705; | | |
+|system_usermanager_passwordmg.php | &#x2705; | | |
|system_usermanager.php | &#x2705; | | |
|system_usermanager_settings_ldapacpicker.php | | | |
|system_usermanager_settings.php | | | |
@@ -224,62 +265,20 @@ Use the &#x1f504; emoji (`&#x1f504;`) to show that the bootstrap conversion is i
|vpn_ipsec_keys_edit.php | &#x2705; | | |
|vpn_ipsec_keys.php | &#x2705; | | |
|vpn_ipsec_mobile.php | &#x2705; | | |
-|vpn_ipsec_phase1.php | | | |
-|vpn_ipsec_phase2.php | | | |
+|vpn_ipsec_phase1.php | &#x2705; | | |
+|vpn_ipsec_phase2.php | &#x2705; | | |
|vpn_ipsec.php | &#x2705; | | |
|vpn_ipsec_settings.php | &#x2705; | | |
|vpn_l2tp.php | &#x2705; | | |
|vpn_l2tp_users_edit.php | &#x2705; | | |
|vpn_l2tp_users.php | &#x2705; | | |
-|vpn_openvpn_client.php | | | |
-|vpn_openvpn_csc.php | | | |
-|vpn_openvpn_server.php | | | |
-|vpn_pppoe_edit.php | | | |
-|vpn_pppoe.php | | | |
+|vpn_openvpn_client.php | &#x2705; | | |
+|vpn_openvpn_csc.php | &#x2705; | | |
+|vpn_openvpn_server.php | &#x2705; | | |
+|vpn_pppoe_edit.php | &#x2705; | | |
+|vpn_pppoe.php | &#x2705; | | |
|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=' &#x2705;'
-INPROGRESS=' &#x1f504;'
-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
-
-````
OpenPOWER on IntegriCloud