summaryrefslogtreecommitdiff
path: root/pystache
diff options
context:
space:
mode:
Diffstat (limited to 'pystache')
-rw-r--r--pystache/loader.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/pystache/loader.py b/pystache/loader.py
index 0fdadc5..fcbe488 100644
--- a/pystache/loader.py
+++ b/pystache/loader.py
@@ -120,9 +120,27 @@ class Loader(object):
return self.unicode(b, encoding)
# TODO: unit-test this method.
+ def load_file(self, file_name):
+ """
+ Find and return the template with the given file name.
+
+ Arguments:
+
+ file_name: the file name of the template.
+
+ search_dirs: the list of directories in which to search.
+
+ """
+ locator = self._make_locator()
+
+ path = locator.find_file(file_name, self.search_dirs)
+
+ return self.read(path)
+
+ # TODO: unit-test this method.
def load_name(self, name):
"""
- Find and return the template with the given name.
+ Find and return the template with the given template name.
Arguments: