Skip to content

Commit

Permalink
Since removing locales, I don't think we handle utf8 safely in shell.
Browse files Browse the repository at this point in the history
Therefore we should keep things URL encoded with FF consume just fine.
We should lose busybox and just replace with simple seds.
https://groups.google.com/forum/#!msg/webc-users/D5SXkkc9r0Q/GFk7aaHT01QJ
  • Loading branch information
kaihendry committed Mar 26, 2012
1 parent 71eda42 commit cca2451
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion etc/webc/live-config.sh
Expand Up @@ -52,7 +52,7 @@ for x in $( cmdline ); do
;;

homepage=*)
homepage=$(/bin/busybox httpd -d ${x#homepage=})
homepage="$( echo ${x#homepage=} | sed 's,%20, ,g' )"
prefs="/etc/iceweasel/profile/prefs.js"
if test -e $prefs
then
Expand Down
2 changes: 1 addition & 1 deletion home/webc/.xinitrc
Expand Up @@ -77,7 +77,7 @@ do
for x in $(cmdline); do
case $x in
homepage=*)
homepage="$( /bin/busybox httpd -d ${x#homepage=} )"
homepage="$( echo ${x#homepage=} | sed 's,%20, ,g' )"
;;

bgurl=*)
Expand Down

0 comments on commit cca2451

Please sign in to comment.