root/PROGRESS.md @ 54d0134b
1 |
## Bootstrap Conversion Progress
|
---|---|
2 |
|
3 |
Use this table to list the php pages that have been converted to bootstrap, those that have yet to be converted, and those that are currently being worked on. |
4 |
|
5 |
The script used to generate the table can be found at the bottom of this page |
6 |
|
7 |
Use the ✅ emoji (`✅`) to show that the bootstrap conversion is complete |
8 |
Use the 🔄 emoji (`🔄`) to show that the bootstrap conversion is in progress |
9 |
|
10 |
The table can be generated by running this bash script on the directory in which the php files are located. e.g.: |
11 |
|
12 |
````bash |
13 |
mktable.sh pfsense-bootstrap/usr/local/www |
14 |
````
|
15 |
|
16 |
You can then copy/paste the script output into this file. (Is that recursive?) |
17 |
|
18 |
````bash |
19 |
#!/bin/bash
|
20 |
# mktable.sh
|
21 |
|
22 |
# Generate a table in GitHub markdown showing each php file and whether it has been converted to bootstrap yet
|
23 |
# $1 = path to pfSense usr/local/www directory
|
24 |
# Completed files are assumed to have foot.inc included
|
25 |
|
26 |
COMPLETED=' ✅' |
27 |
INPROGRESS=' 🔄' |
28 |
pushd $1 |
29 |
|
30 |
printf "|%-45s|%-25s|%-24s|%-60s|\n" "Page/file" "Status" "User" "Comments" |
31 |
printf "|---------------------------------------------|:-------------------------:|------------------------|------------------------------------------------------------|\n" |
32 |
|
33 |
FILES=$(ls -1 *.php) |
34 |
|
35 |
for F in $FILES ; do |
36 |
printf "|%-45s|" $F |
37 |
|
38 |
if(grep foot.inc $F >/dev/null 2>&1 ) ; then |
39 |
printf "%-25s" "$COMPLETED" |
40 |
else
|
41 |
printf "%25s" " " |
42 |
fi
|
43 |
|
44 |
printf "|%24s|%60s|\n" " " " " |
45 |
|
46 |
done
|
47 |
|
48 |
popd
|
49 |
|
50 |
````
|
51 |
### PHP file status
|
52 |
|Page/file |Status |User |Comments | |
53 |
|---------------------------------------------|:-------------------------:|------------------------|------------------------------------------------------------| |
54 |
|bandwidth_by_ip.php | | | | |
55 |
|carp_status.php | ✅ | | |
|
56 |
|crash_reporter.php | ✅ | | |
|
57 |
|diag_arp.php | ✅ | | |
|
58 |
|diag_authentication.php | ✅ | | |
|
59 |
|diag_backup.php | ✅ | | |
|
60 |
|diag_confbak.php | ✅ | | |
|
61 |
|diag_defaults.php | ✅ | | |
|
62 |
|diag_dns.php | ✅ | | |
|
63 |
|diag_dump_states.php | ✅ | | |
|
64 |
|diag_dump_states_sources.php | ✅ | | |
|
65 |
|diag_gmirror.php | | | | |
66 |
|diag_ipsec_leases.php | ✅ | | |
|
67 |
|diag_ipsec.php | | | | |
68 |
|diag_ipsec_sad.php | ✅ | | |
|
69 |
|diag_ipsec_spd.php | ✅ | | |
|
70 |
|diag_ipsec_xml.php | | | | |
71 |
|diag_limiter_info.php | ✅ | | |
|
72 |
|diag_logs_filter_dynamic.php | ✅ | | |
|
73 |
|diag_logs_filter.php | ✅ | | |
|
74 |
|diag_logs_filter_summary.php | ✅ | | |
|
75 |
|diag_logs.php | ✅ | | |
|
76 |
|diag_logs_settings.php | ✅ | | |
|
77 |
|diag_logs_vpn.php | ✅ | | |
|
78 |
|diag_nanobsd.php | ✅ | | |
|
79 |
|diag_ndp.php | ✅ | | |
|
80 |
|diag_packet_capture.php | ✅ | | |
|
81 |
|diag_patterns.php | ✅ | | |
|
82 |
|diag_pf_info.php | ✅ | | |
|
83 |
|diag_ping.php | ✅ | | |
|
84 |
|diag_pkglogs.php | ✅ | | |
|
85 |
|diag_resetstate.php | ✅ | | |
|
86 |
|diag_routes.php | ✅ | | |
|
87 |
|diag_smart.php | ✅ | | |
|
88 |
|diag_sockets.php | ✅ | | |
|
89 |
|diag_states_summary.php | ✅ | | |
|
90 |
|diag_system_activity.php | ✅ | | |
|
91 |
|diag_system_pftop.php | ✅ | | |
|
92 |
|diag_tables.php | ✅ | | |
|
93 |
|diag_testport.php | ✅ | | |
|
94 |
|diag_traceroute.php | ✅ | | |
|
95 |
|easyrule.php | | | | |
96 |
|edit.php | ✅ | | |
|
97 |
|exec.php | ✅ | | |
|
98 |
|firewall_aliases_edit.php | ✅ | | |
|
99 |
|firewall_aliases_import.php | ✅ | | |
|
100 |
|firewall_aliases.php | ✅ | | |
|
101 |
|firewall_nat_1to1_edit.php | | | | |
102 |
|firewall_nat_1to1.php | | | | |
103 |
|firewall_nat_edit.php | | | | |
104 |
|firewall_nat_npt_edit.php | ✅ | | |
|
105 |
|firewall_nat_npt.php | ✅ | | |
|
106 |
|firewall_nat_out_edit.php | | | | |
107 |
|firewall_nat_out.php | | | | |
108 |
|firewall_nat.php | | | | |
109 |
|firewall_rules_edit.php | ✅ | | |
|
110 |
|firewall_rules.php | ✅ | | |
|
111 |
|firewall_schedule_edit.php | | | | |
112 |
|firewall_schedule.php | ✅ | | |
|
113 |
|firewall_shaper_layer7.php | | | | |
114 |
|firewall_shaper.php | | | | |
115 |
|firewall_shaper_queues.php | | | | |
116 |
|firewall_shaper_vinterface.php | | | | |
117 |
|firewall_shaper_wizards.php | ✅ | | |
|
118 |
|firewall_virtual_ip_edit.php | ✅ | | |
|
119 |
|firewall_virtual_ip.php | ✅ | | |
|
120 |
|getserviceproviders.php | | | | |
121 |
|getstats.php | | | | |
122 |
|graph_cpu.php | | | | |
123 |
|graph.php | | | | |
124 |
|halt.php | ✅ | | |
|
125 |
|help.php | | | | |
126 |
|ifstats.php | | | | |
127 |
|index.php | ✅ | | |
|
128 |
|interfaces_assign.php | ✅ | | |
|
129 |
|interfaces_bridge_edit.php | ✅ | | |
|
130 |
|interfaces_bridge.php | ✅ | | |
|
131 |
|interfaces_gif_edit.php | ✅ | | |
|
132 |
|interfaces_gif.php | ✅ | | |
|
133 |
|interfaces_gre_edit.php | ✅ | | |
|
134 |
|interfaces_gre.php | ✅ | | |
|
135 |
|interfaces_groups_edit.php | | | | |
136 |
|interfaces_groups.php | | | | |
137 |
|interfaces_lagg_edit.php | ✅ | | |
|
138 |
|interfaces_lagg.php | ✅ | | |
|
139 |
|interfaces.php | | | | |
140 |
|interfaces_ppps_edit.php | ✅ | | |
|
141 |
|interfaces_ppps.php | ✅ | | |
|
142 |
|interfaces_qinq_edit.php | | | | |
143 |
|interfaces_qinq.php | ✅ | | |
|
144 |
|interfaces_vlan_edit.php | ✅ | | |
|
145 |
|interfaces_vlan.php | ✅ | | |
|
146 |
|interfaces_wireless_edit.php | ✅ | | |
|
147 |
|interfaces_wireless.php | ✅ | | |
|
148 |
|license.php | ✅ | | |
|
149 |
|load_balancer_monitor_edit.php | | | | |
150 |
|load_balancer_monitor.php | | | | |
151 |
|load_balancer_pool_edit.php | | | | |
152 |
|load_balancer_pool.php | | | | |
153 |
|load_balancer_relay_action_edit.php | | | | |
154 |
|load_balancer_relay_action.php | | | | |
155 |
|load_balancer_relay_protocol_edit.php | | | | |
156 |
|load_balancer_relay_protocol.php | | | | |
157 |
|load_balancer_setting.php | ✅ | | |
|
158 |
|load_balancer_virtual_server_edit.php | | | | |
159 |
|load_balancer_virtual_server.php | | | | |
160 |
|pkg_edit.php | | | | |
161 |
|pkg_mgr_installed.php | ✅ | | |
|
162 |
|pkg_mgr_install.php | ✅ | | |
|
163 |
|pkg_mgr.php | ✅ | | |
|
164 |
|pkg_mgr_settings.php | ✅ | | |
|
165 |
|pkg.php | | | | |
166 |
|reboot.php | ✅ | | |
|
167 |
|restart_httpd.php | | | | |
168 |
|services_captiveportal_filemanager.php | ✅ | | |
|
169 |
|services_captiveportal_hostname_edit.php | ✅ | | |
|
170 |
|services_captiveportal_hostname.php | ✅ | | |
|
171 |
|services_captiveportal_ip_edit.php | ✅ | | |
|
172 |
|services_captiveportal_ip.php | ✅ | | |
|
173 |
|services_captiveportal_mac_edit.php | ✅ | | |
|
174 |
|services_captiveportal_mac.php | ✅ | | |
|
175 |
|services_captiveportal.php | | | | |
176 |
|services_captiveportal_vouchers_edit.php | ✅ | | |
|
177 |
|services_captiveportal_vouchers.php | ✅ | | |
|
178 |
|services_captiveportal_zones_edit.php | ✅ | | |
|
179 |
|services_captiveportal_zones.php | | | | |
180 |
|services_dhcp_edit.php | ✅ | | |
|
181 |
|services_dhcp.php | | | | |
182 |
|services_dhcp_relay.php | ✅ | | |
|
183 |
|services_dhcpv6_edit.php | ✅ | | |
|
184 |
|services_dhcpv6.php | ✅ | | |
|
185 |
|services_dhcpv6_relay.php | ✅ | | |
|
186 |
|services_dnsmasq_domainoverride_edit.php | ✅ | | |
|
187 |
|services_dnsmasq_edit.php | ✅ | | |
|
188 |
|services_dnsmasq.php | ✅ | | |
|
189 |
|services_dyndns_edit.php | ✅ | | |
|
190 |
|services_dyndns.php | ✅ | | |
|
191 |
|services_igmpproxy_edit.php | ✅ | | |
|
192 |
|services_igmpproxy.php | ✅ | | |
|
193 |
|services_ntpd_gps.php | ✅ | | |
|
194 |
|services_ntpd.php | ✅ | | |
|
195 |
|services_ntpd_pps.php | ✅ | | |
|
196 |
|services_rfc2136_edit.php | ✅ | | |
|
197 |
|services_rfc2136.php | ✅ | | |
|
198 |
|services_router_advertisements.php | | | | |
199 |
|services_snmp.php | ✅ | | |
|
200 |
|services_unbound_acls.php | ✅ | | |
|
201 |
|services_unbound_advanced.php | ✅ | | |
|
202 |
|services_unbound_domainoverride_edit.php | ✅ | | |
|
203 |
|services_unbound_host_edit.php | ✅ | | |
|
204 |
|services_unbound.php | ✅ | | |
|
205 |
|services_wol_edit.php | ✅ | | |
|
206 |
|services_wol.php | ✅ | | |
|
207 |
|stats.php | | | | |
208 |
|status_captiveportal_expire.php | ✅ | | |
|
209 |
|status_captiveportal.php | ✅ | | |
|
210 |
|status_captiveportal_test.php | ✅ | | |
|
211 |
|status_captiveportal_voucher_rolls.php | ✅ | | |
|
212 |
|status_captiveportal_vouchers.php | ✅ | | |
|
213 |
|status_dhcp_leases.php | ✅ | | |
|
214 |
|status_dhcpv6_leases.php | ✅ | | |
|
215 |
|status_filter_reload.php | ✅ | | |
|
216 |
|status_gateway_groups.php | ✅ | | |
|
217 |
|status_gateways.php | ✅ | | |
|
218 |
|status_graph_cpu.php | ✅ | | |
|
219 |
|status_graph.php | ✅ | | |
|
220 |
|status_interfaces.php | ✅ | | |
|
221 |
|status_lb_pool.php | ✅ | | |
|
222 |
|status_lb_vs.php | ✅ | | |
|
223 |
|status_ntpd.php | ✅ | | |
|
224 |
|status_openvpn.php | | | | |
225 |
|status.php | ✅ | | |
|
226 |
|status_queues.php | | | | |
227 |
|status_rrd_graph_img.php | | | | |
228 |
|status_rrd_graph.php | ✅ | | |
|
229 |
|status_rrd_graph_settings.php | ✅ | | |
|
230 |
|status_services.php | ✅ | | |
|
231 |
|status_upnp.php | ✅ | | |
|
232 |
|status_wireless.php | ✅ | | |
|
233 |
|system_advanced_admin.php | ✅ | | |
|
234 |
|system_advanced_firewall.php | ✅ | | |
|
235 |
|system_advanced_misc.php | ✅ | | |
|
236 |
|system_advanced_network.php | ✅ | | |
|
237 |
|system_advanced_notifications.php | ✅ | | |
|
238 |
|system_advanced_sysctl.php | | | | |
239 |
|system_authservers.php | ✅ | | |
|
240 |
|system_camanager.php | ✅ | | |
|
241 |
|system_certmanager.php | ✅ | | |
|
242 |
|system_crlmanager.php | | | | |
243 |
|system_firmware_auto.php | ✅ | | |
|
244 |
|system_firmware_check.php | ✅ | | |
|
245 |
|system_firmware.php | ✅ | | |
|
246 |
|system_firmware_restorefullbackup.php | ✅ | | |
|
247 |
|system_firmware_settings.php | ✅ | | |
|
248 |
|system_gateway_groups_edit.php | ✅ | | |
|
249 |
|system_gateway_groups.php | ✅ | | |
|
250 |
|system_gateways_edit.php | ✅ | | |
|
251 |
|system_gateways.php | ✅ | | |
|
252 |
|system_groupmanager_addprivs.php | ✅ | | |
|
253 |
|system_groupmanager.php | ✅ | | |
|
254 |
|system_hasync.php | ✅ | | |
|
255 |
|system.php | ✅ | | |
|
256 |
|system_routes_edit.php | ✅ | | |
|
257 |
|system_routes.php | ✅ | | |
|
258 |
|system_usermanager_addprivs.php | ✅ | | |
|
259 |
|system_usermanager_passwordmg.php | ✅ | | |
|
260 |
|system_usermanager.php | ✅ | | |
|
261 |
|system_usermanager_settings_ldapacpicker.php | | | | |
262 |
|system_usermanager_settings.php | | | | |
263 |
|system_usermanager_settings_test.php | | | | |
264 |
|uploadconfig.php | | | | |
265 |
|vpn_ipsec_keys_edit.php | ✅ | | |
|
266 |
|vpn_ipsec_keys.php | ✅ | | |
|
267 |
|vpn_ipsec_mobile.php | ✅ | | |
|
268 |
|vpn_ipsec_phase1.php | ✅ | | |
|
269 |
|vpn_ipsec_phase2.php | ✅ | | |
|
270 |
|vpn_ipsec.php | ✅ | | |
|
271 |
|vpn_ipsec_settings.php | ✅ | | |
|
272 |
|vpn_l2tp.php | ✅ | | |
|
273 |
|vpn_l2tp_users_edit.php | ✅ | | |
|
274 |
|vpn_l2tp_users.php | ✅ | | |
|
275 |
|vpn_openvpn_client.php | ✅ | | |
|
276 |
|vpn_openvpn_csc.php | ✅ | | |
|
277 |
|vpn_openvpn_server.php | ✅ | | |
|
278 |
|vpn_pppoe_edit.php | ✅ | | |
|
279 |
|vpn_pppoe.php | ✅ | | |
|
280 |
|vpn_pptp.php | | | | |
281 |
|vpn_pptp_users_edit.php | | | | |
282 |
|vpn_pptp_users.php | | | | |
283 |
|wizard.php | | | | |
284 |
|xmlrpc.php | | | | |