equal
deleted
inserted
replaced
116 |
116 |
117 Returns a 2-tuple of ``(text, validatehash)`` where ``text`` is the |
117 Returns a 2-tuple of ``(text, validatehash)`` where ``text`` is the |
118 processed text and ``validatehash`` is a bool indicating whether the |
118 processed text and ``validatehash`` is a bool indicating whether the |
119 returned text should be checked for hash integrity. |
119 returned text should be checked for hash integrity. |
120 """ |
120 """ |
121 return self._processflagsfunc(text, flags, 'read') |
121 text, vhash = self._processflagsfunc(text, flags, 'read') |
|
122 return text, vhash, {} |
122 |
123 |
123 def _processflagswrite(self, text, flags): |
124 def _processflagswrite(self, text, flags): |
124 """Inspect revision data flags and applies write transformations defined |
125 """Inspect revision data flags and applies write transformations defined |
125 by registered flag processors. |
126 by registered flag processors. |
126 |
127 |