From b5c6aed9b27bc10b861f51dd3fcfcac8883900f0 Mon Sep 17 00:00:00 2001 From: Apostolos Bessas Date: Thu, 6 Jan 2011 15:40:46 +0200 Subject: [PATCH] Add README file --- README | 17 +++++++++++++++++ app.yaml | 14 ++++++++++++-- 2 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..70fec43 --- /dev/null +++ b/README @@ -0,0 +1,17 @@ +NOTIFY FOR FOSSCOMM +=================== + + +Description +----------- + +This is a simple app for GAE to allow for instant notifications of +registered users at events. + +Implementation +-------------- + +This application uses the XMPP protocol. At each message posted by +authorized users, an XMPP message is sent to each registered JID +address. + diff --git a/app.yaml b/app.yaml index ee1ad32..741fb51 100644 --- a/app.yaml +++ b/app.yaml @@ -3,6 +3,18 @@ version: 1 runtime: python api_version: 1 +skip_files: +- ^(.*/)?app\.yaml +- ^(.*/)?app\.yml +- ^(.*/)?index\.yaml +- ^(.*/)?index\.yml +- ^(.*/)?#.*# +- ^(.*/)?.*~ +- ^(.*/)?.*\.py[co] +- ^(.*/)?.*/RCS/.* +- ^(.*/)?\..* +- ^README$ + handlers: - url: /css static_dir: css @@ -10,12 +22,10 @@ handlers: - url: /list script: admin.py login: admin - secure: required - url: /post script: admin.py login: admin - secure: required - url: /.* script: main.py