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