gitextract_950o7lh_/ ├── .gitignore ├── README.md ├── app/ │ ├── app.py │ ├── app.yaml │ ├── common/ │ │ ├── __init__.py │ │ └── templateaddons.py │ ├── cron.yaml │ ├── handlers/ │ │ ├── __init__.py │ │ ├── baserequesthandler.py │ │ └── main.py │ ├── mc/ │ │ ├── __init__.py │ │ └── cache.py │ ├── models.py │ ├── queue.yaml │ ├── services.py │ ├── settings.py │ ├── static_dev/ │ │ ├── .htaccess │ │ ├── 404.html │ │ ├── README.md │ │ ├── build/ │ │ │ ├── build.xml │ │ │ ├── config/ │ │ │ │ ├── default.properties │ │ │ │ ├── manifest.appcache │ │ │ │ └── project.properties │ │ │ ├── createproject.sh │ │ │ ├── runbuildscript.bat │ │ │ └── tools/ │ │ │ ├── ant-contrib-1.0b3.jar │ │ │ ├── csslint-rhino.js │ │ │ ├── fulljshint.js │ │ │ ├── fulljslint.js │ │ │ ├── htmlcompressor-1.4.3.jar │ │ │ ├── optipng-0.6.4-exe/ │ │ │ │ └── LICENSE.txt │ │ │ ├── rhino.jar │ │ │ └── yuicompressor-2.4.5.jar │ │ ├── crossdomain.xml │ │ ├── css/ │ │ │ ├── custom.css │ │ │ ├── fonts.css │ │ │ ├── libs/ │ │ │ │ └── openid.css │ │ │ ├── normalize.css │ │ │ └── style.css │ │ ├── demo/ │ │ │ ├── elements.html │ │ │ ├── hack.css │ │ │ ├── hack2.css │ │ │ └── tests.html │ │ ├── humans.txt │ │ ├── img/ │ │ │ └── .gitignore │ │ ├── index.html │ │ ├── js/ │ │ │ ├── libs/ │ │ │ │ ├── dd_belatedpng.js │ │ │ │ ├── jquery-1.5.1.js │ │ │ │ └── jquery-1.6.2.js │ │ │ ├── mylibs/ │ │ │ │ ├── .gitignore │ │ │ │ └── openid-en.js │ │ │ ├── plugins.js │ │ │ └── script.js │ │ ├── robots.txt │ │ └── test/ │ │ ├── index.html │ │ ├── qunit/ │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ └── tests.js │ ├── templates/ │ │ ├── account.html │ │ ├── account_setup.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── index.html │ │ └── login.html │ └── tools/ │ ├── __init__.py │ ├── common.py │ ├── decorators.py │ └── mailchimp.py └── upload_to_appengine.sh