django-bakery

A set of helpers for baking your Django site out as flat files

MIT License

Downloads
6.1K
Stars
399
Committers
26

Bot releases are visible (Hide)

django-bakery - v0.8.0

Published by palewire over 8 years ago

  • Added new date-based archive views BuildableArchiveIndexView, BuildableYearArchiveView, BuildableMonthArchiveView, BuildableDayArchiveView
  • get_url method on the BuildableDetailView now raises a ImproperlyConfigured error
  • Refactored views into separate files
django-bakery - v0.7.8

Published by palewire over 8 years ago

  • Improved error handling and documentation of BuildableDetailView's get_url method.
django-bakery - v0.7.7

Published by palewire over 8 years ago

  • Patch provided backwards compatibility to a previous boto bug fix.
django-bakery - v0.7.6

Published by palewire almost 9 years ago

  • Patched set_kwargs to override the key name of the slug when it is configured by the detail view's slug_field setting
django-bakery - v0.7.5

Published by palewire about 9 years ago

  • BAKERY_CACHE_CONTROL settings variable and support
  • Better tests for publish and unpublish
  • Delete operations in publish and unpublish command breaks keys into batches to avoid S3 errors on large sets
django-bakery - v0.7.4

Published by palewire over 9 years ago

  • Fixed content_type versus mimetype bug in the static views for Django 1.7 and 1.8
  • A few other small Python 3 related bugs
django-bakery - v0.7.2

Published by palewire almost 10 years ago

  • Added BuildableRedirectView
django-bakery - v0.7.3

Published by palewire almost 10 years ago

  • Added a --no-delete option to the publish management command.
  • Fixed testing in Django 1.7
django-bakery - v0.6.4

Published by palewire over 10 years ago

  • Added BuildableFeed for RSS support
django-bakery - v0.6.3

Published by palewire over 10 years ago

  • Changed AutoPublishingBuildableModel to commit to the database before triggering a task
  • Changed Celery tasks to accept primary keys instead of model objects
django-bakery - v0.6.1

Published by palewire over 10 years ago

  • An AutoPublishingBuildableModel that is able to use a Celery job queue to automatically build and publish objects when they are saved
  • Refactored build management command to allow for its different tasks to be more easily overridden
  • Added a --keep-build-dir option to the build command.
django-bakery - v0.5.0

Published by palewire over 10 years ago

  • Refactored the publish and unpublish management commands to use boto instead of s3cmd.
  • build and publish management commands use file mimetypes instead of a regex on the filename to decide if a file will be gzipped.
  • publish management command includes --force and --dry-run uploads to force an upload of all file, regardless of changes, and to print output without uploading files, respectively.
  • publish management command now pools uploads to increase speed
django-bakery - v0.4.2

Published by palewire over 10 years ago

  • Added a get_content method to all of the buildable views to make it easier to build pages that don't require a template, like JSON outputs
django-bakery - v0.4.1

Published by emamd over 10 years ago

  • Bug fix with calculating Python version in the views in v0.4.0
django-bakery - v0.4.0

Published by palewire over 10 years ago

  • Added optional gzip support to build routine for Amazon S3 publishing (via @emamd)
  • Mixin buildable view with common methods
django-bakery - v0.3.0

Published by palewire over 10 years ago

  • Python 3 support
  • Unit tests
  • Continuous integration testing at TravisCI
  • Coverage reporting at Coveralls
  • PEP8 compliance
  • PyFlakes compliance