summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Added a documentation section on packaging cmd2 applications for distributionTodd Leonhardt2019-11-162-0/+40
|/ /
| * Updating unit testsKevin Van Brunt2019-11-162-44/+46
| |
| * Added cmd2-specific input() function that reads from the correct stdin and ↵Kevin Van Brunt2019-11-161-67/+92
|/ | | | can disable tab completion
* Merge pull request #806 from python-cmd2/fix_tests0.9.20Kevin Van Brunt2019-11-121-13/+4
|\ | | | | Fixing unit tests that were causing problems on the test servers
| * Put an end time for timeout command just as a precautionKevin Van Brunt2019-11-121-2/+2
| |
| * Fixing unit tests that were causing problems on the test serversKevin Van Brunt2019-11-121-13/+4
|/
* Preparing for a releaseKevin Van Brunt2019-11-121-1/+1
|
* Fixing Windows unit test that hangs on AppVeyor due to a KeyboardInterruptKevin Van Brunt2019-11-122-3/+14
|
* Merge pull request #804 from python-cmd2/sane_fixKevin Van Brunt2019-11-112-1/+2
|\ | | | | Fix bug where cmd2 ran 'stty sane' command when stdin was not a terminal
| * Fix bug where cmd2 ran 'stty sane' command when stdin was not a terminalKevin Van Brunt2019-11-112-1/+2
|/
* Merge pull request #799 from python-cmd2/doc_updatesTodd Leonhardt2019-11-0819-98/+551
|\ | | | | Doc updates
| * Fixed typosKevin Van Brunt2019-11-062-2/+2
| |
| * Fixed documentation in regards to CompletionItemTodd Leonhardt2019-11-041-2/+3
| |
| * Minor update to embedded python shells docsTodd Leonhardt2019-11-032-1/+3
| |
| * Improved documentation for Argument Parsing and Tab-CompletionTodd Leonhardt2019-11-034-4/+168
| | | | | | | | | | Also: - Added a couple examples
| * Improved macro documentationTodd Leonhardt2019-11-031-0/+10
| |
| * Improved alias documentationfTodd Leonhardt2019-11-031-0/+8
| |
| * Created a new documentation section on "Output redirection and pipes"Todd Leonhardt2019-11-036-38/+89
| | | | | | | | | | | | | | | | Also: - Moved existing output redirection documentation from "Generating Output" section there - Significantly expanded upon this - Improved documentation on Command Scripts - Added missing setting to Settings documentation section
| * Added some clarifying extra info about using commands at invocationTodd Leonhardt2019-11-021-1/+6
| |
| * Moved docs on "Commands at Invocation" and "Startup Script" from ↵Todd Leonhardt2019-11-022-54/+53
| | | | | | | | Miscellaneous section to "Startup Commands" section
| * Added documentation for empty sections of the Sphinx docsTodd Leonhardt2019-11-025-6/+219
|/
* Merge pull request #798 from python-cmd2/refactoringTodd Leonhardt2019-11-0211-273/+285
|\ | | | | Refactoring
| * Fixed building of docsKevin Van Brunt2019-10-313-8/+8
| |
| * Made some cmd2 module constants cmd2.Cmd class constantsKevin Van Brunt2019-10-312-12/+12
| |
| * Updated change logKevin Van Brunt2019-10-311-0/+4
| |
| * Moving a bit of code around to shrink cmd2.pyKevin Van Brunt2019-10-316-253/+261
|/ | | | | This includes moving cmd2 decorators into a new file called decorators.py Moved some constants from cmd2.py to constants.py
* Merge pull request #796 from python-cmd2/set_progTodd Leonhardt2019-10-308-44/+69
|\ | | | | Recursively set parser.prog
| * Merge branch 'master' into set_progTodd Leonhardt2019-10-303-29/+26
| |\ | |/ |/| | | | | # Conflicts: # CHANGELOG.md
* | Merge pull request #795 from python-cmd2/history_editTodd Leonhardt2019-10-303-27/+21
|\ \ | | | | | | do_history no longer calls do_edit
| * \ Merge branch 'master' into history_editTodd Leonhardt2019-10-302-2/+5
| |\ \ | |/ / |/| |
* | | Merge pull request #794 from python-cmd2/ipy_fixTodd Leonhardt2019-10-302-2/+5
|\ \ \ | | | | | | | | ipy fix
| * | | Updated change logKevin Van Brunt2019-10-301-0/+3
| | | |
| * | | Only removing ipy from cmd2 instances instead of the class when use_ipython ↵Kevin Van Brunt2019-10-301-2/+2
|/ / / | | | | | | | | | is False
| * | do_history no longer calls do_edit since edit is a command that is commonly ↵Kevin Van Brunt2019-10-303-27/+21
|/ / | | | | | | overridden
| * Fixed warningKevin Van Brunt2019-10-301-0/+1
| |
| * Updated change logKevin Van Brunt2019-10-301-0/+3
| |
| * Removed all instances where a parser's prog attribute was being set since ↵Kevin Van Brunt2019-10-306-22/+22
| | | | | | | | this is no longer needed
| * Setting prog value of a command and its subcommand parsers to contain the ↵Kevin Van Brunt2019-10-301-22/+43
|/ | | | command name and not sys.argv[0]
* Updated docstring of which to be more accurate in its purposeKevin Van Brunt2019-10-301-11/+11
|
* Merge pull request #790 from python-cmd2/appveyor_stuckTodd Leonhardt2019-10-191-1/+1
|\ | | | | Attempt at fixing stuck AppVeyor Windows unit tests
| * Seeing if adding a "echo y |" unit test command helpsTodd Leonhardt2019-10-191-1/+1
|/
* Merge pull request #789 from python-cmd2/script_checkTodd Leonhardt2019-10-192-2/+7
|\ | | | | Script check
| * Updated change logKevin Van Brunt2019-10-181-0/+5
| |
| * Send all startup script paths to run_script. Previously we didn't do this if theKevin Van Brunt2019-10-181-2/+2
|/ | | | file was empty, but that showed no record of the run_script command in history.
* Merge pull request #788 from python-cmd2/appveyor_buildTodd Leonhardt2019-10-171-15/+23
|\ | | | | Fix Windows build
| * Trying to add an init phaseTodd Leonhardt2019-10-171-0/+5
| |
| * Fix typoTodd Leonhardt2019-10-171-1/+1
| |
| * Trying to switch to Miniconda based PythonTodd Leonhardt2019-10-171-2/+2
| |
| * Seeing if PYTHONBUFFERED helps overcome getting stuck at the keyboard ↵Todd Leonhardt2019-10-171-6/+6
| | | | | | | | interrupt issue
| * Add/fix commentsTodd Leonhardt2019-10-171-7/+7
| |