| OLD | NEW |
| 1 application: sheriff-o-matic | 1 application: sheriff-o-matic |
| 2 version: 1 | 2 version: 1 |
| 3 runtime: python27 | 3 runtime: python27 |
| 4 api_version: 1 | 4 api_version: 1 |
| 5 threadsafe: true | 5 threadsafe: true |
| 6 | 6 |
| 7 handlers: | 7 handlers: |
| 8 - url: / | 8 - url: / |
| 9 static_files: sheriff-o-matic.html | 9 static_files: sheriff-o-matic.html |
| 10 upload: sheriff-o-matic.html | 10 upload: sheriff-o-matic.html |
| 11 | 11 |
| 12 - url: /favicon.ico | 12 - url: /favicon.ico |
| 13 static_files: favicon.ico | 13 static_files: favicon.ico |
| 14 upload: favicon.ico | 14 upload: favicon.ico |
| 15 | 15 |
| 16 - url: /images | 16 - url: /images |
| 17 static_dir: images | 17 static_dir: images |
| 18 | 18 |
| 19 - url: /lib |
| 20 static_dir: lib |
| 21 |
| 19 - url: /model | 22 - url: /model |
| 20 static_dir: model | 23 static_dir: model |
| 21 | 24 |
| 22 - url: /scripts | 25 - url: /scripts |
| 23 static_dir: scripts | 26 static_dir: scripts |
| 24 | 27 |
| 25 - url: /styles | 28 - url: /styles |
| 26 static_dir: styles | 29 static_dir: styles |
| 27 | 30 |
| 28 - url: /ui | 31 - url: /ui |
| 29 static_dir: ui | 32 static_dir: ui |
| 30 | 33 |
| 31 # FIXME: Write a script to do the appcfg update so that we can error out | 34 # FIXME: Write a script to do the appcfg update so that we can error out |
| 32 # if there is no bower_components, or, even better just run "bower update". | 35 # if there is no bower_components, or, even better just run "bower update". |
| 33 - url: /bower_components | 36 - url: /bower_components |
| 34 static_dir: bower_components | 37 static_dir: bower_components |
| 35 | 38 |
| 36 skip_files: | 39 skip_files: |
| 37 - ^(.*/)?#.*#$ | 40 - ^(.*/)?#.*#$ |
| 38 - ^(.*/)?.*~$ | 41 - ^(.*/)?.*~$ |
| 39 - ^(.*/)?.*\.py[co]$ | 42 - ^(.*/)?.*\.py[co]$ |
| 40 - ^(.*/)?.*/RCS/.*$ | 43 - ^(.*/)?.*/RCS/.*$ |
| 41 - ^(.*/)?\..*$ | 44 - ^(.*/)?\..*$ |
| 42 - ^(.*/)?.*\.md$ | 45 - ^(.*/)?.*\.md$ |
| 43 - ^(.*/)?LICENSE$ | 46 - ^(.*/)?LICENSE$ |
| 44 - ^(.*/)?README$ | 47 - ^(.*/)?README$ |
| 45 - ^(.*/)?Makefile$ | 48 - ^(.*/)?Makefile$ |
| OLD | NEW |