All pastes #696415 Raw Edit

Untitled

public text v1 · immutable
#696415 ·published 2007-09-13 21:53 UTC
rendered paste body
<route name="directory" pattern="^/directory" module="Directory">
	<route name=".index" pattern="^$" action="Index" />
	<route name=".country" pattern="^/(iso_id:[a-z]{2})">
		<route name=".view"	 pattern="^$" action="Country" />
		<route name=".city" pattern="^/(city:\S+)">
			<route name=".view" pattern="^$" action="City" />
			<route name=".location" pattern="^/(location:[A-Za-z_0-9]+)$" action="Location" />
		</route>
	</route>
</route>