#!/bin/sh

#turn off auto expansion
set -f

. alterator-sh-functions

on_message()
{
	case "$in_action" in
		#information for renderer
		template)
			echo '('
			echo ' template "form"'
			echo ' url "bind-options.html"'
			echo ' translate "alterator-bind"'
			echo ')'
			;;
		*)
			echo '#f'
			;;
	esac
}

message_loop
