├── .enter.local.tcsh.dist ├── .enter.tcsh.dist ├── .gitignore ├── INSTALL ├── README ├── TODO ├── default_settings.py ├── doc └── COOKIES.txt ├── patches ├── werkzeug::contrib::cache_452e8402d056.patch-0.6.2 └── werkzeug::contrib::cache_452e8402d056.patch-0.7.0 ├── requirements.txt ├── runserver.py ├── shell.py ├── skeleton ├── __init__.py ├── filters │ ├── __init__.py │ └── strftime.py ├── lib.py ├── models │ ├── __init__.py │ └── timezone.py ├── modules │ ├── aaa │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── email.py │ │ │ ├── user.py │ │ │ ├── user_emails.py │ │ │ └── user_info.py │ │ ├── templates │ │ │ ├── login.html │ │ │ ├── logout.html │ │ │ ├── profile.html │ │ │ └── register.html │ │ ├── user.py │ │ └── views.py │ ├── home │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── h1.py │ │ │ └── h3.py │ │ ├── static │ │ │ └── asset.txt │ │ ├── templates │ │ │ └── index.html │ │ └── views.py │ ├── mod1 │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── h2.py │ │ ├── static │ │ │ └── asset.txt │ │ ├── templates │ │ │ ├── list_all.html │ │ │ ├── list_one.html │ │ │ └── mod1_view.html │ │ └── views.py │ ├── mod2 │ │ ├── __init__.py │ │ ├── static │ │ │ └── asset.txt │ │ ├── templates │ │ │ ├── cache_logged_out.html │ │ │ ├── cached_always.html │ │ │ └── index.html │ │ └── views.py │ └── mod3 │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── models │ │ ├── __init__.py │ │ ├── page.py │ │ ├── page_tags.py │ │ └── tag.py │ │ ├── templates │ │ ├── page_submit.html │ │ ├── page_tags.html │ │ ├── pages.html │ │ ├── root.html │ │ ├── tag_add.html │ │ ├── tag_pages.html │ │ └── tags.html │ │ └── views.py ├── static │ ├── flask-powered.png │ ├── mod3 │ │ └── asset.txt │ ├── powered-by-flask-s.png │ └── style.css └── templates │ ├── _formhelpers.html │ └── layout │ └── base.html └── sql ├── .gitignore ├── initialize ├── .gitignore ├── 100_create_roles.sql ├── 130_create_database.sql ├── 140_alter_public_schema.sql ├── 200_schema.sql ├── 205_integrated_definitions.sql ├── 210_tables.sql ├── 280_views.sql ├── 300_funcs.sql.in ├── 400_triggers.sql ├── 500_fixup_func_owner.sql ├── 600_create_indexes.sql ├── 700_foreign_keys.sql ├── 800_initial_data.sql ├── 801_timezone_data.sql └── 900_cleanup_users.sql └── maintenance └── 100_perms.sql /.enter.local.tcsh.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/.enter.local.tcsh.dist -------------------------------------------------------------------------------- /.enter.tcsh.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/.enter.tcsh.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/INSTALL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/TODO -------------------------------------------------------------------------------- /default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/default_settings.py -------------------------------------------------------------------------------- /doc/COOKIES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/doc/COOKIES.txt -------------------------------------------------------------------------------- /patches/werkzeug::contrib::cache_452e8402d056.patch-0.6.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/patches/werkzeug::contrib::cache_452e8402d056.patch-0.6.2 -------------------------------------------------------------------------------- /patches/werkzeug::contrib::cache_452e8402d056.patch-0.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/patches/werkzeug::contrib::cache_452e8402d056.patch-0.7.0 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/requirements.txt -------------------------------------------------------------------------------- /runserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/runserver.py -------------------------------------------------------------------------------- /shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/shell.py -------------------------------------------------------------------------------- /skeleton/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/__init__.py -------------------------------------------------------------------------------- /skeleton/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/filters/__init__.py -------------------------------------------------------------------------------- /skeleton/filters/strftime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/filters/strftime.py -------------------------------------------------------------------------------- /skeleton/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/lib.py -------------------------------------------------------------------------------- /skeleton/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/models/__init__.py -------------------------------------------------------------------------------- /skeleton/models/timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/models/timezone.py -------------------------------------------------------------------------------- /skeleton/modules/aaa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/__init__.py -------------------------------------------------------------------------------- /skeleton/modules/aaa/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/forms.py -------------------------------------------------------------------------------- /skeleton/modules/aaa/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/models/__init__.py -------------------------------------------------------------------------------- /skeleton/modules/aaa/models/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/models/email.py -------------------------------------------------------------------------------- /skeleton/modules/aaa/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/models/user.py -------------------------------------------------------------------------------- /skeleton/modules/aaa/models/user_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/models/user_emails.py -------------------------------------------------------------------------------- /skeleton/modules/aaa/models/user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/models/user_info.py -------------------------------------------------------------------------------- /skeleton/modules/aaa/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/templates/login.html -------------------------------------------------------------------------------- /skeleton/modules/aaa/templates/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/templates/logout.html -------------------------------------------------------------------------------- /skeleton/modules/aaa/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/templates/profile.html -------------------------------------------------------------------------------- /skeleton/modules/aaa/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/templates/register.html -------------------------------------------------------------------------------- /skeleton/modules/aaa/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/user.py -------------------------------------------------------------------------------- /skeleton/modules/aaa/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/aaa/views.py -------------------------------------------------------------------------------- /skeleton/modules/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/home/__init__.py -------------------------------------------------------------------------------- /skeleton/modules/home/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/home/models/__init__.py -------------------------------------------------------------------------------- /skeleton/modules/home/models/h1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/home/models/h1.py -------------------------------------------------------------------------------- /skeleton/modules/home/models/h3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/home/models/h3.py -------------------------------------------------------------------------------- /skeleton/modules/home/static/asset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/home/static/asset.txt -------------------------------------------------------------------------------- /skeleton/modules/home/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/home/templates/index.html -------------------------------------------------------------------------------- /skeleton/modules/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/home/views.py -------------------------------------------------------------------------------- /skeleton/modules/mod1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod1/__init__.py -------------------------------------------------------------------------------- /skeleton/modules/mod1/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .h2 import H2 2 | -------------------------------------------------------------------------------- /skeleton/modules/mod1/models/h2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod1/models/h2.py -------------------------------------------------------------------------------- /skeleton/modules/mod1/static/asset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod1/static/asset.txt -------------------------------------------------------------------------------- /skeleton/modules/mod1/templates/list_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod1/templates/list_all.html -------------------------------------------------------------------------------- /skeleton/modules/mod1/templates/list_one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod1/templates/list_one.html -------------------------------------------------------------------------------- /skeleton/modules/mod1/templates/mod1_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod1/templates/mod1_view.html -------------------------------------------------------------------------------- /skeleton/modules/mod1/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod1/views.py -------------------------------------------------------------------------------- /skeleton/modules/mod2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod2/__init__.py -------------------------------------------------------------------------------- /skeleton/modules/mod2/static/asset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod2/static/asset.txt -------------------------------------------------------------------------------- /skeleton/modules/mod2/templates/cache_logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod2/templates/cache_logged_out.html -------------------------------------------------------------------------------- /skeleton/modules/mod2/templates/cached_always.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod2/templates/cached_always.html -------------------------------------------------------------------------------- /skeleton/modules/mod2/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod2/templates/index.html -------------------------------------------------------------------------------- /skeleton/modules/mod2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod2/views.py -------------------------------------------------------------------------------- /skeleton/modules/mod3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/__init__.py -------------------------------------------------------------------------------- /skeleton/modules/mod3/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/forms.py -------------------------------------------------------------------------------- /skeleton/modules/mod3/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/models/__init__.py -------------------------------------------------------------------------------- /skeleton/modules/mod3/models/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/models/page.py -------------------------------------------------------------------------------- /skeleton/modules/mod3/models/page_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/models/page_tags.py -------------------------------------------------------------------------------- /skeleton/modules/mod3/models/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/models/tag.py -------------------------------------------------------------------------------- /skeleton/modules/mod3/templates/page_submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/templates/page_submit.html -------------------------------------------------------------------------------- /skeleton/modules/mod3/templates/page_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/templates/page_tags.html -------------------------------------------------------------------------------- /skeleton/modules/mod3/templates/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/templates/pages.html -------------------------------------------------------------------------------- /skeleton/modules/mod3/templates/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/templates/root.html -------------------------------------------------------------------------------- /skeleton/modules/mod3/templates/tag_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/templates/tag_add.html -------------------------------------------------------------------------------- /skeleton/modules/mod3/templates/tag_pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/templates/tag_pages.html -------------------------------------------------------------------------------- /skeleton/modules/mod3/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/templates/tags.html -------------------------------------------------------------------------------- /skeleton/modules/mod3/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/modules/mod3/views.py -------------------------------------------------------------------------------- /skeleton/static/flask-powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/static/flask-powered.png -------------------------------------------------------------------------------- /skeleton/static/mod3/asset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/static/mod3/asset.txt -------------------------------------------------------------------------------- /skeleton/static/powered-by-flask-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/static/powered-by-flask-s.png -------------------------------------------------------------------------------- /skeleton/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/static/style.css -------------------------------------------------------------------------------- /skeleton/templates/_formhelpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/templates/_formhelpers.html -------------------------------------------------------------------------------- /skeleton/templates/layout/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/skeleton/templates/layout/base.html -------------------------------------------------------------------------------- /sql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/.gitignore -------------------------------------------------------------------------------- /sql/initialize/.gitignore: -------------------------------------------------------------------------------- 1 | 300_funcs.sql 2 | -------------------------------------------------------------------------------- /sql/initialize/100_create_roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/100_create_roles.sql -------------------------------------------------------------------------------- /sql/initialize/130_create_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/130_create_database.sql -------------------------------------------------------------------------------- /sql/initialize/140_alter_public_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/140_alter_public_schema.sql -------------------------------------------------------------------------------- /sql/initialize/200_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/200_schema.sql -------------------------------------------------------------------------------- /sql/initialize/205_integrated_definitions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/205_integrated_definitions.sql -------------------------------------------------------------------------------- /sql/initialize/210_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/210_tables.sql -------------------------------------------------------------------------------- /sql/initialize/280_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/280_views.sql -------------------------------------------------------------------------------- /sql/initialize/300_funcs.sql.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/300_funcs.sql.in -------------------------------------------------------------------------------- /sql/initialize/400_triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/400_triggers.sql -------------------------------------------------------------------------------- /sql/initialize/500_fixup_func_owner.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/500_fixup_func_owner.sql -------------------------------------------------------------------------------- /sql/initialize/600_create_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/600_create_indexes.sql -------------------------------------------------------------------------------- /sql/initialize/700_foreign_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/700_foreign_keys.sql -------------------------------------------------------------------------------- /sql/initialize/800_initial_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/800_initial_data.sql -------------------------------------------------------------------------------- /sql/initialize/801_timezone_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/801_timezone_data.sql -------------------------------------------------------------------------------- /sql/initialize/900_cleanup_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/initialize/900_cleanup_users.sql -------------------------------------------------------------------------------- /sql/maintenance/100_perms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sean-/flask-skeleton/HEAD/sql/maintenance/100_perms.sql --------------------------------------------------------------------------------