Changeset 415
- Timestamp:
- 07/25/06 18:41:00 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/package/webif/files/usr/lib/webif/webif.sh
r295 r415 96 96 <div id="header"> 97 97 <div id="header-title"> 98 <div id="freewrt-title"><img id="freewrt-logo" src="/freewrt-front.png" /><h1>Admin Console</h1></div>98 <div id="freewrt-title"><img id="freewrt-logo" src="/freewrt-front.png" alt="logo"/><h1>Admin Console</h1></div> 99 99 <div id="short-status"> 100 100 <h3><strong>Status:</strong></h3> trunk/freewrt/package/webif/files/www/cgi-bin/webif/ipkg.sh
r295 r415 18 18 <table style="width: 90%"> 19 19 <? 20 ipkg list_installed | awk -F ' ' '20 ipkg list_installed | egrep -v "(base-files|bridge|busybox|haserl|kernel|uclibc|webif|Done\.)" | awk -F ' ' ' 21 21 $2 !~ /terminated/ { 22 22 link=$1 23 23 gsub(/\+/,"%2B",link) 24 print "<tr><td>" $1 "</td><td><a href=\"ipkg.sh?action=remove&pkg=" link "\" style=\"color: red\" >@TR<<Uninstall>></a></td></tr>"24 print "<tr><td>" $1 "</td><td><a href=\"ipkg.sh?action=remove&pkg=" link "\" style=\"color: red\" onClick=\"return confirm('\''are you sure?'\'')\">@TR<<Uninstall>></a></td></tr>" 25 25 } 26 26 '


