├── .gitignore ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── TODO ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── operation.rst └── quickstart.rst ├── requirements.txt ├── setup.py └── statirator ├── __init__.py ├── blog ├── __init__.py ├── feeds.py ├── locale │ └── he │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── create_post.py ├── models.py ├── readers.py ├── renderers.py ├── sitemap.py ├── templates │ └── blog │ │ ├── new_post_content.txt │ │ ├── new_post_metadata.txt │ │ ├── post_detail.html │ │ ├── post_excerpt.html │ │ ├── post_list.html │ │ ├── tag_detail.html │ │ └── tag_list.html ├── templatetags │ ├── __init__.py │ └── blog.py ├── utils.py └── views.py ├── core ├── __init__.py ├── context_processors.py ├── locale │ └── he │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── copy_template.py │ │ ├── generate.py │ │ ├── init.py │ │ └── serve.py ├── models.py ├── parsers.py ├── readers.py ├── renderers.py ├── syndication.py ├── templates │ ├── 404.html │ ├── base.html │ ├── index.html │ └── sitemap.xml ├── templatetags │ ├── __init__.py │ └── st_core.py ├── tests.py └── utils.py ├── main.py ├── pages ├── __init__.py ├── models.py ├── readers.py ├── renderers.py ├── sitemap.py ├── templates │ └── pages │ │ └── page_detail.html ├── templatetags │ ├── __init__.py │ └── pages.py ├── tests.py ├── utils.py └── views.py ├── project_template ├── blog │ └── README ├── locale │ └── README ├── manage.py ├── pages │ ├── .gitignore │ └── index.html ├── project_name │ ├── __init__.py │ ├── settings.py │ └── urls.py ├── static │ ├── .htaccess │ ├── crossdomain.xml │ ├── css │ │ ├── main.css │ │ ├── normalize.css │ │ └── normalize_rtl.css │ ├── favicon.ico │ ├── humans.txt │ ├── img │ │ ├── apple-touch-icon-114x114-precomposed.png │ │ ├── apple-touch-icon-144x144-precomposed.png │ │ ├── apple-touch-icon-57x57-precomposed.png │ │ ├── apple-touch-icon-72x72-precomposed.png │ │ ├── apple-touch-icon-precomposed.png │ │ └── apple-touch-icon.png │ ├── js │ │ ├── main.js │ │ ├── plugins.js │ │ └── vendor │ │ │ ├── jquery-1.8.0.min.js │ │ │ └── modernizr-2.6.1.min.js │ └── robots.txt └── templates │ └── README ├── templates └── html5 │ ├── modernizr.js │ └── site.html └── test_settings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- 1 | 0.1.0, 2011-04-27 -- Initial release. 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/README.rst -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/TODO -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/operation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/docs/operation.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/setup.py -------------------------------------------------------------------------------- /statirator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/blog/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/feeds.py -------------------------------------------------------------------------------- /statirator/blog/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /statirator/blog/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /statirator/blog/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/blog/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/blog/management/commands/create_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/management/commands/create_post.py -------------------------------------------------------------------------------- /statirator/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/models.py -------------------------------------------------------------------------------- /statirator/blog/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/readers.py -------------------------------------------------------------------------------- /statirator/blog/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/renderers.py -------------------------------------------------------------------------------- /statirator/blog/sitemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/sitemap.py -------------------------------------------------------------------------------- /statirator/blog/templates/blog/new_post_content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/templates/blog/new_post_content.txt -------------------------------------------------------------------------------- /statirator/blog/templates/blog/new_post_metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/templates/blog/new_post_metadata.txt -------------------------------------------------------------------------------- /statirator/blog/templates/blog/post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/templates/blog/post_detail.html -------------------------------------------------------------------------------- /statirator/blog/templates/blog/post_excerpt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/templates/blog/post_excerpt.html -------------------------------------------------------------------------------- /statirator/blog/templates/blog/post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/templates/blog/post_list.html -------------------------------------------------------------------------------- /statirator/blog/templates/blog/tag_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/templates/blog/tag_detail.html -------------------------------------------------------------------------------- /statirator/blog/templates/blog/tag_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/templates/blog/tag_list.html -------------------------------------------------------------------------------- /statirator/blog/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/blog/templatetags/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/templatetags/blog.py -------------------------------------------------------------------------------- /statirator/blog/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/utils.py -------------------------------------------------------------------------------- /statirator/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/blog/views.py -------------------------------------------------------------------------------- /statirator/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/core/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/context_processors.py -------------------------------------------------------------------------------- /statirator/core/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /statirator/core/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /statirator/core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/core/management/commands/copy_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/management/commands/copy_template.py -------------------------------------------------------------------------------- /statirator/core/management/commands/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/management/commands/generate.py -------------------------------------------------------------------------------- /statirator/core/management/commands/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/management/commands/init.py -------------------------------------------------------------------------------- /statirator/core/management/commands/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/management/commands/serve.py -------------------------------------------------------------------------------- /statirator/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/models.py -------------------------------------------------------------------------------- /statirator/core/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/parsers.py -------------------------------------------------------------------------------- /statirator/core/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/readers.py -------------------------------------------------------------------------------- /statirator/core/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/renderers.py -------------------------------------------------------------------------------- /statirator/core/syndication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/syndication.py -------------------------------------------------------------------------------- /statirator/core/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/templates/404.html -------------------------------------------------------------------------------- /statirator/core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/templates/base.html -------------------------------------------------------------------------------- /statirator/core/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/templates/index.html -------------------------------------------------------------------------------- /statirator/core/templates/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/templates/sitemap.xml -------------------------------------------------------------------------------- /statirator/core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/core/templatetags/st_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/templatetags/st_core.py -------------------------------------------------------------------------------- /statirator/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/tests.py -------------------------------------------------------------------------------- /statirator/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/core/utils.py -------------------------------------------------------------------------------- /statirator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/main.py -------------------------------------------------------------------------------- /statirator/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/pages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/pages/models.py -------------------------------------------------------------------------------- /statirator/pages/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/pages/readers.py -------------------------------------------------------------------------------- /statirator/pages/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/pages/renderers.py -------------------------------------------------------------------------------- /statirator/pages/sitemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/pages/sitemap.py -------------------------------------------------------------------------------- /statirator/pages/templates/pages/page_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/pages/templates/pages/page_detail.html -------------------------------------------------------------------------------- /statirator/pages/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/pages/templatetags/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/pages/templatetags/pages.py -------------------------------------------------------------------------------- /statirator/pages/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/pages/tests.py -------------------------------------------------------------------------------- /statirator/pages/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/pages/utils.py -------------------------------------------------------------------------------- /statirator/pages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/pages/views.py -------------------------------------------------------------------------------- /statirator/project_template/blog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/blog/README -------------------------------------------------------------------------------- /statirator/project_template/locale/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/locale/README -------------------------------------------------------------------------------- /statirator/project_template/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/manage.py -------------------------------------------------------------------------------- /statirator/project_template/pages/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/project_template/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/pages/index.html -------------------------------------------------------------------------------- /statirator/project_template/project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statirator/project_template/project_name/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/project_name/settings.py -------------------------------------------------------------------------------- /statirator/project_template/project_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/project_name/urls.py -------------------------------------------------------------------------------- /statirator/project_template/static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/.htaccess -------------------------------------------------------------------------------- /statirator/project_template/static/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/crossdomain.xml -------------------------------------------------------------------------------- /statirator/project_template/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/css/main.css -------------------------------------------------------------------------------- /statirator/project_template/static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/css/normalize.css -------------------------------------------------------------------------------- /statirator/project_template/static/css/normalize_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/css/normalize_rtl.css -------------------------------------------------------------------------------- /statirator/project_template/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/favicon.ico -------------------------------------------------------------------------------- /statirator/project_template/static/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/humans.txt -------------------------------------------------------------------------------- /statirator/project_template/static/img/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/img/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /statirator/project_template/static/img/apple-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/img/apple-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /statirator/project_template/static/img/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/img/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /statirator/project_template/static/img/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/img/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /statirator/project_template/static/img/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/img/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /statirator/project_template/static/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/img/apple-touch-icon.png -------------------------------------------------------------------------------- /statirator/project_template/static/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /statirator/project_template/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/js/plugins.js -------------------------------------------------------------------------------- /statirator/project_template/static/js/vendor/jquery-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/js/vendor/jquery-1.8.0.min.js -------------------------------------------------------------------------------- /statirator/project_template/static/js/vendor/modernizr-2.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/js/vendor/modernizr-2.6.1.min.js -------------------------------------------------------------------------------- /statirator/project_template/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/project_template/static/robots.txt -------------------------------------------------------------------------------- /statirator/project_template/templates/README: -------------------------------------------------------------------------------- 1 | Overide and place templates here 2 | 3 | THIS FILE CAN BE DELETED 4 | -------------------------------------------------------------------------------- /statirator/templates/html5/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/templates/html5/modernizr.js -------------------------------------------------------------------------------- /statirator/templates/html5/site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/templates/html5/site.html -------------------------------------------------------------------------------- /statirator/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeirKriheli/statirator/HEAD/statirator/test_settings.py --------------------------------------------------------------------------------