-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
40 changed files
with
1,721 additions
and
359 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -7,17 +7,17 @@ | |
from ode.renderers.json import print_json | ||
from ode.renderers.csv_file import print_csv | ||
from ode.renderers.html import print_html | ||
from ode.parsers.dat_new import parse_dat | ||
from ode.parsers.dat import parse_dat | ||
from ode.parsers.onedrive import parse_onedrive | ||
from ode.parsers.odl import parse_odl | ||
from ode.parsers.odl import parse_odl, load_cparser | ||
|
||
logging.basicConfig(level=logging.INFO, | ||
format='\n\n%(asctime)s, %(levelname)s, %(message)s\n', | ||
datefmt='%Y-%m-%d %H:%M:%S' | ||
) | ||
|
||
__author__ = "Brian Maloney" | ||
__version__ = "2022.06.17" | ||
__version__ = "200.11.04" | ||
__email__ = "[email protected]" | ||
rbin = [] | ||
|
||
|
@@ -79,7 +79,7 @@ def output(): | |
parser.add_argument("-rb", "--RECYCLE_BIN", help="$Recycle.Bin") | ||
parser.add_argument("--csv", help="Directory to save CSV formatted results to. Be sure to include the full path in double quotes.") | ||
parser.add_argument("--csvf", help="File name to save CSV formatted results to. When present, overrides default name.") | ||
parser.add_argument("--html", help="Directory to save xhtml formatted results to. Be sure to include the full path in double quotes.") | ||
parser.add_argument("--html", help="Directory to save html formatted results to. Be sure to include the full path in double quotes.") | ||
parser.add_argument("--json", help="Directory to save json representation to. Use --pretty for a more human readable layout.") | ||
parser.add_argument("--pretty", help="When exporting to json, use a more human readable layout. Default is FALSE", action='store_true') | ||
parser.add_argument("--debug", help="Show debug information during processing.", action='store_true') | ||
|
@@ -206,6 +206,7 @@ def output(): | |
output() | ||
|
||
if args.logs: | ||
load_cparser() | ||
for key, value in d.items(): | ||
for k, v in value.items(): | ||
if k == 'logs': | ||
|
Oops, something went wrong.