summaryrefslogtreecommitdiffstats
path: root/PROGRESS.md
diff options
context:
space:
mode:
authorThane Gill <me@thanegill.com>2015-04-06 11:15:39 -0700
committerThane Gill <me@thanegill.com>2015-04-06 11:16:56 -0700
commit8f66b13f2871517dce248b01f05e18661c9ec5ea (patch)
treebe40b06e572b78c01f93adb99795005b482fd913 /PROGRESS.md
parentc3c692a9ba2a43ca9633b4b340f50f7411c2104d (diff)
downloadpfsense-8f66b13f2871517dce248b01f05e18661c9ec5ea.zip
pfsense-8f66b13f2871517dce248b01f05e18661c9ec5ea.tar.gz
Added Completed files by psophis
Remove trailing whitespace
Diffstat (limited to 'PROGRESS.md')
-rw-r--r--PROGRESS.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/PROGRESS.md b/PROGRESS.md
index e0cce06..1a5b374 100644
--- a/PROGRESS.md
+++ b/PROGRESS.md
@@ -1,6 +1,6 @@
## Bootstrap Conversion Progress
-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.
+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.
The script used to generate the table can be found at the bottom of this page
@@ -104,16 +104,16 @@ Use the &#x1f504; emoji (`&#x1f504;`) to show that the bootstrap conversion is i
|interfaces_gif_edit.php | | | |
|interfaces_gre.php | | | |
|interfaces_gre_edit.php | | | |
-|interfaces_groups.php | | | |
-|interfaces_groups_edit.php | | | |
+|interfaces_groups.php | &#x2705; | psophis | |
+|interfaces_groups_edit.php | &#x2705; | psophis | |
|interfaces_lagg.php | | | |
|interfaces_lagg_edit.php | | | |
|interfaces_ppps.php | | | |
|interfaces_ppps_edit.php | | | |
|interfaces_qinq.php | | | |
|interfaces_qinq_edit.php | | | |
-|interfaces_vlan.php | &#x2705; | | |
-|interfaces_vlan_edit.php | &#x2705; | | |
+|interfaces_vlan.php | &#x2705; | psophis | |
+|interfaces_vlan_edit.php | &#x2705; | psophis | |
|interfaces_wireless.php | | | |
|interfaces_wireless_edit.php | | | |
|license.php | | | |
@@ -207,7 +207,7 @@ Use the &#x1f504; emoji (`&#x1f504;`) to show that the bootstrap conversion is i
|system_advanced_misc.php | &#x2705; | | |
|system_advanced_network.php | &#x2705; | | |
|system_advanced_notifications.php | &#x2705; | | |
-|system_advanced_sysctl.php | | | |
+|system_advanced_sysctl.php | &#x2705; | psophis | |
|system_authservers.php | | | |
|system_camanager.php | | | |
|system_certmanager.php | | | |
@@ -259,9 +259,9 @@ The table can be generated by running this bash script on the directory in which
````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
@@ -274,23 +274,23 @@ COMPLETED=' &#x2705;'
INPROGRESS=' &#x1f504;'
pushd $1
-printf "|%-45s|%-25s|%-24s|%-60s|\r\n" "Page/file" "Status" "User" "Comments"
+printf "|%-45s|%-25s|%-24s|%-60s|\r\n" "Page/file" "Status" "User" "Comments"
printf "|---------------------------------------------|:-------------------------:|------------------------|------------------------------------------------------------|\r\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|\r\n" " " " "
-done
+done
popd
OpenPOWER on IntegriCloud