Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
034bd730
Commit
034bd730
authored
12 years ago
by
Bridger Maxwell
Browse files
Options
Downloads
Patches
Plain Diff
The django/mako template loader now caches mako templates by loading them from file.
parent
c4b362ca
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/lib/mitxmako/mitxmako/makoloader.py
+20
-5
20 additions, 5 deletions
common/lib/mitxmako/mitxmako/makoloader.py
common/lib/mitxmako/mitxmako/template.py
+1
-2
1 addition, 2 deletions
common/lib/mitxmako/mitxmako/template.py
with
21 additions
and
7 deletions
common/lib/mitxmako/mitxmako/makoloader.py
+
20
−
5
View file @
034bd730
import
logging
from
django.conf
import
settings
from
django.template.base
import
TemplateDoesNotExist
from
django.template.loader
import
make_origin
,
get_template_from_string
from
django.template.loaders.filesystem
import
Loader
as
FilesystemLoader
from
django.template.loaders.app_directories
import
Loader
as
AppDirectoriesLoader
from
mitxmako.template
import
Template
import
mitxmako.middleware
log
=
logging
.
getLogger
(
__name__
)
class
MakoLoader
(
object
):
"""
...
...
@@ -18,20 +24,29 @@ class MakoLoader(object):
def
__init__
(
self
,
base_loader
):
# base_loader is an instance of a BaseLoader subclass
self
.
base_loader
=
base_loader
module_directory
=
getattr
(
settings
,
'
MAKO_MODULE_DIR
'
,
None
)
if
module_directory
is
None
:
log
.
warning
(
"
For more caching of mako templates, set the MAKO_MODULE_DIR in settings!
"
)
module_directory
=
tempfile
.
mkdtemp
()
self
.
module_directory
=
module_directory
def
__call__
(
self
,
template_name
,
template_dirs
=
None
):
return
self
.
load_template
(
template_name
,
template_dirs
)
def
load_template
(
self
,
template_name
,
template_dirs
=
None
):
source
,
display_name
=
self
.
load_template_source
(
template_name
,
template_dirs
)
source
,
file_path
=
self
.
load_template_source
(
template_name
,
template_dirs
)
if
source
.
startswith
(
"
## mako
\n
"
):
# This is a mako template
template
=
Template
(
text
=
source
,
uri
=
template_name
)
template
=
Template
(
filename
=
file_path
,
module_directory
=
self
.
module_directory
,
uri
=
template_name
)
return
template
,
None
else
:
# This is a regular template
origin
=
make_origin
(
display_name
,
self
.
load_template_source
,
template_name
,
template_dirs
)
origin
=
make_origin
(
file_path
,
self
.
load_template_source
,
template_name
,
template_dirs
)
try
:
template
=
get_template_from_string
(
source
,
origin
,
template_name
)
return
template
,
None
...
...
@@ -40,7 +55,7 @@ class MakoLoader(object):
# returning the source and display name for the template we were asked to load.
# This allows for correct identification (later) of the actual template that does
# not exist.
return
source
,
display_name
return
source
,
file_path
def
load_template_source
(
self
,
template_name
,
template_dirs
=
None
):
# Just having this makes the template load as an instance, instead of a class.
...
...
This diff is collapsed.
Click to expand it.
common/lib/mitxmako/mitxmako/template.py
+
1
−
2
View file @
034bd730
...
...
@@ -17,8 +17,7 @@ from mako.template import Template as MakoTemplate
from
mitxmako
import
middleware
django_variables
=
[
'
lookup
'
,
'
output_encoding
'
,
'
module_directory
'
,
'
encoding_errors
'
]
django_variables
=
[
'
lookup
'
,
'
output_encoding
'
,
'
encoding_errors
'
]
# TODO: We should make this a Django Template subclass that simply has the MakoTemplate inside of it? (Intead of inheriting from MakoTemplate)
class
Template
(
MakoTemplate
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment