X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=d37d1fa561b137e842093357f9484769a5d124c8;hb=9a2257958f77e293a6f49d741405521f02855896;hp=243b21f68bd7a990f77e1e9e923d4e8fb56e538e;hpb=d98d81886649a863d0e902f7c4e63b1257217e1f;p=wfpl.git diff --git a/encode.php b/encode.php index 243b21f..d37d1fa 100644 --- a/encode.php +++ b/encode.php @@ -50,6 +50,24 @@ function enc_html($str) { return $str; } +# Encode for output in html. Convert newlines to
+# +# Example:

~foo.html~

+function enc_htmlbr($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. # @@ -67,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. @@ -99,39 +125,45 @@ function enc_upper($str) { return strtoupper($str); } +# pass date in the form 2008-05-23 +# ercodes date as 05/23/2008 +function enc_mmddyyyy($yyyy_mm_dd) { + if(strlen($yyyy_mm_dd) != 10) { + return date('m/d/Y'); + } + return substr($yyyy_mm_dd, 5, 2) . '/' . substr($yyyy_mm_dd, 8, 2) . '/' . substr($yyyy_mm_dd, 0, 4); +} -# display