Skip to content

Avenue 0.0.1

Latest
Compare
Choose a tag to compare
@bigeasy bigeasy released this 29 Aug 19:32
· 140 commits to master since this release

Pier Avenue 1950s
Pier Avenue 1950s by Ron Felsing.

Overview

By specifying an order for paths that can match multiple URLs, you're now able to implement strategies for interception and pipelines. Path info path parts come before exact path parts. Exact path parts come before parameterized path parts.

If you want to implement an authentication interceptor, create a script that matches everything in a sub-directory as it's path info. Redirect if the user is forbidden.

Also, parameterized path parts can now accept path info.

Issue By Issue

  • Exact routes should come before parameterized routes. #17
  • A pattern with path info should come before the same pattern without path info. #19.
  • Index files with path info should come before all other files. #18.
  • Implement interception ordering. #15.
  • Parameterized paths should accept path info. #16.