-
Notifications
You must be signed in to change notification settings - Fork 212
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
1 parent
0ec0702
commit 4bc96d1
Showing
16 changed files
with
122 additions
and
31 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
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 |
---|---|---|
|
@@ -78,13 +78,13 @@ | |
|
||
class info(): | ||
"""Provides parser metadata (version, author, etc.)""" | ||
version = '2.5' | ||
version = '2.6' | ||
description = '`date` command parser' | ||
author = 'Kelly Brazil' | ||
author_email = '[email protected]' | ||
compatible = ['linux', 'darwin', 'freebsd'] | ||
magic_commands = ['date'] | ||
tags = ['command'] | ||
tags = ['command', 'slurpable'] | ||
|
||
|
||
__version__ = info.version | ||
|
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 |
---|---|---|
|
@@ -69,13 +69,13 @@ | |
|
||
class info(): | ||
"""Provides parser metadata (version, author, etc.)""" | ||
version = '1.0' | ||
version = '1.1' | ||
description = 'ISO 8601 Datetime string parser' | ||
author = 'Kelly Brazil' | ||
author_email = '[email protected]' | ||
details = 'Using the pyiso8601 library from https://github.com/micktwomey/pyiso8601/releases/tag/1.0.2' | ||
compatible = ['linux', 'aix', 'freebsd', 'darwin', 'win32', 'cygwin'] | ||
tags = ['standard', 'string'] | ||
tags = ['standard', 'string', 'slurpable'] | ||
|
||
|
||
__version__ = info.version | ||
|
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 |
---|---|---|
|
@@ -42,12 +42,12 @@ | |
|
||
class info(): | ||
"""Provides parser metadata (version, author, etc.)""" | ||
version = '1.0' | ||
version = '1.1' | ||
description = 'Email Address string parser' | ||
author = 'Kelly Brazil' | ||
author_email = '[email protected]' | ||
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] | ||
tags = ['standard', 'string'] | ||
tags = ['standard', 'string', 'slurpable'] | ||
|
||
|
||
__version__ = info.version | ||
|
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 |
---|---|---|
|
@@ -55,14 +55,21 @@ class info(): | |
description = '`foo` command streaming parser' | ||
author = 'John Doe' | ||
author_email = '[email protected]' | ||
# details = 'enter any other details here' | ||
|
||
# compatible options: linux, darwin, cygwin, win32, aix, freebsd | ||
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] | ||
|
||
# tags options: generic, standard, file, string, binary, command | ||
# tags options: generic, standard, file, string, binary, command, slurpable | ||
tags = ['command'] | ||
|
||
# required for streaming parsers | ||
streaming = True | ||
|
||
# other attributes - only enable if needed | ||
deprecated = False | ||
hidden = False | ||
|
||
|
||
__version__ = info.version | ||
|
||
|
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 |
---|---|---|
|
@@ -533,12 +533,12 @@ | |
|
||
class info(): | ||
"""Provides parser metadata (version, author, etc.)""" | ||
version = '1.3' | ||
version = '1.4' | ||
description = 'IPv4 and IPv6 Address string parser' | ||
author = 'Kelly Brazil' | ||
author_email = '[email protected]' | ||
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] | ||
tags = ['standard', 'string'] | ||
tags = ['standard', 'string', 'slurpable'] | ||
|
||
|
||
__version__ = info.version | ||
|
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 |
---|---|---|
|
@@ -51,12 +51,12 @@ | |
|
||
class info(): | ||
"""Provides parser metadata (version, author, etc.)""" | ||
version = '1.0' | ||
version = '1.1' | ||
description = 'JWT string parser' | ||
author = 'Kelly Brazil' | ||
author_email = '[email protected]' | ||
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] | ||
tags = ['standard', 'string'] | ||
tags = ['standard', 'string', 'slurpable'] | ||
|
||
|
||
__version__ = info.version | ||
|
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 |
---|---|---|
|
@@ -54,12 +54,12 @@ | |
|
||
class info(): | ||
"""Provides parser metadata (version, author, etc.)""" | ||
version = '1.0' | ||
version = '1.1' | ||
description = 'Semantic Version string parser' | ||
author = 'Kelly Brazil' | ||
author_email = '[email protected]' | ||
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] | ||
tags = ['standard', 'string'] | ||
tags = ['standard', 'string', 'slurpable'] | ||
|
||
|
||
__version__ = info.version | ||
|
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 |
---|---|---|
|
@@ -97,12 +97,12 @@ | |
|
||
class info(): | ||
"""Provides parser metadata (version, author, etc.)""" | ||
version = '1.0' | ||
version = '1.1' | ||
description = 'Unix Epoch Timestamp string parser' | ||
author = 'Kelly Brazil' | ||
author_email = '[email protected]' | ||
compatible = ['linux', 'aix', 'freebsd', 'darwin', 'win32', 'cygwin'] | ||
tags = ['standard', 'string'] | ||
tags = ['standard', 'string', 'slurpable'] | ||
|
||
|
||
__version__ = info.version | ||
|
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 |
---|---|---|
|
@@ -240,12 +240,12 @@ | |
|
||
class info(): | ||
"""Provides parser metadata (version, author, etc.)""" | ||
version = '1.1' | ||
version = '1.2' | ||
description = 'URL string parser' | ||
author = 'Kelly Brazil' | ||
author_email = '[email protected]' | ||
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] | ||
tags = ['standard', 'string'] | ||
tags = ['standard', 'string', 'slurpable'] | ||
|
||
|
||
__version__ = info.version | ||
|
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 |
---|---|---|
|
@@ -89,13 +89,13 @@ | |
|
||
class info(): | ||
"""Provides parser metadata (version, author, etc.)""" | ||
version = '1.0' | ||
version = '1.1' | ||
description = 'Version string parser' | ||
author = 'Kelly Brazil' | ||
author_email = '[email protected]' | ||
details = 'Based on distutils/version.py from CPython 3.9.5.' | ||
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] | ||
tags = ['generic', 'string'] | ||
tags = ['generic', 'string', 'slurpable'] | ||
|
||
|
||
__version__ = info.version | ||
|