forked from juanantoniomosquera-zz/fuzzy-archer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.py
75 lines (70 loc) · 3.38 KB
/
install.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# installer for bootstrap
#
# Based on installer for xstats (Copyright 2014 Matthew Wall)
#
# 27 March 2014
# Configured by Nick to install bootstrap skin.
from setup import ExtensionInstaller
def loader():
return BootstrapInstaller()
class BootstrapInstaller(ExtensionInstaller):
def __init__(self):
super(BootstrapInstaller, self).__init__(
version="1.01",
name='bootstrap',
description='A skin based around the bootstrap framework',
author="Nick Dajda",
author_email="[email protected]",
config={
'StdReport': {
'SmallImages': {
'skin':'Images',
'HTML_ROOT':'Bootstrap'},
'BigImages': {
'skin':'Images',
'HTML_ROOT':'Bootstrap/big_images',
'ImageGenerator' : {
'image_width' : '800',
'image_height' : '500'}},
'HTMLPages': {
'skin':'Bootstrap',
'HTML_ROOT':'Bootstrap'}}},
files=[('skins/Bootstrap',
['skins/Bootstrap/index.html.tmpl',
'skins/Bootstrap/about.html.tmpl',
'skins/Bootstrap/history.html.tmpl',
'skins/Bootstrap/month.html.tmpl',
'skins/Bootstrap/news.html.tmpl',
'skins/Bootstrap/stats.html.tmpl',
'skins/Bootstrap/week.html.tmpl',
'skins/Bootstrap/year.html.tmpl',
'skins/Bootstrap/skin.conf']),
('skins/Bootstrap/NOAA',
['skins/Bootstrap/NOAA/NOAA-YYYY.html.tmpl',
'skins/Bootstrap/NOAA/NOAA-YYYY-MM.txt.tmpl',
'skins/Bootstrap/NOAA/NOAA-YYYY.txt.tmpl']),
('skins/Images',
['skins/Images/skin.conf']),
('bin/user',
['bin/user/gaugeengine.py',
'bin/user/gauges.py',
'bin/user/historygenerator.py']),
('public_html/Bootstrap/assets/css',
['public_html/Bootstrap/assets/css/bootstrap.css',
'public_html/Bootstrap/assets/css/bootstrap.min.css',
'public_html/Bootstrap/assets/css/bootstrap-responsive.css',
'public_html/Bootstrap/assets/css/bootstrap-responsive.min.css',
'public_html/Bootstrap/assets/css/lightbox.css']),
('public_html/Bootstrap/assets/img',
['public_html/Bootstrap/assets/img/close.png',
'public_html/Bootstrap/assets/img/glyphicons-halflings.png',
'public_html/Bootstrap/assets/img/glyphicons-halflings-white.png',
'public_html/Bootstrap/assets/img/loading.gif',
'public_html/Bootstrap/assets/img/next.png',
'public_html/Bootstrap/assets/img/prev.png']),
('public_html/Bootstrap/assets/js',
['public_html/Bootstrap/assets/js/bootstrap.min.js',
'public_html/Bootstrap/assets/js/jquery-1.7.2.min.js',
'public_html/Bootstrap/assets/js/lightbox.js'])
]
)