PBX4LINUX_3_4_FIX2_PATCH_JHT:
	development branch from pbx4linux-3.4-fix2
	check out this branch (cvs co -r PBX4LINUX_3_4_FIX2_PATCH_JHT) to
	  get the latest sources for pbx4linux-3.4-fix2

PBX4LINUX_3_4_FIX2_PATCH_JHT_VER1:
	+ can use a route mit multiple extensions like:
	  dialing=1234	: intern extension=1,2,3

PBX4LINUX_3_4_FIX2_PATCH_JHT_VER2:
	! new Parser
	+ can parse the route.conf completely
	+ recognises comment token '#' before end of line
	- does not recognise nested files (via #include), a feature seen in
	  the route.c sources.
	- exists in parallel with route.c, no usage of rule parser from
	  route.c
	- some bug in route.c, doing a display of 
	  disconnect cause=1 display="Invalid Cause"
	  with some obscure character at the end.

PBX4LINUX_3_4_FIX2_PATCH_JHT_VER3:
	+ can parse 2 actions inside of 1 rule. this way we can setup like:
	  dialing=1234	: intern extension=1,2,3 timeout=20
	                  goto ruleset=common_vbox
	- still can not parse nested files (#include). using a comment
	  character for a control token doesn't seem correct to me.
	+ fixes for gcc-4.1.1
	+ fixed writing past memory bug, causing display="" message to be corrupted
	+ fixed lost memory bug from linked list
	! found a bug where internal dialing a voice box like "dialing=2 : vbox-play extension=202"
	  caused a new dialing attempt when using the vbox menu
	- String matching method should be fixed. A better regexp for
	  strings would be
	  token=[a-zA-Z0-9]|\"[a-zA-Z0-9\ \t\:,_-]\"
	  token(-token)?(,token(-token)?)*
	- after parsing, a parse result test should be done. i.e. are the
	  specified interfaces present? Are the given extensions defined? Is
	  the specified ruleset available?
