Mercurial > roundup-cc
comparison doc/old_README.creole @ 34:916fa83b4144
Clean up repository. 'Update README.creole'
* /doc added for the old demos.
* Added comments to config.ini.
author | Magnus Schieder <mschieder@intevation.de> |
---|---|
date | Mon, 26 Nov 2018 16:08:27 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
33:946b9f458fcc | 34:916fa83b4144 |
---|---|
1 = Roundup Issue Collector | |
2 | |
3 Grab and display data from a http://roundup-tracker.org/ instance. | |
4 | |
5 It is Free Software, check out the file headers. | |
6 | |
7 === Example | |
8 Run ./demo.py from a roundup-tracker to have a running tracker. | |
9 | |
10 {{{ | |
11 cp examples/collect_demo3.py c3.py | |
12 cp examples/config3.ini . | |
13 # change config3.ini | |
14 ./c3.py config3.ini | |
15 # create or change some issues | |
16 ./c3.py config3.ini | |
17 | |
18 # to inspect the database contents | |
19 sqlite3 demo3.db 'select * from issues;' | |
20 | |
21 ./display_issues_demo.py config3.ini >demo3.html | |
22 chromium demo3.html | |
23 }}} | |
24 | |
25 | |
26 === Notes | |
27 examples/collect_demo2.py builds database column names dynamically | |
28 and tracks issues with priorities. The display part is still missing. | |
29 | |
30 When migrating to 3:99c68ebfb3b9, Nov 30 17:46:22 2015 | |
31 you need to add the print statements for the content-type header | |
32 to all of your cgi scripts. | |
33 | |
34 Bottledash may have a fork | |
35 https://wald.intevation.org/hg/bottledash/file/tip/modules/web_view | |
36 | |
37 === Prerequisites | |
38 | |
39 Python v3, with build-in sqlite3 module. | |
40 | |
41 === Included | |
42 | |
43 http://d3js.org/ initially used with 3.5.5 | |
44 """Library released under BSD license. Copyright 2015 Mike Bostock." |