Patch the old Form classes in web.py to create Bootstrap-compatible forms
Project description
# Effortless Bootstrap Web/Form Monkey Patch
Bootstrap your old web/form.py forms!
## Synopsis
Just because web.py hasn't been updated since 2012 doesn't mean you have to
settle for outdated HTML layouts. Scrap that 2001-era table-based form layout,
and use this module to create shiny, new Bootstrap 4-alpha forms!
Two ways to be happy:
1. Patch the old form classes.
2. Use our backwards-compatible form classes.
Either way, *you won't have to change a bit of your program logic.* It's a
just small change at the top of the program.
## How To Patch
To update your old webforms, just import and use the `patch()` function.
from effortless_bootstrap_web_form_monkey_patch import patch
patch()
Now you can continue to use your old web.py forms normally.
## How to Use Backwards-Compatible Classes
To use all-new but all-backwards-compatible classes, just import this package
instead of web.form.
import effortless_bootstrap_web_form_monkey_patch as form
Now you can continue to use your old web.py forms normally.
## Remember to Update Your Templates
Oh yeah, make sure you update the templates to use Bootstrap. The most
important piece to remember is to wrap all Bootstrap items with a `.container`
div.
<div class="container">
<form>
$:form.render()
</form>
</div>
And of course you need the CSS. If you don't want to host it locally, use their
CDN by adding this piece to the header.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/css/bootstrap.min.css" integrity="2hfp1SzUoho7/TsGGGDaFdsuuDL0LX2hnUp6VkX3CUQ2K4K+xjboZdsXyp4oUHZj" crossorigin="anonymous">
For more information on using Bootstrap 4-alpha, check out http://v4-alpha.getbootstrap.com/ .
## Installation
pip install effortless_bootstrap_web_form_monkey_patch
## Inspiration
- Bootstrap 4 alpha form documentation at http://v4-alpha.getbootstrap.com/components/forms/
- Runtime patching was learned at https://tryolabs.com/blog/2013/07/05/run-time-method-patching-python/
## Author
Justin McGuire — <jm@landedstar.com> — <a href="https://twitter.com/landedstar">@landedstar.com</a> — http://landedstar.com
## License
MIT License
Bootstrap your old web/form.py forms!
## Synopsis
Just because web.py hasn't been updated since 2012 doesn't mean you have to
settle for outdated HTML layouts. Scrap that 2001-era table-based form layout,
and use this module to create shiny, new Bootstrap 4-alpha forms!
Two ways to be happy:
1. Patch the old form classes.
2. Use our backwards-compatible form classes.
Either way, *you won't have to change a bit of your program logic.* It's a
just small change at the top of the program.
## How To Patch
To update your old webforms, just import and use the `patch()` function.
from effortless_bootstrap_web_form_monkey_patch import patch
patch()
Now you can continue to use your old web.py forms normally.
## How to Use Backwards-Compatible Classes
To use all-new but all-backwards-compatible classes, just import this package
instead of web.form.
import effortless_bootstrap_web_form_monkey_patch as form
Now you can continue to use your old web.py forms normally.
## Remember to Update Your Templates
Oh yeah, make sure you update the templates to use Bootstrap. The most
important piece to remember is to wrap all Bootstrap items with a `.container`
div.
<div class="container">
<form>
$:form.render()
</form>
</div>
And of course you need the CSS. If you don't want to host it locally, use their
CDN by adding this piece to the header.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/css/bootstrap.min.css" integrity="2hfp1SzUoho7/TsGGGDaFdsuuDL0LX2hnUp6VkX3CUQ2K4K+xjboZdsXyp4oUHZj" crossorigin="anonymous">
For more information on using Bootstrap 4-alpha, check out http://v4-alpha.getbootstrap.com/ .
## Installation
pip install effortless_bootstrap_web_form_monkey_patch
## Inspiration
- Bootstrap 4 alpha form documentation at http://v4-alpha.getbootstrap.com/components/forms/
- Runtime patching was learned at https://tryolabs.com/blog/2013/07/05/run-time-method-patching-python/
## Author
Justin McGuire — <jm@landedstar.com> — <a href="https://twitter.com/landedstar">@landedstar.com</a> — http://landedstar.com
## License
MIT License
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 effortless_bootstrap_web_form_monkey_patch-0.2.tar.gz.
File metadata
- Download URL: effortless_bootstrap_web_form_monkey_patch-0.2.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f3f1a96ff4ba1c5b2fdbe8b6f56e8d32d5f5656cbbddc9701ec1f5ef3c9e868
|
|
| MD5 |
73f8efe80b4dff942d7d4e2718c834ef
|
|
| BLAKE2b-256 |
d1805cf9e39dc955a76a127f8c5f2daf23fb03707c95666f0ab1d10fee9a4a39
|