small template preprocessor for apache

syntax

<= %s # expr resulting in c string =>
ex. <=%s#some_flag?"some output":""=>
<% code %>
ex. <% if (some_flag) { %>
    <% } %>

generates:
   outside of tags: ap_rputs(" ... ",r);
   inside var tags: ap_rprintf(r," ... ", ...);
