summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Make automake's "make" command depend on configureHans Ulrich Niedermann2008-07-242-5/+12
|
* Ensure cmp/mv/rm rules are correct and silentHans Ulrich Niedermann2008-07-191-2/+2
| | | | | Make sure the "if cmp ... mv .. rm" in make rules are correct and useful, and the cmp is silent.
* Fix some issues found by pylint/pycheckerHans Ulrich Niedermann2008-07-169-97/+142
| | | | | | | | Includes real issues like wrong argument numbers and missing ancestor __init__() calls, whitespace and comment cleanups. Cannot "fix" everything because of a good amount of the warnings raised by pylint/pychecker are false alarms.
* Add pylint and pychecker checks as "lint" targetHans Ulrich Niedermann2008-07-161-0/+11
|
* Fix calling conventions (found by pychecker)Hans Ulrich Niedermann2008-07-163-15/+13
| | | | The test suite does not appear to test these code pathes.
* Remove unused references found by pycheckerHans Ulrich Niedermann2008-07-161-3/+1
|
* More robust plugin duplicate detectionHans Ulrich Niedermann2008-07-151-3/+12
| | | | | When running pychecker, we got a few duplicate plugin errors due to multiple imports of the same module or something similar.
* Split commands into generic and nbb specific partHans Ulrich Niedermann2008-07-157-396/+420
|
* Change from (sh|run)-(src|...) to --srcdir etc.Hans Ulrich Niedermann2008-07-152-55/+42
|
* Update docsHans Ulrich Niedermann2008-07-151-4/+9
|
* Catch non-existing dirs in (sh|run)-* commandsHans Ulrich Niedermann2008-07-152-2/+13
| | | | Catch and report properly.
* Implement run-* and sh-* commandsHans Ulrich Niedermann2008-07-151-0/+65
|
* Rework command frameworkHans Ulrich Niedermann2008-07-153-92/+99
| | | | Implies catching exceptions in a single place.
* Fix command line parsing (remove --debug etc.)Hans Ulrich Niedermann2008-07-151-2/+7
|
* Get rid of all {}.has_key() occurencesHans Ulrich Niedermann2008-07-153-3/+3
|
* Re-indent main program (3 spaces are urgh)Hans Ulrich Niedermann2008-07-151-54/+54
|
* Add logging to BS and VCS detectionHans Ulrich Niedermann2008-07-152-5/+12
|
* Print non-detected BS/VCS nicelyHans Ulrich Niedermann2008-07-151-2/+8
|
* Fix detect() method return for BS and VCS pluginsHans Ulrich Niedermann2008-07-152-2/+2
|
* Make loglevel settable via cmdline optionHans Ulrich Niedermann2008-07-152-17/+53
|
* Define, use package-version specific pkgpythondirHans Ulrich Niedermann2008-07-152-4/+4
|
* Add context info to plugin validate() classmethodHans Ulrich Niedermann2008-07-153-9/+10
|
* Document detect() plugin methodsHans Ulrich Niedermann2008-07-153-1/+19
|
* Define __all__ in nbblib.*Hans Ulrich Niedermann2008-07-156-2/+37
|
* Document ideas for nbblib.pluginsHans Ulrich Niedermann2008-07-151-0/+2
|
* Have Command.__init__ call object.__init__Hans Ulrich Niedermann2008-07-151-0/+1
|
* Add docstrings to nbblib.pluginsHans Ulrich Niedermann2008-07-151-1/+80
|
* Replace list.append with itertools.chain() callHans Ulrich Niedermann2008-07-151-3/+4
|
* Shut down logging in case of sys.exit()Hans Ulrich Niedermann2008-07-151-0/+4
|
* Introduce UnknownException and use itHans Ulrich Niedermann2008-07-151-3/+10
|
* Update docstring with new module nameHans Ulrich Niedermann2008-07-151-6/+6
|
* Comment out debug calls of 'ls -l' in pydoc rulesHans Ulrich Niedermann2008-07-151-1/+1
|
* Fix pydoc for 'make distcheck'Hans Ulrich Niedermann2008-07-151-8/+8
|
* Automatically adapt width command field in helpHans Ulrich Niedermann2008-07-151-1/+9
|
* Move TODOs into seperate fileHans Ulrich Niedermann2008-07-151-51/+0
|
* whitespaceHans Ulrich Niedermann2008-07-151-0/+1
|
* Store property values in instance, not prop objHans Ulrich Niedermann2008-07-151-7/+14
|
* Messing with pydocHans Ulrich Niedermann2008-07-151-9/+28
|
* Use @plugins.abstractmethod decoratorHans Ulrich Niedermann2008-07-153-12/+18
|
* Install pydoc-generated docsHans Ulrich Niedermann2008-07-151-2/+15
|
* Generate pydoc docsHans Ulrich Niedermann2008-07-154-3/+24
|
* Rename newplugins to pluginsHans Ulrich Niedermann2008-07-158-12/+12
|
* Message cosmeticsHans Ulrich Niedermann2008-07-151-1/+1
|
* Remove old plugin codeHans Ulrich Niedermann2008-07-153-72/+0
|
* Removed all 'from <module> import *' instancesHans Ulrich Niedermann2008-07-153-30/+26
|
* Rudimentary scons interfaceHans Ulrich Niedermann2008-07-151-0/+11
|
* Use @plugins.abstractmethod decoratorHans Ulrich Niedermann2008-07-153-5/+69
|
* Improve log messagesHans Ulrich Niedermann2008-07-151-2/+2
|
* More docsHans Ulrich Niedermann2008-07-151-0/+1
|
* Unified new plugin architectureHans Ulrich Niedermann2008-07-158-146/+237
| | | | | | Changes required on the way: - New nbb commands detect-vcs and detect-bs including tests. - misc small fixes