Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Add API documentation for constants | kotfu | 2020-02-15 | 3 | -3/+37 | |
| | | ||||||
| * | Finish attribute documentation for Statement class | kotfu | 2020-02-14 | 1 | -5/+30 | |
| | | ||||||
| * | Add documentation of multiline_command attribute | kotfu | 2020-02-14 | 1 | -0/+5 | |
| | | ||||||
| * | Remove separate files for utility functions and classes | kotfu | 2020-02-14 | 3 | -6/+0 | |
| | | ||||||
| * | Add link to issue for more detail on how we determined our attribute ↵ | kotfu | 2020-02-14 | 1 | -0/+3 | |
| | | | | | | | | documentation approach | |||||
| * | Add documentation for parsing classes | kotfu | 2020-02-14 | 5 | -129/+152 | |
| | | ||||||
| * | move `categorize()` to `utils.py` and make `set_parser_prog` a private method | kotfu | 2020-02-14 | 4 | -22/+26 | |
| | | ||||||
| * | no - in tab-completion | kotfu | 2020-02-14 | 1 | -1/+1 | |
| | | ||||||
| * | Merge branch 'master' into api_docs | kotfu | 2020-02-14 | 27 | -492/+521 | |
| |\ | |/ |/| | | | | | | | # Conflicts: # cmd2/ansi.py # docs/features/completion.rst | |||||
* | | Merge pull request #887 from python-cmd2/completion_docs | Todd Leonhardt | 2020-02-13 | 19 | -414/+280 | |
|\ \ | | | | | | | Completion docs | |||||
| * | | Fixed missing import | Kevin Van Brunt | 2020-02-13 | 1 | -0/+2 | |
| | | | ||||||
| * | | Updated documentation | Kevin Van Brunt | 2020-02-13 | 1 | -5/+5 | |
| | | | ||||||
| * | | Finished argparse completion example | Kevin Van Brunt | 2020-02-13 | 1 | -21/+49 | |
| | | | ||||||
| * | | Wrote examples for CompletionError and CompletionItem | Kevin Van Brunt | 2020-02-13 | 1 | -13/+34 | |
| | | | ||||||
| * | | Using metavar in CompletionItem header if it has been set | Kevin Van Brunt | 2020-02-13 | 1 | -2/+4 | |
| | | | ||||||
| * | | Start of new argparse completion example | Kevin Van Brunt | 2020-02-13 | 1 | -0/+73 | |
| | | | ||||||
| * | | Removed dash from 'tab complete' string | Kevin Van Brunt | 2020-02-13 | 14 | -57/+57 | |
| | | | ||||||
| * | | Removed use of argparse from basic completion example | Kevin Van Brunt | 2020-02-13 | 1 | -46/+30 | |
| | | | ||||||
| * | | Overhauling tab completion examples | Kevin Van Brunt | 2020-02-12 | 6 | -284/+40 | |
|/ / | ||||||
* | | Merge pull request #886 from python-cmd2/truncate_with_style | Kevin Van Brunt | 2020-02-11 | 5 | -30/+139 | |
|\ \ | | | | | | | truncate_line not handling style sequences | |||||
| * | | Replaced unicode escape sequence for horizontal ellipsis with actual character | Kevin Van Brunt | 2020-02-11 | 1 | -1/+3 | |
| | | | ||||||
| * | | Fix optional type hint | Todd Leonhardt | 2020-02-11 | 1 | -2/+2 | |
| | | | | | | | | | | | | typing.OrderedDict wasn't added until Python 3.7.2; so replace with Dict. | |||||
| * | | Allowing for colored fill char in align_text | Kevin Van Brunt | 2020-02-11 | 2 | -15/+44 | |
| | | | | | | | | | | | | Added function to index all style sequences found in a string | |||||
| * | | Whitespace | Kevin Van Brunt | 2020-02-11 | 1 | -0/+1 | |
| | | | ||||||
| * | | Fixed bug where ANSI style sequences were not correctly handled in ↵ | Kevin Van Brunt | 2020-02-11 | 4 | -23/+100 | |
|/ / | | | | | | | utils.truncate_line() | |||||
* | | Merge pull request #884 from python-cmd2/appveyor_fix | Todd Leonhardt | 2020-02-10 | 1 | -3/+7 | |
|\ \ | | | | | | | Appveyor fix | |||||
| * | | Try to auto-accept dialog so headless install doesn't get stuck | Todd Leonhardt | 2020-02-10 | 1 | -5/+6 | |
| | | | ||||||
| * | | Attempt at a quick fix for AppVeyor errors | Todd Leonhardt | 2020-02-10 | 1 | -0/+3 | |
|/ / | ||||||
* | | Merge pull request #883 from python-cmd2/flag_rename | Kevin Van Brunt | 2020-02-10 | 3 | -4/+6 | |
|\ \ | | | | | | | do_set flag rename | |||||
| * | | Renamed set command's -l/--long flag to -v/--verbose for consistency with ↵ | Kevin Van Brunt | 2020-02-10 | 3 | -4/+6 | |
|/ / | | | | | | | help and history commands | |||||
* | | Merge pull request #882 from python-cmd2/misc | Kevin Van Brunt | 2020-02-10 | 3 | -19/+25 | |
|\ \ | | | | | | | do_set fix | |||||
| * | | Corrected issue where the actual new value was not always being printed in ↵ | Kevin Van Brunt | 2020-02-10 | 3 | -19/+25 | |
|/ / | | | | | | | | | | | | | | | do_set. Fixed do_set unit test. Made allow_ansi setter error message consistent with str_to_bool. Updated a docstring | |||||
* | | Merge pull request #881 from python-cmd2/help_docs | Todd Leonhardt | 2020-02-09 | 1 | -11/+63 | |
|\ \ | | | | | | | Updated Sphinx docs about help | |||||
| * | | Added caveat | Todd Leonhardt | 2020-02-09 | 1 | -1/+3 | |
| | | | ||||||
| * | | Updated Sphinx docs about help | Todd Leonhardt | 2020-02-09 | 1 | -11/+61 | |
|/ / | ||||||
| * | Merge branch 'api_docs' of https://github.com/python-cmd2/cmd2 into api_docs | kotfu | 2020-02-10 | 3 | -20/+51 | |
| |\ | ||||||
| | * | Merge branch 'master' into api_docs | Todd Leonhardt | 2020-02-08 | 3 | -20/+51 | |
| | |\ | |_|/ |/| | | ||||||
* | | | Merge pull request #879 from python-cmd2/prompt_docs | Todd Leonhardt | 2020-02-08 | 3 | -20/+51 | |
|\ \ \ | | | | | | | | | Updated Sphinx documentation related to prompt | |||||
| * | | | Updated Sphinx documentation related to prompt | Todd Leonhardt | 2020-02-08 | 3 | -20/+51 | |
|/ / / | ||||||
| * | | Begin process of combining utils api docs into a single document | kotfu | 2020-02-10 | 4 | -66/+6 | |
| | | | ||||||
| * | | Add example to with_argument_list docstring | kotfu | 2020-02-10 | 1 | -3/+13 | |
| | | | ||||||
| * | | Title decorator documentation by package name | kotfu | 2020-02-09 | 2 | -4/+4 | |
| |/ | ||||||
| * | Show autodoc members in the same order as the source code | kotfu | 2020-02-08 | 1 | -0/+5 | |
| | | ||||||
| * | All public api functions now documented | kotfu | 2020-02-08 | 1 | -3/+45 | |
|/ | ||||||
* | Ran into an issue attempting to publish a release 1.0.0-rc1 to test.pypi.org0.10.0 | Todd Leonhardt | 2020-02-07 | 1 | -3/+4 | |
| | | | | | | I'm not sure if the problem is specific to the test version of PyPI or if it is related to limitations in setuptools_scm. But to keep things simple I just changed the version to 0.10.0 and updated the CHANGELOG accordingly | |||||
* | Updated release data for 1.0.0-rc1 in preparation for a release candidate | Todd Leonhardt | 2020-02-07 | 4 | -4/+8 | |
| | | | | | Also: - Updated some very outdated comments in transcript files | |||||
* | Merge pull request #877 from python-cmd2/changelog_fix | Todd Leonhardt | 2020-02-07 | 7 | -100/+128 | |
|\ | | | | | Changelog fix for removed ansi.FG_COLORS and ansi.BG_COLORS | |||||
| * | Fixed docs error | Kevin Van Brunt | 2020-02-07 | 1 | -1/+2 | |
| | | ||||||
| * | Updated change log | Kevin Van Brunt | 2020-02-07 | 1 | -0/+3 | |
| | | ||||||
| * | Added unit test for ColorBase.colors() | Kevin Van Brunt | 2020-02-07 | 1 | -0/+7 | |
| | |