X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/blobdiff_plain/2882ee37fded46346977da456ae793f3e6a3bfac..d5754b53e4f119674b9d8a0bdf40bf92f6007d12:/src/plugins/apache.sml diff --git a/src/plugins/apache.sml b/src/plugins/apache.sml index 878204b..4ea8f22 100644 --- a/src/plugins/apache.sml +++ b/src/plugins/apache.sml @@ -303,4 +303,32 @@ val () = Env.action_three "rewriteCond" write "]"); write "\n")) +val () = Env.action_two "alias" + ("from", Env.string, "to", Env.string) + (fn (from, to) => + (write "\tAlias\t"; + write from; + write " "; + write to; + write "\n")) + +val () = Env.action_two "scriptAlias" + ("from", Env.string, "to", Env.string) + (fn (from, to) => + (write "\tScriptAlias\t"; + write from; + write " "; + write to; + write "\n")) + +val () = Env.action_two "errorDocument" + ("code", Env.string, "handler", Env.string) + (fn (code, handler) => + (write "\tErrorDocument\t"; + write code; + write " "; + write handler; + write "\n")) + + end