Extend DataSource method to prepend baseurl to ``path``.
(self, path)
| 587 | return result |
| 588 | |
| 589 | def _findfile(self, path): |
| 590 | """Extend DataSource method to prepend baseurl to ``path``.""" |
| 591 | return DataSource._findfile(self, self._fullpath(path)) |
| 592 | |
| 593 | def abspath(self, path): |
| 594 | """ |