X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=d37d1fa561b137e842093357f9484769a5d124c8;hb=8331ba9439df4bdf02f35a988172f6869513b54f;hp=1cbac74e7d6252e51a4f599999ef383f057ff8d6;hpb=48805cdb3501fc558a68a31f2aed2f6ad716e297;p=wfpl.git diff --git a/encode.php b/encode.php index 1cbac74..d37d1fa 100644 --- a/encode.php +++ b/encode.php @@ -50,18 +50,24 @@ function enc_html($str) { return $str; } - -# Encode for output in html. Converts newlines to
+# Encode for output in html. Convert newlines to
# # Example:

~foo.html~

function enc_htmlbr($str) { - $str = str_replace('&', '&', $str); - $str = str_replace('<', '<', $str); - $str = str_replace('>', '>', $str); + $str = enc_html($str); $str = str_replace("\n", "
\n", $str); return $str; } +# Encode for output in html. Spaces converted to   +# +# Example: +function enc_htmlnbsp($str) { + $str = enc_html($str); + $str = str_replace(' ', ' ', $str); + return $str; +} + # HTML attribute. # @@ -79,6 +85,14 @@ function enc_url_val($str) { return rawurlencode($str); } +# FIXME +function enc_url_path($str) { + $str = rawurlencode($str); + $str = str_replace('%2F', '/', $str); + return $str; +} + + # This is a hack to work around html's stupid syntax for checkboxes. # # Place the template marker just before a " somewhere. @@ -111,50 +125,45 @@ function enc_upper($str) { return strtoupper($str); } - -# display