├── .gitignore ├── .makesite └── flask │ └── service │ └── flask_install_update.sh.tmpl ├── .travis.yml ├── Changelog ├── LICENSE ├── Makefile ├── README.md ├── base ├── __init__.py ├── app.py ├── auth │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── manage.py │ ├── models.py │ ├── oauth │ │ ├── __init__.py │ │ ├── base.py │ │ ├── facebook.py │ │ ├── github.py │ │ └── twitter.py │ ├── templates │ │ └── auth │ │ │ ├── profile.html │ │ │ └── register.html │ ├── tests.py │ ├── utils.py │ └── views.py ├── config │ ├── __init__.py │ ├── core.py │ ├── develop.py │ ├── production.py │ └── test.py ├── core │ ├── __init__.py │ ├── admin.py │ ├── ext.py │ ├── models.py │ ├── static │ │ ├── foundation.ico │ │ └── foundation.png │ ├── templates │ │ └── core │ │ │ ├── 404.html │ │ │ ├── 500.html │ │ │ ├── base.html │ │ │ ├── blocks │ │ │ ├── analytics.html │ │ │ ├── messages.html │ │ │ ├── metrika.html │ │ │ └── nav.html │ │ │ └── index.html │ ├── tests.py │ └── views.py ├── ext.py ├── loader.py ├── pages │ ├── __init__.py │ ├── admin.py │ ├── config.py │ ├── models.py │ ├── static │ │ ├── bootstrap-wysihtml5-0.0.2.min.js │ │ ├── bootstrap-wysihtml5.css │ │ ├── wysihtml5-0.4.0pre.min.js │ │ └── wysiwyg-color.css │ ├── templates │ │ └── pages │ │ │ ├── admin │ │ │ ├── create.html │ │ │ └── edit.html │ │ │ └── page.html │ ├── tests.py │ └── views.py └── translations │ ├── babel.ini │ ├── babel.pot │ └── ru │ └── LC_MESSAGES │ ├── messages.mo │ └── messages.po ├── makesite.ini ├── manage.py ├── migrate ├── README ├── __init__.py ├── develop.ini ├── env.py ├── production.ini ├── script.py.mako └── versions │ ├── 00000001_init_auth_models.py │ ├── 00000002_fill_admin_recv.py │ ├── 00000003_added_key_to_auth.py │ └── 00000004_init_pages.py ├── preview.png ├── requirements.txt └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/.gitignore -------------------------------------------------------------------------------- /.makesite/flask/service/flask_install_update.sh.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/.makesite/flask/service/flask_install_update.sh.tmpl -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/Changelog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/README.md -------------------------------------------------------------------------------- /base/__init__.py: -------------------------------------------------------------------------------- 1 | " Project dir. " 2 | -------------------------------------------------------------------------------- /base/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/app.py -------------------------------------------------------------------------------- /base/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/__init__.py -------------------------------------------------------------------------------- /base/auth/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/admin.py -------------------------------------------------------------------------------- /base/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/forms.py -------------------------------------------------------------------------------- /base/auth/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/manage.py -------------------------------------------------------------------------------- /base/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/models.py -------------------------------------------------------------------------------- /base/auth/oauth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/oauth/__init__.py -------------------------------------------------------------------------------- /base/auth/oauth/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/oauth/base.py -------------------------------------------------------------------------------- /base/auth/oauth/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/oauth/facebook.py -------------------------------------------------------------------------------- /base/auth/oauth/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/oauth/github.py -------------------------------------------------------------------------------- /base/auth/oauth/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/oauth/twitter.py -------------------------------------------------------------------------------- /base/auth/templates/auth/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/templates/auth/profile.html -------------------------------------------------------------------------------- /base/auth/templates/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/templates/auth/register.html -------------------------------------------------------------------------------- /base/auth/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/tests.py -------------------------------------------------------------------------------- /base/auth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/utils.py -------------------------------------------------------------------------------- /base/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/auth/views.py -------------------------------------------------------------------------------- /base/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/config/__init__.py -------------------------------------------------------------------------------- /base/config/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/config/core.py -------------------------------------------------------------------------------- /base/config/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/config/develop.py -------------------------------------------------------------------------------- /base/config/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/config/production.py -------------------------------------------------------------------------------- /base/config/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/config/test.py -------------------------------------------------------------------------------- /base/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/__init__.py -------------------------------------------------------------------------------- /base/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/admin.py -------------------------------------------------------------------------------- /base/core/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/ext.py -------------------------------------------------------------------------------- /base/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/models.py -------------------------------------------------------------------------------- /base/core/static/foundation.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/static/foundation.ico -------------------------------------------------------------------------------- /base/core/static/foundation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/static/foundation.png -------------------------------------------------------------------------------- /base/core/templates/core/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/templates/core/404.html -------------------------------------------------------------------------------- /base/core/templates/core/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/templates/core/500.html -------------------------------------------------------------------------------- /base/core/templates/core/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/templates/core/base.html -------------------------------------------------------------------------------- /base/core/templates/core/blocks/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/templates/core/blocks/analytics.html -------------------------------------------------------------------------------- /base/core/templates/core/blocks/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/templates/core/blocks/messages.html -------------------------------------------------------------------------------- /base/core/templates/core/blocks/metrika.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/templates/core/blocks/metrika.html -------------------------------------------------------------------------------- /base/core/templates/core/blocks/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/templates/core/blocks/nav.html -------------------------------------------------------------------------------- /base/core/templates/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/templates/core/index.html -------------------------------------------------------------------------------- /base/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/tests.py -------------------------------------------------------------------------------- /base/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/core/views.py -------------------------------------------------------------------------------- /base/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/ext.py -------------------------------------------------------------------------------- /base/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/loader.py -------------------------------------------------------------------------------- /base/pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/__init__.py -------------------------------------------------------------------------------- /base/pages/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/admin.py -------------------------------------------------------------------------------- /base/pages/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/config.py -------------------------------------------------------------------------------- /base/pages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/models.py -------------------------------------------------------------------------------- /base/pages/static/bootstrap-wysihtml5-0.0.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/static/bootstrap-wysihtml5-0.0.2.min.js -------------------------------------------------------------------------------- /base/pages/static/bootstrap-wysihtml5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/static/bootstrap-wysihtml5.css -------------------------------------------------------------------------------- /base/pages/static/wysihtml5-0.4.0pre.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/static/wysihtml5-0.4.0pre.min.js -------------------------------------------------------------------------------- /base/pages/static/wysiwyg-color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/static/wysiwyg-color.css -------------------------------------------------------------------------------- /base/pages/templates/pages/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/templates/pages/admin/create.html -------------------------------------------------------------------------------- /base/pages/templates/pages/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/templates/pages/admin/edit.html -------------------------------------------------------------------------------- /base/pages/templates/pages/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/templates/pages/page.html -------------------------------------------------------------------------------- /base/pages/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/tests.py -------------------------------------------------------------------------------- /base/pages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/pages/views.py -------------------------------------------------------------------------------- /base/translations/babel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/translations/babel.ini -------------------------------------------------------------------------------- /base/translations/babel.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/translations/babel.pot -------------------------------------------------------------------------------- /base/translations/ru/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/translations/ru/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /base/translations/ru/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/base/translations/ru/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /makesite.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/makesite.ini -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/manage.py -------------------------------------------------------------------------------- /migrate/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrate/develop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/migrate/develop.ini -------------------------------------------------------------------------------- /migrate/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/migrate/env.py -------------------------------------------------------------------------------- /migrate/production.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/migrate/production.ini -------------------------------------------------------------------------------- /migrate/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/migrate/script.py.mako -------------------------------------------------------------------------------- /migrate/versions/00000001_init_auth_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/migrate/versions/00000001_init_auth_models.py -------------------------------------------------------------------------------- /migrate/versions/00000002_fill_admin_recv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/migrate/versions/00000002_fill_admin_recv.py -------------------------------------------------------------------------------- /migrate/versions/00000003_added_key_to_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/migrate/versions/00000003_added_key_to_auth.py -------------------------------------------------------------------------------- /migrate/versions/00000004_init_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/migrate/versions/00000004_init_pages.py -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/preview.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/requirements.txt -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klen/Flask-Foundation/HEAD/wsgi.py --------------------------------------------------------------------------------