예제 #1
0
 def processInternalLinks(self, package, html):
     """
     take care of any internal links which are in the form of:
        href="exe-node:Home:Topic:etc#Anchor"
     For this WebSite Export, go ahead and process the link entirely,
     using the fully exported (and unique) file names for each node.
     """
     return common.renderInternalLinkNodeFilenames(package, html)
예제 #2
0
 def processInternalLinks(self, package, html):
     """
     take care of any internal links which are in the form of:
        href="exe-node:Home:Topic:etc#Anchor"
     For this WebSite Export, go ahead and process the link entirely,
     using the fully exported (and unique) file names for each node.
     """
     return common.renderInternalLinkNodeFilenames(package, html)
 def processInternalLinks(self, html, package):
     """
     take care of any internal links which are in the form of:
        href="exe-node:Home:Topic:etc#Anchor"
     For this SCORM Export, go ahead and remove the link entirely,
     leaving only its text, since such links are not to be in the LMS.
     """
     return common.renderInternalLinkNodeFilenames(package, html)