diff --git a/LICENSE b/LICENSE index 707e48d..f70ee06 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,8 @@ MIT License +Copyright (c) 2013, Marcel Hellkamp http://bottlepy.org/ +Copyright (c) 2010-2016 Google, Inc. http://angularjs.org +Copyright (c) 2013-2016 Mattias Holmlund, http://mattiash.github.io/angular-tablesort Copyright (c) 2016 David Todd (c0de) Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/downloader.py b/downloader.py index 40a2dce..335b88e 100644 --- a/downloader.py +++ b/downloader.py @@ -1,4 +1,7 @@ # -*- coding: utf-8 -*- +# Cisco CDR Parser v1.0 +# (c) 2016 David Todd, https://github.com/alopexc0de/CDRParser +# License: MIT import tempfile import hashlib diff --git a/phonelog.py b/phonelog.py index 1eddcac..8b68e8d 100644 --- a/phonelog.py +++ b/phonelog.py @@ -1,4 +1,7 @@ # -*- coding: utf-8 -*- +# Cisco CDR Parser v1.0 +# (c) 2016 David Todd, https://github.com/alopexc0de/CDRParser +# License: MIT from bottle import SimpleTemplate, static_file, response, request, route, run import tempfile diff --git a/static/js/controller.js b/static/js/controller.js index 54b4c90..b04769f 100644 --- a/static/js/controller.js +++ b/static/js/controller.js @@ -1,3 +1,8 @@ +/* +Cisco CDR Parser v1.0 +(c) 2016 David Todd, https://github.com/alopexc0de/CDRParser +License: MIT +*/ var app = angular.module('MyApp', ['ngMaterial','tableSort',]).controller('logviewer', function($scope, $http, $mdDialog){ var tmp = []; var list = '[[bigData]]'; // Pull in information provided by bottle's template engine diff --git a/views/index.tpl b/views/index.tpl index c9becb4..1ccfb4c 100644 --- a/views/index.tpl +++ b/views/index.tpl @@ -1,3 +1,8 @@ +