- 25 Aug, 2015 17 commits
-
-
This commit deprecates the earlier groupname[x-y] syntax in favour of the inclusive groupname[x:y] syntax. It also makes the subscripting code simpler and adds explanatory comments. One problem addressed by the cleanup is that _enumeration_info used to be called twice, and its results discarded the first time because of the convoluted control flow.
Abhijit Menon-Sen committed -
The possibilities are complicated enough that I didn't want to make changes without having a complete description of what it actually accepts/matches. Note that this text documents current behaviour, not necessarily the behaviour we want. Some of this is undocumented and may not be intended.
Abhijit Menon-Sen committed -
Now everything under _match_one_pattern can ignore them. This also means that we can use the cache to return the same results for 'foo' and '!foo'.
Abhijit Menon-Sen committed -
There are no code changes; this is committed separately so as to make the subsequent "real" diffs easier to read.
Abhijit Menon-Sen committed -
Abhijit Menon-Sen committed
-
Brian Coca committed
-
Brian Coca committed
-
remove defaults from inhertiable fieldattributes to allow for proper detection and override
Brian Coca committed -
added block environment test
Brian Coca committed -
Speed up execution
Brian Coca committed -
`if method in dir(self):` is very inefficient: - it must construct a list object listing all the object attributes & methods - it must then perform a O(N) linear scan of that list Replace it with the idiomatic `if hasattr(self, method):`, which is a O(1) expected time hash lookup. Should fix #11981.
Marius Gedminas committed -
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Toshio Kuratomi committed
-
fixes #12055
Brian Coca committed
-
- 24 Aug, 2015 12 commits
-
-
Toshio Kuratomi committed
-
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
Fixes #12011
James Cammarata committed -
cloudstack: more integration tests and updates
Brian Coca committed -
Brian Coca committed
-
Brian Coca committed
-
Revert "Add PowerShell exception handling and turn on strict mode."
James Cammarata committed -
James Cammarata committed
-
- 23 Aug, 2015 11 commits
-
-
Apart from ansible-vault create, every vault subcommand is happy to deal with multiple filenames, so we can check that there's at least one, and make create check separately that there aren't any extra.
Abhijit Menon-Sen committed -
Brian Coca committed
-
Brian Coca committed
-
Rene Moser committed
-
Rene Moser committed
-
Rene Moser committed
-
Add PowerShell exception handling and turn on strict mode.
Brian Coca committed -
draft bsd intro and bootstrapping
Brian Coca committed -
made squashable with_ plugin list configurable
Brian Coca committed -
Fix a parsing bug that prevents IPv6 addresses from being used with add_host
Toshio Kuratomi committed -
Abhijit Menon-Sen committed
-