gitstats 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gitstats/__init__.py +0 -0
- gitstats/arrow-down.gif +0 -0
- gitstats/arrow-none.gif +0 -0
- gitstats/arrow-up.gif +0 -0
- gitstats/gitstats.css +145 -0
- gitstats/main.py +1864 -0
- gitstats/sortable.js +324 -0
- gitstats-0.1.0.dist-info/METADATA +110 -0
- gitstats-0.1.0.dist-info/RECORD +12 -0
- gitstats-0.1.0.dist-info/WHEEL +5 -0
- gitstats-0.1.0.dist-info/entry_points.txt +2 -0
- gitstats-0.1.0.dist-info/top_level.txt +1 -0
gitstats/__init__.py
ADDED
|
File without changes
|
gitstats/arrow-down.gif
ADDED
|
Binary file
|
gitstats/arrow-none.gif
ADDED
|
Binary file
|
gitstats/arrow-up.gif
ADDED
|
Binary file
|
gitstats/gitstats.css
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GitStats - default style
|
|
3
|
+
*/
|
|
4
|
+
body {
|
|
5
|
+
color: black;
|
|
6
|
+
background-color: #dfd;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
dt {
|
|
10
|
+
font-weight: bold;
|
|
11
|
+
float: left;
|
|
12
|
+
margin-right: 1em;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
dt:after {
|
|
16
|
+
content: ': ';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
dd {
|
|
20
|
+
display: block;
|
|
21
|
+
clear: left;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
table {
|
|
25
|
+
border: 1px solid black;
|
|
26
|
+
border-collapse: collapse;
|
|
27
|
+
font-size: 80%;
|
|
28
|
+
margin-bottom: 1em;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
table.noborders {
|
|
32
|
+
border: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
table.noborders td {
|
|
36
|
+
border: none;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.vtable {
|
|
40
|
+
float: right;
|
|
41
|
+
clear: both;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
table.tags td {
|
|
45
|
+
vertical-align: top;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
td {
|
|
49
|
+
background-color: white;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
th {
|
|
53
|
+
background-color: #ddf;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
th a {
|
|
57
|
+
text-decoration: none;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
tr:hover {
|
|
61
|
+
background-color: #ddf;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
td {
|
|
65
|
+
border: 1px solid black;
|
|
66
|
+
padding: 0.2em;
|
|
67
|
+
padding-left: 0.3em;
|
|
68
|
+
padding-right: 0.2em;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/* Navigation bar; tabbed style */
|
|
72
|
+
.nav {
|
|
73
|
+
border-bottom: 1px solid black;
|
|
74
|
+
padding: 0.3em;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.nav ul {
|
|
78
|
+
list-style-type: none;
|
|
79
|
+
display: inline;
|
|
80
|
+
margin: 0;
|
|
81
|
+
padding: 0;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.nav li {
|
|
85
|
+
display: inline;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.nav li a {
|
|
89
|
+
padding: 0.3em;
|
|
90
|
+
text-decoration: none;
|
|
91
|
+
color: black;
|
|
92
|
+
border: 1px solid black;
|
|
93
|
+
margin: 0.5em;
|
|
94
|
+
background-color: #ddf;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.nav li a:hover {
|
|
98
|
+
background-color: #ddd;
|
|
99
|
+
border-bottom: 1px solid #ddf;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
img {
|
|
103
|
+
border: 1px solid black;
|
|
104
|
+
padding: 0.5em;
|
|
105
|
+
background-color: white;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
th img {
|
|
109
|
+
border: 0px;
|
|
110
|
+
padding: 0px;
|
|
111
|
+
background-color: #ddf;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
h1 a, h2 a {
|
|
115
|
+
color: black;
|
|
116
|
+
text-decoration: none;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
h1:hover a:after,
|
|
120
|
+
h2:hover a:after {
|
|
121
|
+
content: '¶';
|
|
122
|
+
color: #555;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
h1 {
|
|
126
|
+
font-size: x-large;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
h2 {
|
|
130
|
+
background-color: #564;
|
|
131
|
+
border: 1px solid black;
|
|
132
|
+
padding-left: 0.5em;
|
|
133
|
+
padding-right: 0.5em;
|
|
134
|
+
color: white;
|
|
135
|
+
font-size: large;
|
|
136
|
+
clear: both;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
h2 a {
|
|
140
|
+
color: white;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.moreauthors {
|
|
144
|
+
font-size: 80%;
|
|
145
|
+
}
|