Extend DataSource method to prepend baseurl to ``path``.
(self, path)
| 591 | return result |
| 592 | |
| 593 | def _findfile(self, path): |
| 594 | """Extend DataSource method to prepend baseurl to ``path``.""" |
| 595 | return DataSource._findfile(self, self._fullpath(path)) |
| 596 | |
| 597 | def abspath(self, path): |
| 598 | """ |