Update to License to all match AGPL
Some code was marked GPL and some was marked AGPL. Now it's all AGPL.
This commit is contained in:
parent
35ad58006c
commit
89156d51f3
722
LICENSE.md
722
LICENSE.md
File diff suppressed because it is too large
Load Diff
|
@ -1,10 +1,17 @@
|
|||
# coding=utf-8
|
||||
# OctoPrint Klipper Plugin
|
||||
#
|
||||
# Copyright (C) 2018 Martin Muehlhaeuser <github@mmone.de>
|
||||
#
|
||||
# This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
# <Octoprint Klipper Plugin>
|
||||
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
|
||||
# This program 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 Affero General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
import datetime
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,17 @@
|
|||
# Copyright (C) 2016-2018 Kevin O'Connor <kevin@koconnor.net>
|
||||
# <Octoprint Klipper Plugin>
|
||||
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
|
||||
# This program 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 Affero General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
import flask
|
||||
import optparse, datetime
|
||||
|
@ -10,7 +23,7 @@ class KlipperLogAnalyzer():
|
|||
TASK_MAX=0.0025
|
||||
APPLY_PREFIX = ['mcu_awake', 'mcu_task_avg', 'mcu_task_stddev', 'bytes_write',
|
||||
'bytes_read', 'bytes_retransmit', 'freq', 'adj']
|
||||
|
||||
|
||||
def __init__(self, log_file):
|
||||
self.log_file = log_file
|
||||
|
||||
|
@ -28,10 +41,10 @@ class KlipperLogAnalyzer():
|
|||
mcu_prefix = mcu + ":"
|
||||
apply_prefix = { p: 1 for p in self.APPLY_PREFIX }
|
||||
out = []
|
||||
|
||||
|
||||
try:
|
||||
f = open(logname, 'rb')
|
||||
|
||||
|
||||
for line in f:
|
||||
parts = line.split()
|
||||
if not parts or parts[0] not in ('Stats', 'INFO:root:Stats'):
|
||||
|
@ -122,7 +135,7 @@ class KlipperLogAnalyzer():
|
|||
awake.append(100. * float(d.get('mcu_awake', 0.)) / self.STATS_INTERVAL)
|
||||
lasttime = st
|
||||
lastbw = bw
|
||||
|
||||
|
||||
result = dict(
|
||||
times= times,
|
||||
bwdeltas= bwdeltas,
|
||||
|
@ -131,7 +144,7 @@ class KlipperLogAnalyzer():
|
|||
buffers= hostbuffers
|
||||
)
|
||||
return result
|
||||
|
||||
|
||||
def plot_frequency(self, data, mcu):
|
||||
all_keys = {}
|
||||
for d in data:
|
||||
|
@ -148,5 +161,5 @@ class KlipperLogAnalyzer():
|
|||
if val not in (None, '0', '1'):
|
||||
times.append(st)
|
||||
values.append(float(val)/1000000.0)
|
||||
|
||||
|
||||
return values
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
// OctoPrint Klipper Plugin
|
||||
//
|
||||
// Copyright (C) 2018 Martin Muehlhaeuser <github@mmone.de>
|
||||
//
|
||||
// This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
// <Octoprint Klipper Plugin>
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as
|
||||
// published by the Free Software Foundation, either version 3 of the
|
||||
// License, or (at your option) any later version.
|
||||
|
||||
// This program 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 Affero General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
$(function() {
|
||||
function KlipperViewModel(parameters) {
|
||||
|
@ -127,4 +136,4 @@ $(function() {
|
|||
],
|
||||
elements: ["#tab_plugin_klipper_main", "#sidebar_plugin_klipper", "#navbar_plugin_klipper"]
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
// OctoPrint Klipper Plugin
|
||||
//
|
||||
// Copyright (C) 2018 Martin Muehlhaeuser <github@mmone.de>
|
||||
//
|
||||
// This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
// <Octoprint Klipper Plugin>
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as
|
||||
// published by the Free Software Foundation, either version 3 of the
|
||||
// License, or (at your option) any later version.
|
||||
|
||||
// This program 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 Affero General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
$(function() {
|
||||
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
// OctoPrint Klipper Plugin
|
||||
//
|
||||
// Copyright (C) 2018 Martin Muehlhaeuser <github@mmone.de>
|
||||
//
|
||||
// This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
// <Octoprint Klipper Plugin>
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as
|
||||
// published by the Free Software Foundation, either version 3 of the
|
||||
// License, or (at your option) any later version.
|
||||
|
||||
// This program 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 Affero General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
$(function() {
|
||||
function KlipperLevelingViewModel(parameters) {
|
||||
|
@ -85,4 +94,4 @@ $(function() {
|
|||
dependencies: ["settingsViewModel", "loginStateViewModel"],
|
||||
elements: ["#klipper_leveling_dialog"]
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
// OctoPrint Klipper Plugin
|
||||
//
|
||||
// Copyright (C) 2018 Martin Muehlhaeuser <github@mmone.de>
|
||||
//
|
||||
// This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
// <Octoprint Klipper Plugin>
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as
|
||||
// published by the Free Software Foundation, either version 3 of the
|
||||
// License, or (at your option) any later version.
|
||||
|
||||
// This program 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 Affero General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
$(function() {
|
||||
function KlipperOffsetDialogViewModel(parameters) {
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
// OctoPrint Klipper Plugin
|
||||
//
|
||||
// Copyright (C) 2018 Martin Muehlhaeuser <github@mmone.de>
|
||||
//
|
||||
// This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
// <Octoprint Klipper Plugin>
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as
|
||||
// published by the Free Software Foundation, either version 3 of the
|
||||
// License, or (at your option) any later version.
|
||||
|
||||
// This program 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 Affero General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
$(function() {
|
||||
function KlipperMacroDialogViewModel(parameters) {
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
// OctoPrint Klipper Plugin
|
||||
//
|
||||
// Copyright (C) 2018 Martin Muehlhaeuser <github@mmone.de>
|
||||
//
|
||||
// This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
// <Octoprint Klipper Plugin>
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as
|
||||
// published by the Free Software Foundation, either version 3 of the
|
||||
// License, or (at your option) any later version.
|
||||
|
||||
// This program 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 Affero General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
$(function() {
|
||||
function KlipperPidTuningViewModel(parameters) {
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
// OctoPrint Klipper Plugin
|
||||
//
|
||||
// Copyright (C) 2018 Martin Muehlhaeuser <github@mmone.de>
|
||||
//
|
||||
// This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
// <Octoprint Klipper Plugin>
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as
|
||||
// published by the Free Software Foundation, either version 3 of the
|
||||
// License, or (at your option) any later version.
|
||||
|
||||
// This program 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 Affero General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
$(function() {
|
||||
$('#klipper-settings a:first').tab('show');
|
||||
|
@ -74,4 +83,4 @@ $(function() {
|
|||
dependencies: ["settingsViewModel"],
|
||||
elements: ["#settings_plugin_klipper"]
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
15
setup.py
15
setup.py
|
@ -1,4 +1,17 @@
|
|||
# coding=utf-8
|
||||
# <Octoprint Klipper Plugin>
|
||||
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
|
||||
# This program 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 Affero General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
plugin_identifier = "klipper"
|
||||
|
||||
|
|
Loading…
Reference in New Issue