├── .coveragerc ├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature-request.yml ├── SECURITY.md ├── dependabot.yml ├── labels.toml └── workflows │ ├── ci.yml │ ├── gh-pages.yml │ ├── labels.yml │ ├── publish.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AUTHORS.md ├── LICENSE ├── README.md ├── docs └── index.md ├── mkdocs.yml ├── planet ├── __about__.py ├── __init__.py ├── admin.py ├── apps.py ├── context_processors.py ├── forms.py ├── locale │ └── es │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── planet_add_feed.py │ │ └── planet_update_all_feeds.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── settings.py ├── static │ └── planet │ │ ├── images │ │ └── wavegrid.png │ │ └── planet.css ├── templates │ ├── base.html │ └── planet │ │ ├── authors │ │ ├── blocks │ │ │ ├── list.html │ │ │ └── list_for_feed.html │ │ ├── detail.html │ │ └── list.html │ │ ├── base.html │ │ ├── blogs │ │ ├── blocks │ │ │ └── list.html │ │ ├── detail.html │ │ └── list.html │ │ ├── feeds │ │ ├── blocks │ │ │ └── list_for_author.html │ │ ├── detail.html │ │ └── list.html │ │ └── posts │ │ ├── blocks │ │ └── list.html │ │ ├── detail.html │ │ ├── details.html │ │ ├── full_details.html │ │ └── list.html ├── templatetags │ ├── __init__.py │ └── planet_tags.py ├── urls.py ├── utils.py └── views.py ├── project ├── .dockerignore ├── Dockerfile ├── manage.py ├── project │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── requirements.txt └── templates │ └── pagination │ └── pagination.html ├── pyproject.toml ├── screenshots ├── author.png ├── blog.png ├── full-post.png └── post-list.png └── tests ├── __init__.py ├── factories.py ├── settings.py ├── test_managers.py ├── test_views.py └── urls.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | show_missing = True 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/labels.toml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /planet/__about__.py: -------------------------------------------------------------------------------- 1 | version = "1.0.0-alpha.2" 2 | -------------------------------------------------------------------------------- /planet/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.0-alpha.1" 2 | -------------------------------------------------------------------------------- /planet/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/admin.py -------------------------------------------------------------------------------- /planet/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/apps.py -------------------------------------------------------------------------------- /planet/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/context_processors.py -------------------------------------------------------------------------------- /planet/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/forms.py -------------------------------------------------------------------------------- /planet/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /planet/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /planet/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /planet/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /planet/management/commands/planet_add_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/management/commands/planet_add_feed.py -------------------------------------------------------------------------------- /planet/management/commands/planet_update_all_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/management/commands/planet_update_all_feeds.py -------------------------------------------------------------------------------- /planet/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/managers.py -------------------------------------------------------------------------------- /planet/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/migrations/0001_initial.py -------------------------------------------------------------------------------- /planet/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /planet/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/models.py -------------------------------------------------------------------------------- /planet/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/settings.py -------------------------------------------------------------------------------- /planet/static/planet/images/wavegrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/static/planet/images/wavegrid.png -------------------------------------------------------------------------------- /planet/static/planet/planet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/static/planet/planet.css -------------------------------------------------------------------------------- /planet/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/base.html -------------------------------------------------------------------------------- /planet/templates/planet/authors/blocks/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/authors/blocks/list.html -------------------------------------------------------------------------------- /planet/templates/planet/authors/blocks/list_for_feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/authors/blocks/list_for_feed.html -------------------------------------------------------------------------------- /planet/templates/planet/authors/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/authors/detail.html -------------------------------------------------------------------------------- /planet/templates/planet/authors/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/authors/list.html -------------------------------------------------------------------------------- /planet/templates/planet/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/base.html -------------------------------------------------------------------------------- /planet/templates/planet/blogs/blocks/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/blogs/blocks/list.html -------------------------------------------------------------------------------- /planet/templates/planet/blogs/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/blogs/detail.html -------------------------------------------------------------------------------- /planet/templates/planet/blogs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/blogs/list.html -------------------------------------------------------------------------------- /planet/templates/planet/feeds/blocks/list_for_author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/feeds/blocks/list_for_author.html -------------------------------------------------------------------------------- /planet/templates/planet/feeds/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/feeds/detail.html -------------------------------------------------------------------------------- /planet/templates/planet/feeds/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/feeds/list.html -------------------------------------------------------------------------------- /planet/templates/planet/posts/blocks/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/posts/blocks/list.html -------------------------------------------------------------------------------- /planet/templates/planet/posts/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/posts/detail.html -------------------------------------------------------------------------------- /planet/templates/planet/posts/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/posts/details.html -------------------------------------------------------------------------------- /planet/templates/planet/posts/full_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/posts/full_details.html -------------------------------------------------------------------------------- /planet/templates/planet/posts/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templates/planet/posts/list.html -------------------------------------------------------------------------------- /planet/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /planet/templatetags/planet_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/templatetags/planet_tags.py -------------------------------------------------------------------------------- /planet/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/urls.py -------------------------------------------------------------------------------- /planet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/utils.py -------------------------------------------------------------------------------- /planet/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/planet/views.py -------------------------------------------------------------------------------- /project/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/project/.dockerignore -------------------------------------------------------------------------------- /project/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/project/Dockerfile -------------------------------------------------------------------------------- /project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/project/manage.py -------------------------------------------------------------------------------- /project/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/project/project/asgi.py -------------------------------------------------------------------------------- /project/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/project/project/settings.py -------------------------------------------------------------------------------- /project/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/project/project/urls.py -------------------------------------------------------------------------------- /project/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/project/project/wsgi.py -------------------------------------------------------------------------------- /project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/project/requirements.txt -------------------------------------------------------------------------------- /project/templates/pagination/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/project/templates/pagination/pagination.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshots/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/screenshots/author.png -------------------------------------------------------------------------------- /screenshots/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/screenshots/blog.png -------------------------------------------------------------------------------- /screenshots/full-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/screenshots/full-post.png -------------------------------------------------------------------------------- /screenshots/post-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/screenshots/post-list.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/tests/test_managers.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matagus/django-planet/HEAD/tests/urls.py --------------------------------------------------------------------------------