From d62e397b8e96caff6a12c7ac6545ded713701478 Mon Sep 17 00:00:00 2001 From: Sean Owen Date: Thu, 6 Mar 2014 14:06:22 +0000 Subject: [PATCH] Add app.yaml mappings for new static files from issue #79 --- zxing.appspot.com/src/main/webapp/app.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/zxing.appspot.com/src/main/webapp/app.yaml b/zxing.appspot.com/src/main/webapp/app.yaml index 3f1a6f5ac9..1922214ac8 100644 --- a/zxing.appspot.com/src/main/webapp/app.yaml +++ b/zxing.appspot.com/src/main/webapp/app.yaml @@ -37,6 +37,10 @@ handlers: static_files: Generator.html upload: Generator.html +- url: /img/(.*) + static_files: img/\1 + upload: img/(.*) + - url: /index.html static_files: index.html upload: index.html @@ -45,6 +49,10 @@ handlers: static_files: required-field-bg.png upload: required-field-bg.png +- url: /scan.css + static_files: scan.css + upload: scan.css + - url: /scan.html static_files: scan.html upload: scan.html