Every WSGI app is better with a raptor.
Project description
Installation
You could install it yourself with pip:
$ pip install raptorizemw
Or you could add raptorizemw to the list of required packages in the setup.py file of your project.
Usage in TurboGears 2
Simply edit myapp/config/middleware.py and add the following to make_app(...):
# Wrap your base TurboGears 2 application with custom middleware here import raptorizemw app = raptorizemw.make_middleware(app)
Restart your app, but watch out for raptors!
Usage in Pyramid
Edit myapp/__init__.py and replace the return config.make_wsgi_app() line with the following:
import raptorizemw app = config.make_wsgi_app() app = raptorizemw.make_middleware(app) return app
Configuration
make_middleware(...) and RaptorizeMiddleware.__init__(...) both take a number of configuration keywords:
enterOn can be one of two actions: ‘timer’ or ‘konami-code’. If ‘timer’ is specified, then the raptor is shown on page load. If ‘konami-code’, then the raptor is shown if the page-viewing user enters the sacred sequence. Default is ‘timer’.
delayTime must be an int and is the number of milliseconds until the raptor is shown. Default is 2000.
random_chance must be a float between 0.0 and 1.0 representing a ‘percent chance’ to load the raptor. A value of 1.0 means the raptor will be injected every time; a value of 0.0 means it will never be injected; a value of 0.5 will result in a 50% chance of raptors.
only_on_april_1st must be a bool value that will restrict raptors only to April Fool’s day.
For example:
app = raptorizemw.make_middleware( app, enterOn='konami-code', delayTime=500, random_chance=0.5, only_on_april_1st=True )
will result in 50% of pages loaded with raptors on April Fool’s Day only. These raptors will only be displayed if the user also enters the konami code, and quite quickly, after only a half a second.
Credits
This WSGI-fication of the raptorize jquery plugin was written by Ralph Bean. Real credit goes to the people over at ZURB who authored the original jquery plugin.
Get the source
The code and bug tracker live over at http://github.com/ralphbean/raptorizemw. Please fork and improve!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file raptorizemw-0.1.7dev.tar.gz
.
File metadata
- Download URL: raptorizemw-0.1.7dev.tar.gz
- Upload date:
- Size: 2.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e394db28f0a20d7a53230113965633623db5dcf1b975b097e3928e32c68bdf2c |
|
MD5 | 9aade5e3b2e52f71740a1a74d157db50 |
|
BLAKE2b-256 | f031630dd14d66cec1af062a5548888f5085a39b101998e9af6adfc1f9df0438 |