Mercurial > bottledash
annotate modules/web_view/display_issues_techintern.py @ 42:8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
author | Gernot Schulz <gernot@intevation.de> |
---|---|
date | Sun, 31 Jan 2016 13:18:51 +0100 |
parents | f89ad628f831 |
children | 2e2981af7d2d |
rev | line source |
---|---|
16 | 1 #!/usr/bin/env python3 |
2 | |
3 """ Fetch issues from a roundup-tracker and save them in a databse. | |
4 | |
5 author: Sascha L. Teichmann <sascha.teichmann@intevation.de> | |
6 author: Bernhard Reiter <bernhard@intevation.de> | |
7 author: Sean Engelhardt <sean.engelhardt@intevation.de> | |
8 | |
9 (c) 2010,2015 by Intevation GmbH | |
10 | |
11 This is Free Software unter the terms of the | |
12 GNU GENERAL PUBLIC LICENSE Version 3 or later. | |
13 See http://www.gnu.org/licenses/gpl-3.0.txt for details | |
14 """ | |
15 | |
42
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
16 from sys import path |
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
17 import os |
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
18 |
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
19 path.append( |
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
20 os.path.join(os.path.dirname(os.path.realpath(__file__)), 'roundup_cc') |
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
21 ) |
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
22 |
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
23 from display_issues import * |
16 | 24 |
25 def get_chart(target_div_name): | |
42
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
26 html_string = compile_db_stats_html( |
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
27 rcd.DATABASE_TECH_INTERN, |
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
28 rcd.SELECT_ALL |
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
29 ) |
16 | 30 |
31 html_string = html_string.replace( | |
32 'var d3jsInjectionTarget="X";', 'var d3jsInjectionTarget="' + target_div_name + '";') | |
33 | |
34 return html_string | |
35 | |
42
8935152f5e19
Remove roundup_cc fork; import from embedded roundup_cc clone
Gernot Schulz <gernot@intevation.de>
parents:
16
diff
changeset
|
36 # print(get_chart('techintern')) |