Help for this page

Select Code to Download


  1. or download this
    /region/REGION
    /category/CATEGORY
    /region/REGION/....
    /category/CATEGORY/...
    
  2. or download this
    sub load_region : Chained('/') : PathPart('region') : CaptureArgs(1) {
            ...
    ...
    sub view_category : Chained('load_category') : PathPart('') : Args(0) 
    +{
            ...
    }
    
  3. or download this
    sub load_region : Chained('/') : PathPart('') : CaptureArgs(1) {
    ...
    ...
    sub view_region : Chained('load_region') : PathPart('') : Args(0) {
    ...
    }