From 2b07ad52a45fb109c981dd505f63eade84be8558 Mon Sep 17 00:00:00 2001 From: xgecko Date: Sat, 21 Jul 2012 17:44:53 -0700 Subject: Added load_file function --- pystache/loader.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'pystache') diff --git a/pystache/loader.py b/pystache/loader.py index 0fdadc5..fcbe488 100644 --- a/pystache/loader.py +++ b/pystache/loader.py @@ -119,10 +119,28 @@ 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: -- cgit v1.2.1