예제 #1
0
파일: libxslt.py 프로젝트: fxia22/ASM_xf
 def attrTemplateValueProcessNode(self, str, node):
     """Process the given string, allowing to pass a namespace
        mapping context and return the new string value."""
     if node == None: node__o = None
     else: node__o = node._o
     ret = libxsltmod.xsltAttrTemplateValueProcessNode(self._o, str, node__o)
     return ret
예제 #2
0
 def attrTemplateValueProcessNode(self, str, node):
     """Process the given string, allowing to pass a namespace
        mapping context and return the new string value."""
     if node == None: node__o = None
     else: node__o = node._o
     ret = libxsltmod.xsltAttrTemplateValueProcessNode(
         self._o, str, node__o)
     return ret
예제 #3
0
 def attrTemplateValueProcessNode(self, str, inst):
     """Process the given string, allowing to pass a namespace
       mapping context and return the new string value.  Called
       by: - xsltAttrTemplateValueProcess() (templates.c) -
       xsltEvalAttrValueTemplate() (templates.c)  QUESTION: Why is
       this function public? It is not used outside of templates.c."""
     if inst == None: inst__o = None
     else: inst__o = inst._o
     ret = libxsltmod.xsltAttrTemplateValueProcessNode(self._o, str, inst__o)
     return ret
예제 #4
0
파일: libxslt.py 프로젝트: flosnaphq/MAMP
 def attrTemplateValueProcessNode(self, str, inst):
     """Process the given string, allowing to pass a namespace
       mapping context and return the new string value.  Called
       by: - xsltAttrTemplateValueProcess() (templates.c) -
       xsltEvalAttrValueTemplate() (templates.c)  QUESTION: Why is
       this function public? It is not used outside of templates.c."""
     if inst == None: inst__o = None
     else: inst__o = inst._o
     ret = libxsltmod.xsltAttrTemplateValueProcessNode(
         self._o, str, inst__o)
     return ret