https://github.com/btbytes/djofc2_demo
Using Python Open Flash Chart 2 with Django
https://github.com/btbytes/djofc2_demo
Last synced: 11 months ago
JSON representation
Using Python Open Flash Chart 2 with Django
- Host: GitHub
- URL: https://github.com/btbytes/djofc2_demo
- Owner: btbytes
- Created: 2009-04-16T01:29:16.000Z (almost 17 years ago)
- Default Branch: master
- Last Pushed: 2009-04-16T01:43:19.000Z (almost 17 years ago)
- Last Synced: 2025-04-30T22:16:11.300Z (11 months ago)
- Homepage:
- Size: 332 KB
- Stars: 27
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Using PyOFC2 with Django
0. Download [Open Flash Chart 2](http://teethgrinder.co.uk/open-flash-chart-2/downloads.php)
1. Download and install [PyOFC2](http://github.com/btbytes/pyofc2/tree/master)
2. Download [SWFObject](http://code.google.com/p/swfobject/) and put the files in your static media directory
3. Add references to the SWFObject files and `open-flash-chart.swf` file in the header section. See `templates/index.html` for details
4. Create a view to serve the json data from. See `demoapp/views.py`
5. Configure `urls.py` to map the view to the url endpoint.
----
Copyright (c) 2009 Pradeep Gowda.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of Pradeep Gowda may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.