Guest User

Untitled

a guest
Jun 21st, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. Map = [
  2.  
  3. {
  4. 'Controllers' :
  5. {
  6. 'Printer' :
  7. {
  8. '^/printing/info.json$' : 'info',
  9. '^/printing/create.json$' : 'create',
  10. '^/printing/print.pdf$' : 'doPrint',
  11. '^/printing/([\S]+(?<!print)).pdf$' : 'get',
  12. }
  13. }
  14. },
  15.  
  16. # Forward all other requests to the default handler.
  17. {'(.*)' : 'Default.Request'},
  18.  
  19. ]
Add Comment
Please, Sign In to add comment