Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert "Fixing another corner case for security related to CVE-2016-9587" | James Cammarata | 2017-02-10 | 1 | -6/+2 |
| | | | | This reverts commit bcceada5d9b78ad77069c78226f8e9b336ff8949. | ||||
* | Fixing another corner case for security related to CVE-2016-9587 | Computest | 2017-01-11 | 1 | -2/+6 |
| | |||||
* | Fixing security bugs for CVE-2016-9587 | James Cammarata | 2017-01-09 | 1 | -2/+1 |
| | |||||
* | Move uses of to_bytes, to_text, to_native to use the module_utils version ↵ | Toshio Kuratomi | 2016-09-06 | 1 | -4/+9 |
| | | | | | | | | (#17423) We couldn't copy to_unicode, to_bytes, to_str into module_utils because of licensing. So once created it we had two sets of functions that did the same things but had different implementations. To remedy that, this change removes the ansible.utils.unicode versions of those functions. | ||||
* | Fixing up performance | James Cammarata | 2015-11-05 | 1 | -2/+17 |
| | |||||
* | Simplify UnsafeProxy as we don't need to use it for byte strings, only text | Toshio Kuratomi | 2015-10-20 | 1 | -34/+16 |
| | |||||
* | Add python3-compat boilerplate to all .py files in lib/ansible | Toshio Kuratomi | 2015-10-19 | 1 | -0/+3 |
| | |||||
* | Make UnsafeProxy work on Python 3 | Marius Gedminas | 2015-10-13 | 1 | -12/+35 |
| | | | | Instead of str and unicode we have to deal with bytes and str. | ||||
* | Remove unused import | Marius Gedminas | 2015-10-13 | 1 | -1/+0 |
| | | | | Fixes ImportError: No module named '__builtin__' on Python 3. | ||||
* | Totally rework the way UnsafeProxy does things | James Cammarata | 2015-10-12 | 1 | -97/+18 |
| | |||||
* | Clean up typo from cdc6c52 | James Cammarata | 2015-09-25 | 1 | -2/+2 |
| | |||||
* | Clean string data run through the template engine | James Cammarata | 2015-09-25 | 1 | -0/+24 |
| | | | | | | | Also strip UnsafeProxy off of low level srings and objects to ensure they don't cause issues later down the road Fixes #12513 | ||||
* | Properly serialize UnsafeProxy objects | James Cammarata | 2015-09-10 | 1 | -7/+20 |
| | | | | Required as part of fix for #12123 | ||||
* | Use UnsafeProxy for lookup results too | James Cammarata | 2015-09-08 | 1 | -2/+7 |
| | | | | Also fixes a couple of bugs that popped up when using the proxy class | ||||
* | Fix #12258: don't wrap None in UnsafeProxy. | Victor Costan | 2015-09-08 | 1 | -2/+3 |
| | |||||
* | Use proxy class to mark variables unsafe for templating | James Cammarata | 2015-09-04 | 1 | -0/+132 |
Fixes #12191 |