Skip to content

cltrudeau/django-airplane

Repository files navigation

django-airplane

This app is to help in those situations where you can't get on the network but you want to write some Django code. Surround your static CDN references (like jquery and the like) with this template tag and when you turn it on the URLs will be re-written from a local copy.

Installation

In your settings file, add 'airplane' to your settings.INSTALLED_APPS field:

Also in settings, make the following additions:

Now use the airplane tag in your templates

Change the AIRPLANE_MODE setting to airplane.USE_CACHE and subsequent calls to the {% airplane %} tag will return a reference to the locally cached version.

Settings

Airplane only does something if DEBUG=True and if you have an AIRPLANE_MODE value set to airplane.BUILD_CACHE, airplane.USE_CACHE, or airplane.AUTO_CACHE. If one of these conditions is not met, the tag simply returns the value passed in.

For example, if DEBUG=False and your template contains:

Then the above snippet renders as:

When AIRPLANE_MODE is set to airplane.BUILD_CACHE any URLs passed in are fetched and their contents added to a local cache. The default local cache is .airport_cache relative to the base directory of your project.

You can change the location of the cache by setting AIRPLANE_CACHE. The setting accepts either fully qualified paths or paths relative to the project's base directory.

Once you have cached all the files you are using, switch AIRPLANE_MODE to airplane.USE_CACHE. All URLs are now re-written to point to the contents of the local cache.

Alternatively, you can set AIRPLANE_MODE to airplane.AUTO_CACHE and the first call will cache the file and subsequent calls will use the cached copy.

Commands

The following django commands come with airplane.

airinfo

This command takes no arguments and displays information about the cache. The current mode, the path of the directory and any items cached inside are shown.

aircache

This command takes a single URL as an argument and caches the contents of the URL.

Schemaless URLs

As airplane is a template tag library, it doesn't have access to the request object at execution. In order to allow schemaless URLs, the code makes the assumption that the schema is "https" if it is not given in the URL.

Limitations

The intent of this library is to help you when you're using the Django debugging server and in a situation where you can't easily get to the network. Cached files are served using the django static server code, which means you are limited by what kinds of files it can serve. The static server makes guesses on the mimetype of the file based on file extensions. Airplane naively copies the extension of the file so the cached file has the same ending. This means URLs with weird extensions or those which static serve cannot guess at mimetype, will cause problems. It is not recommended to use django-airplane with files that don't end in typical extensions such as ".css", ".js", ".jpg", ".png" or ".gif".

Supports

django-airplane has been tested with:

  • Python 3.8-3.11 and Django 4.1
  • Python 3.8-3.11 and Django 4.2

Older versions tested against Django 2.2 and 3.2, nothing has changed since then that should break, but these are no longer test targets

Docs

Docs available at: http://django-airplane.readthedocs.io/en/latest/

Source: https://github.com/cltrudeau/django-airplane

About

Django app that caches CDN files for use when coding offline

Resources

License

Stars

Watchers

Forks

Packages

No packages published