equal
deleted
inserted
replaced
863 def join(self, context, mapping, sep): |
863 def join(self, context, mapping, sep): |
864 # could be '{separator}{name}={value|urlescape}' |
864 # could be '{separator}{name}={value|urlescape}' |
865 raise error.ParseError(_(b'not displayable without template')) |
865 raise error.ParseError(_(b'not displayable without template')) |
866 |
866 |
867 def show(self, context, mapping): |
867 def show(self, context, mapping): |
868 return self.join(context, b'') |
868 return self.join(context, mapping, b'') |
869 |
869 |
870 def tobool(self, context, mapping): |
870 def tobool(self, context, mapping): |
871 return bool(self._vars) |
871 return bool(self._vars) |
872 |
872 |
873 def tovalue(self, context, mapping): |
873 def tovalue(self, context, mapping): |