Python jinja2.nodes.Extends() Examples
The following are 30
code examples of jinja2.nodes.Extends().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
jinja2.nodes
, or try the search function
.
Example #1
Source File: parser.py From luci-py with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #2
Source File: parser.py From scylla with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #3
Source File: parser.py From RSSNewsGAE with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #4
Source File: parser.py From Building-Recommendation-Systems-with-Python with MIT License | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #5
Source File: parser.py From recruit with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #6
Source File: parser.py From pySINDy with MIT License | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #7
Source File: parser.py From recruit with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #8
Source File: parser.py From OpenXR-SDK-Source with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #9
Source File: jinja_extensions.py From daf-recipes with GNU General Public License v3.0 | 5 votes |
def parse(self, parser): lineno = next(parser.stream).lineno node = nodes.Extends(lineno) template_path = parser.filename # find where in the search path this template is from index = 0 if not hasattr(self, 'searchpath'): return node for searchpath in self.searchpath: if template_path.startswith(searchpath): break index += 1 # get filename from full path filename = template_path[len(searchpath) + 1:] # Providing template path violently deprecated if parser.stream.current.type != 'block_end': provided_template = parser.parse_expression().value if provided_template != filename: raise Exception('ckan_extends tag wrong path %s in %s' % (provided_template, template_path)) else: log.critical('Remove path from ckan_extend tag in %s' % template_path) # provide our magic format # format is *<search path parent index>*<template name> magic_filename = '*' + str(index) + '*' + filename # set template node.template = nodes.Const(magic_filename) return node
Example #10
Source File: parser.py From cadquery-freecad-module with GNU Lesser General Public License v3.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #11
Source File: parser.py From Financial-Portfolio-Flask with MIT License | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #12
Source File: parser.py From Flask-P2P with MIT License | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #13
Source File: parser.py From planespotter with MIT License | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #14
Source File: parser.py From luci-py with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #15
Source File: parser.py From luci-py with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #16
Source File: parser.py From misp42splunk with GNU Lesser General Public License v3.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #17
Source File: parser.py From luci-py with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #18
Source File: parser.py From PhonePi_SampleServer with MIT License | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #19
Source File: parser.py From syntheticmass with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #20
Source File: parser.py From odoo13-x64 with GNU General Public License v3.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #21
Source File: parser.py From SA-ctf_scoreboard with Creative Commons Zero v1.0 Universal | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #22
Source File: parser.py From EDCOP with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #23
Source File: parser.py From data with GNU General Public License v3.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #24
Source File: parser.py From data with GNU General Public License v3.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #25
Source File: parser.py From data with GNU General Public License v3.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #26
Source File: parser.py From Carnets with BSD 3-Clause "New" or "Revised" License | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #27
Source File: parser.py From android_universal with MIT License | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #28
Source File: parser.py From Flask with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #29
Source File: parser.py From Flask with Apache License 2.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node
Example #30
Source File: parser.py From odoo12-x64 with GNU General Public License v3.0 | 5 votes |
def parse_extends(self): node = nodes.Extends(lineno=next(self.stream).lineno) node.template = self.parse_expression() return node