コード例 #1
0
    def fixup_page(self, root, tag_class):
        ## Put in some script to turn on visibility (this emulates
        ## what yahoo does).
        tag = root.find("body")

        ## This will not be filtered out because the parser thinks its
        ## just a string - so it will be executed in the browser after
        ## page loads.

        tag.add_child("""<script>
        document.write('<style>* { visibility: visible; }</style>');
        </script>""")

        ## This stylesheet is stuck in a comment?? WTF??
        tag = root.find("head")
        new_tag = HTML.ResolvingHTMLTag(
            name="link",
            case=tag.case,
            inode_id=tag.inode_id,
            attributes={
                'type':
                'text/css',
                'rel':
                'stylesheet',
                'href':
                "http://us.js2.yimg.com/us.js.yimg.com/lib/hdr/uhbt1_v27_1.8.css"
            })

        ## There are various visibility:hiddens all through the place:
        for style in root.search("style"):
            try:
                style.children[0] = style.children[0].replace(
                    "visibility:hidden", "")
            except:
                pass
        tag.add_child(new_tag)
コード例 #2
0
ファイル: ViewFile.py プロジェクト: olivierh59500/pyflag
 def generator():
     data = fd.read(100000)
     tag = HTML.ResolvingHTMLTag(inode_id=fd.lookup_id(),
                                 case=self.case)
     filtered = tag.css_filter(data)
     yield filtered