-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from lbl-srg/issue42_syslogCheck
Issue42 syslog check
- Loading branch information
Showing
24 changed files
with
602 additions
and
350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
# Binaries | ||
bin/* | ||
!bin/*.py | ||
*.py[cod] | ||
|
||
# Object files | ||
*.o | ||
|
||
# Tests outputs | ||
tests/**/*.html | ||
tests/test_numerics*/* | ||
tests/test_numerics*/ | ||
|
||
# Generated by CMake | ||
DartConfiguration.tcl | ||
build/* | ||
build/ | ||
|
||
# Generated by development tools | ||
.vscode/* | ||
.vscode/ | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Copyright Notice | ||
|
||
"funnel v0.0.1" Copyright (c) 2018, The Regents of the University of California, | ||
"funnel" Copyright (c) 2018, The Regents of the University of California, | ||
through Lawrence Berkeley National Laboratory (subject to receipt of any required | ||
approvals from the U.S. Dept. of Energy). All rights reserved. | ||
approvals from the U.S. Dept. of Energy). All rights reserved. | ||
|
||
If you have questions about your rights to use or distribute this software, please | ||
contact Berkeley Lab's Innovation & Partnerships Office at [email protected]. | ||
|
@@ -12,4 +12,4 @@ Energy and the U.S. Government consequently retains certain rights. As such, | |
the U.S. Government has been granted for itself and others acting on its behalf | ||
a paid-up, non-exclusive, irrevocable, worldwide license in the Software to | ||
reproduce, distribute copies to the public, prepare derivative works, and perform | ||
publicly and display publicly, and to permit others to do so. | ||
publicly and display publicly, and to permit others to do so. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include pyfunnel/VERSION | ||
recursive-include pyfunnel/templates * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
Python binding for funnel library. | ||
""" | ||
|
||
from __future__ import absolute_import | ||
|
||
import os | ||
|
||
from .core import compareAndReport, MyHTTPServer, CORSRequestHandler, plot_funnel | ||
|
||
# Version. | ||
version_path = os.path.abspath(os.path.join(os.path.dirname(__file__), 'VERSION')) | ||
with open(version_path) as f: | ||
__version__ = f.read().strip() | ||
|
Oops, something went wrong.