003 File Manager
Current Path:
/usr/local/lib/python3.8/site-packages/salt/renderers
usr
/
local
/
lib
/
python3.8
/
site-packages
/
salt
/
renderers
/
📁
..
📄
__init__.py
(28 B)
📁
__pycache__
📄
aws_kms.py
(8.03 KB)
📄
cheetah.py
(644 B)
📄
dson.py
(1.01 KB)
📄
genshi.py
(1.27 KB)
📄
gpg.py
(13.4 KB)
📄
hjson.py
(677 B)
📄
jinja.py
(2.16 KB)
📄
json.py
(546 B)
📄
json5.py
(1.03 KB)
📄
mako.py
(838 B)
📄
msgpack.py
(834 B)
📄
nacl.py
(2.64 KB)
📄
pass.py
(2.91 KB)
📄
py.py
(4.17 KB)
📄
pydsl.py
(12.99 KB)
📄
pyobjects.py
(16.4 KB)
📄
stateconf.py
(19.48 KB)
📄
tomlmod.py
(906 B)
📄
wempy.py
(761 B)
📄
yaml.py
(3.12 KB)
📄
yamlex.py
(735 B)
Editing: genshi.py
""" Genshi Renderer for Salt """ try: from genshi.template import MarkupTemplate from genshi.template import NewTextTemplate from genshi.template import OldTextTemplate HAS_LIBS = True except ImportError: HAS_LIBS = False def render(genshi_data, saltenv="base", sls="", method="xml", **kws): """ Render a Genshi template. A method should be passed in as part of the kwargs. If no method is passed in, xml is assumed. Valid methods are: .. code-block: - xml - xhtml - html - text - newtext - oldtext Note that the ``text`` method will call ``NewTextTemplate``. If ``oldtext`` is desired, it must be called explicitly :rtype: A Python data structure """ if not HAS_LIBS: return {} if not isinstance(genshi_data, str): genshi_data = genshi_data.read() if genshi_data.startswith("#!"): genshi_data = genshi_data[(genshi_data.find("\n") + 1) :] if not genshi_data.strip(): return {} if method == "text" or method == "newtext": tmpl = NewTextTemplate(genshi_data) elif method == "oldtext": tmpl = OldTextTemplate(genshi_data) else: tmpl = MarkupTemplate(genshi_data) return tmpl.generate(**kws).render(method)
Upload File
Create Folder