-
Notifications
You must be signed in to change notification settings - Fork 14
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
5 changed files
with
42 additions
and
18 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
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,19 @@ | ||
ToDo: June 22, 2017 | ||
------------------- | ||
pingparser.py: | ||
|
||
> Consolidate `format_replacements`, currently a list of tuples, then | ||
duplicated in return statement of parse() function. | ||
|
||
Make it an ordered dict and use it to build `default_format` and | ||
JSON return value. | ||
|
||
`default_format` should only be built JIT since it's not used when: | ||
* pingparser is used as a library (i.e. when just calling parse() on results). | ||
* when different formatting is given on the command line | ||
|
||
> NOTE: pulled from my (ssteinerX) inline comments. Not sure exactly what I meant...it's not specific enough, but says: | ||
"Make `minmax_matcher` more specific i.e. match a bit before the '=' sign" | ||
|
||
> Completely remove "+" parameter formatting. | ||
See related NOTE:s in pingparser.py near text: "+...format string" |
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 |
---|---|---|
|
@@ -5,9 +5,9 @@ author = Gregg Gajic | |
author_email = [email protected] | ||
summary = Parses the output of the system ping command. | ||
description-file = README.rst | ||
home_page = https://github.com/gg/pingparser | ||
home_page = https://github.com/ssteinerx/pingparser | ||
project_url = | ||
Source repository,https://github.com/gg/pingparser | ||
Source repository,https://github.com/ssteinerx/pingparser | ||
license = UNLICENSE | ||
maintainer = Steve Steiner | ||
maintainer-email = [email protected] | ||
|