Lines Matching refs:text
129 def mangle_manpage(manifest, action, text):
162 if so_re.match(text) is not None:
163 return text
169 for line in text.split('\n'):
212 def mangle_script(manifest, action, text):
213 return text
218 def mangle_cddl(manifest, action, text):
221 return text
224 return cddl_re.sub('', text)
230 # a 'text' document (script, man page, config file, ...
232 text = ifp.read()
236 result = mangle_cddl(manifest, action, text)
243 if text != result: