1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-07-06 20:09:11 -05:00

Add server version to master api

Add IsEvadedOffense to EFPenalty
Fix remote log reading in not Windows
This commit is contained in:
RaidMax
2018-12-16 21:16:56 -06:00
parent 4067217830
commit 9f92b64135
1676 changed files with 287228 additions and 66 deletions

View File

@ -0,0 +1,69 @@
/*
* This file is part of pygal
*
* A python svg graph plotting library
* Copyright © 2012 Kozea
* This library is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with pygal. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Font-sizes from config, override with care
*/
{{ id }} {
-webkit-user-select: none;
-webkit-font-smoothing: antialiased;
font-family: {{ style.font_family }};
}
{{ id }}.title {
font-family: {{ style.title_font_family }};
font-size: {{ style.title_font_size }}px;
}
{{ id }}.legends .legend text {
font-family: {{ style.legend_font_family }};
font-size: {{ style.legend_font_size }}px;
}
{{ id }}.axis text {
font-family: {{ style.label_font_family }};
font-size: {{ style.label_font_size }}px;
}
{{ id }}.axis text.major {
font-family: {{ style.major_label_font_family }};
font-size: {{ style.major_label_font_size }}px;
}
{{ id }}.text-overlay text.value {
font-family: {{ style.value_font_family }};
font-size: {{ style.value_font_size }}px;
}
{{ id }}.text-overlay text.label {
font-family: {{ style.value_label_font_family }};
font-size: {{ style.value_label_font_size }}px;
}
{{ id }}.tooltip {
font-family: {{ style.tooltip_font_family }};
font-size: {{ style.tooltip_font_size }}px;
}
{{ id }}text.no_data {
font-family: {{ style.no_data_font_family }};
font-size: {{ style.no_data_font_size }}px;
}

View File

@ -0,0 +1,152 @@
/*
* This file is part of pygal
*
* A python svg graph plotting library
* Copyright © 2012 Kozea
* This library is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with pygal. If not, see <http://www.gnu.org/licenses/>.
*/
{{ id }}text.no_data {
text-anchor: middle;
}
{{ id }}.guide.line {
fill: none;
}
{{ id }}.centered {
text-anchor: middle;
}
{{ id }}.title {
text-anchor: middle;
}
{{ id }}.legends .legend text {
fill-opacity: 1;
}
{{ id }}.axis.x text {
text-anchor: middle;
}
{{ id }}.axis.x:not(.web) text[transform] {
text-anchor: start;
}
{{ id }}.axis.x:not(.web) text[transform].backwards {
text-anchor: end;
}
{{ id }}.axis.y text {
text-anchor: end;
}
{{ id }}.axis.y text[transform].backwards {
text-anchor: start;
}
{{ id }}.axis.y2 text {
text-anchor: start;
}
{{ id }}.axis.y2 text[transform].backwards {
text-anchor: end;
}
{{ id }}.axis .guide.line {
stroke-dasharray: {{ style.guide_stroke_dasharray }};
}
{{ id }}.axis .major.guide.line {
stroke-dasharray: {{ style.major_guide_stroke_dasharray }};
}
{{ id }}.horizontal .axis.y .guide.line,
{{ id }}.horizontal .axis.y2 .guide.line,
{{ id }}.vertical .axis.x .guide.line {
opacity: 0;
}
{{ id }}.horizontal .axis.always_show .guide.line,
{{ id }}.vertical .axis.always_show .guide.line {
opacity: 1 !important;
}
{{ id }}.axis.y .guides:hover .guide.line,
{{ id }}.axis.y2 .guides:hover .guide.line,
{{ id }}.axis.x .guides:hover .guide.line {
opacity: 1;
}
{{ id }}.axis .guides:hover text {
opacity: 1;
}
{{ id }}.nofill {
fill: none;
}
{{ id }}.subtle-fill {
fill-opacity: .2;
}
{{ id }}.dot {
stroke-width: 1px;
fill-opacity: 1;
}
{{ id }}.dot.active {
stroke-width: 5px;
}
{{ id }}.dot.negative {
fill: transparent;
}
{{ id }} text, {{ id }} tspan {
stroke: none !important;
}
{{ id }}.series text.active {
opacity: 1;
}
{{ id }}.tooltip rect {
fill-opacity: .95;
stroke-width: .5;
}
{{ id }}.tooltip text {
fill-opacity: 1;
}
{{ id }}.showable {
visibility: hidden;
}
{{ id }}.showable.shown {
visibility: visible;
}
{{ id }}.gauge-background {
fill: {{ style.value_background }};
stroke: none;
}
{{ id }}.bg-lines {
stroke: {{ style.background }};
stroke-width: 2px;
}

View File

@ -0,0 +1,174 @@
/*
* This file is part of pygal
*
* A python svg graph plotting library
* Copyright © 2012 Kozea
* This library is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with pygal. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Styles from config
*/
{{ id }}{
background-color: {{ style.background }};
}
{{ id }}path,
{{ id }}line,
{{ id }}rect,
{{ id }}circle {
-webkit-transition: {{ style.transition }};
-moz-transition: {{ style.transition }};
transition: {{ style.transition }};
}
{{ id }}.graph > .background {
fill: {{ style.background }};
}
{{ id }}.plot > .background {
fill: {{ style.plot_background }};
}
{{ id }}.graph {
fill: {{ style.foreground }};
}
{{ id }}text.no_data {
fill: {{ style.foreground_strong }};
}
{{ id }}.title {
fill: {{ style.foreground_strong }};
}
{{ id }}.legends .legend text {
fill: {{ style.foreground }};
}
{{ id }}.legends .legend:hover text {
fill: {{ style.foreground_strong }};
}
{{ id }}.axis .line {
stroke: {{ style.foreground_strong }};
}
{{ id }}.axis .guide.line {
stroke: {{ style.foreground_subtle }};
}
{{ id }}.axis .major.line {
stroke: {{ style.foreground }};
}
{{ id }}.axis text.major {
fill: {{ style.foreground_strong }};
}
{{ id }}.axis.y .guides:hover .guide.line,
{{ id }}.line-graph .axis.x .guides:hover .guide.line,
{{ id }}.stackedline-graph .axis.x .guides:hover .guide.line,
{{ id }}.xy-graph .axis.x .guides:hover .guide.line {
stroke: {{ style.foreground_strong }};
}
{{ id }}.axis .guides:hover text {
fill: {{ style.foreground_strong }};
}
{{ id }}.reactive {
fill-opacity: {{ style.opacity }};
stroke-opacity: {{ style.stroke_opacity }};
}
{{ id }}.ci {
stroke: {{ style.foreground }};
}
{{ id }}.reactive.active,
{{ id }}.active .reactive {
fill-opacity: {{ style.opacity_hover }};
stroke-opacity: {{ style.stroke_opacity_hover }};
stroke-width: 4;
}
{{ id }}.ci .reactive.active {
stroke-width: 1.5;
}
{{ id }}.series text {
fill: {{ style.foreground_strong }};
}
{{ id }}.tooltip rect {
fill: {{ style.plot_background }};
stroke: {{ style.foreground_strong }};
-webkit-transition: opacity {{ style.transition }};
-moz-transition: opacity {{ style.transition }};
transition: opacity {{ style.transition }};
}
{{ id }}.tooltip .label {
fill: {{ style.foreground }};
}
{{ id }}.tooltip .label {
fill: {{ style.foreground }};
}
{{ id }}.tooltip .legend {
font-size: .8em;
fill: {{ style.foreground_subtle }};
}
{{ id }}.tooltip .x_label {
font-size: .6em;
fill: {{ style.foreground_strong }};
}
{{ id }}.tooltip .xlink {
font-size: .5em;
text-decoration: underline;
}
{{ id }}.tooltip .value {
font-size: 1.5em;
}
{{ id }}.bound {
font-size: .5em;
}
{{ id }}.max-value {
font-size: .75em;
fill: {{ style.foreground_subtle }};
}
{{ id }}.map-element {
fill: {{ style.plot_background }};
stroke: {{ style.foreground_subtle }} !important;
}
{{ id }}.map-element .reactive {
fill-opacity: inherit;
stroke-opacity: inherit;
}
{{ colors }}
{{ strokes }}