Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Added a documentation section on packaging cmd2 applications for distribution | Todd Leonhardt | 2019-11-16 | 2 | -0/+40 | |
|/ / | ||||||
| * | Updating unit tests | Kevin Van Brunt | 2019-11-16 | 2 | -44/+46 | |
| | | ||||||
| * | Added cmd2-specific input() function that reads from the correct stdin and ↵ | Kevin Van Brunt | 2019-11-16 | 1 | -67/+92 | |
|/ | | | | can disable tab completion | |||||
* | Merge pull request #806 from python-cmd2/fix_tests0.9.20 | Kevin Van Brunt | 2019-11-12 | 1 | -13/+4 | |
|\ | | | | | Fixing unit tests that were causing problems on the test servers | |||||
| * | Put an end time for timeout command just as a precaution | Kevin Van Brunt | 2019-11-12 | 1 | -2/+2 | |
| | | ||||||
| * | Fixing unit tests that were causing problems on the test servers | Kevin Van Brunt | 2019-11-12 | 1 | -13/+4 | |
|/ | ||||||
* | Preparing for a release | Kevin Van Brunt | 2019-11-12 | 1 | -1/+1 | |
| | ||||||
* | Fixing Windows unit test that hangs on AppVeyor due to a KeyboardInterrupt | Kevin Van Brunt | 2019-11-12 | 2 | -3/+14 | |
| | ||||||
* | Merge pull request #804 from python-cmd2/sane_fix | Kevin Van Brunt | 2019-11-11 | 2 | -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 terminal | Kevin Van Brunt | 2019-11-11 | 2 | -1/+2 | |
|/ | ||||||
* | Merge pull request #799 from python-cmd2/doc_updates | Todd Leonhardt | 2019-11-08 | 19 | -98/+551 | |
|\ | | | | | Doc updates | |||||
| * | Fixed typos | Kevin Van Brunt | 2019-11-06 | 2 | -2/+2 | |
| | | ||||||
| * | Fixed documentation in regards to CompletionItem | Todd Leonhardt | 2019-11-04 | 1 | -2/+3 | |
| | | ||||||
| * | Minor update to embedded python shells docs | Todd Leonhardt | 2019-11-03 | 2 | -1/+3 | |
| | | ||||||
| * | Improved documentation for Argument Parsing and Tab-Completion | Todd Leonhardt | 2019-11-03 | 4 | -4/+168 | |
| | | | | | | | | | | Also: - Added a couple examples | |||||
| * | Improved macro documentation | Todd Leonhardt | 2019-11-03 | 1 | -0/+10 | |
| | | ||||||
| * | Improved alias documentationf | Todd Leonhardt | 2019-11-03 | 1 | -0/+8 | |
| | | ||||||
| * | Created a new documentation section on "Output redirection and pipes" | Todd Leonhardt | 2019-11-03 | 6 | -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 invocation | Todd Leonhardt | 2019-11-02 | 1 | -1/+6 | |
| | | ||||||
| * | Moved docs on "Commands at Invocation" and "Startup Script" from ↵ | Todd Leonhardt | 2019-11-02 | 2 | -54/+53 | |
| | | | | | | | | Miscellaneous section to "Startup Commands" section | |||||
| * | Added documentation for empty sections of the Sphinx docs | Todd Leonhardt | 2019-11-02 | 5 | -6/+219 | |
|/ | ||||||
* | Merge pull request #798 from python-cmd2/refactoring | Todd Leonhardt | 2019-11-02 | 11 | -273/+285 | |
|\ | | | | | Refactoring | |||||
| * | Fixed building of docs | Kevin Van Brunt | 2019-10-31 | 3 | -8/+8 | |
| | | ||||||
| * | Made some cmd2 module constants cmd2.Cmd class constants | Kevin Van Brunt | 2019-10-31 | 2 | -12/+12 | |
| | | ||||||
| * | Updated change log | Kevin Van Brunt | 2019-10-31 | 1 | -0/+4 | |
| | | ||||||
| * | Moving a bit of code around to shrink cmd2.py | Kevin Van Brunt | 2019-10-31 | 6 | -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_prog | Todd Leonhardt | 2019-10-30 | 8 | -44/+69 | |
|\ | | | | | Recursively set parser.prog | |||||
| * | Merge branch 'master' into set_prog | Todd Leonhardt | 2019-10-30 | 3 | -29/+26 | |
| |\ | |/ |/| | | | | | # Conflicts: # CHANGELOG.md | |||||
* | | Merge pull request #795 from python-cmd2/history_edit | Todd Leonhardt | 2019-10-30 | 3 | -27/+21 | |
|\ \ | | | | | | | do_history no longer calls do_edit | |||||
| * \ | Merge branch 'master' into history_edit | Todd Leonhardt | 2019-10-30 | 2 | -2/+5 | |
| |\ \ | |/ / |/| | | ||||||
* | | | Merge pull request #794 from python-cmd2/ipy_fix | Todd Leonhardt | 2019-10-30 | 2 | -2/+5 | |
|\ \ \ | | | | | | | | | ipy fix | |||||
| * | | | Updated change log | Kevin Van Brunt | 2019-10-30 | 1 | -0/+3 | |
| | | | | ||||||
| * | | | Only removing ipy from cmd2 instances instead of the class when use_ipython ↵ | Kevin Van Brunt | 2019-10-30 | 1 | -2/+2 | |
|/ / / | | | | | | | | | | is False | |||||
| * | | do_history no longer calls do_edit since edit is a command that is commonly ↵ | Kevin Van Brunt | 2019-10-30 | 3 | -27/+21 | |
|/ / | | | | | | | overridden | |||||
| * | Fixed warning | Kevin Van Brunt | 2019-10-30 | 1 | -0/+1 | |
| | | ||||||
| * | Updated change log | Kevin Van Brunt | 2019-10-30 | 1 | -0/+3 | |
| | | ||||||
| * | Removed all instances where a parser's prog attribute was being set since ↵ | Kevin Van Brunt | 2019-10-30 | 6 | -22/+22 | |
| | | | | | | | | this is no longer needed | |||||
| * | Setting prog value of a command and its subcommand parsers to contain the ↵ | Kevin Van Brunt | 2019-10-30 | 1 | -22/+43 | |
|/ | | | | command name and not sys.argv[0] | |||||
* | Updated docstring of which to be more accurate in its purpose | Kevin Van Brunt | 2019-10-30 | 1 | -11/+11 | |
| | ||||||
* | Merge pull request #790 from python-cmd2/appveyor_stuck | Todd Leonhardt | 2019-10-19 | 1 | -1/+1 | |
|\ | | | | | Attempt at fixing stuck AppVeyor Windows unit tests | |||||
| * | Seeing if adding a "echo y |" unit test command helps | Todd Leonhardt | 2019-10-19 | 1 | -1/+1 | |
|/ | ||||||
* | Merge pull request #789 from python-cmd2/script_check | Todd Leonhardt | 2019-10-19 | 2 | -2/+7 | |
|\ | | | | | Script check | |||||
| * | Updated change log | Kevin Van Brunt | 2019-10-18 | 1 | -0/+5 | |
| | | ||||||
| * | Send all startup script paths to run_script. Previously we didn't do this if the | Kevin Van Brunt | 2019-10-18 | 1 | -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_build | Todd Leonhardt | 2019-10-17 | 1 | -15/+23 | |
|\ | | | | | Fix Windows build | |||||
| * | Trying to add an init phase | Todd Leonhardt | 2019-10-17 | 1 | -0/+5 | |
| | | ||||||
| * | Fix typo | Todd Leonhardt | 2019-10-17 | 1 | -1/+1 | |
| | | ||||||
| * | Trying to switch to Miniconda based Python | Todd Leonhardt | 2019-10-17 | 1 | -2/+2 | |
| | | ||||||
| * | Seeing if PYTHONBUFFERED helps overcome getting stuck at the keyboard ↵ | Todd Leonhardt | 2019-10-17 | 1 | -6/+6 | |
| | | | | | | | | interrupt issue | |||||
| * | Add/fix comments | Todd Leonhardt | 2019-10-17 | 1 | -7/+7 | |
| | |