As you can see, we moved the point so that the dangling <div> that we found will be effectively replaced by the div in the original document. If this doesn't work out, we just throw away unbalanced_start without doing anything. html_annotate_merge_annotations Represents the href in an anchor tag. Unlike other words, we only show the href when it changes. Represents a token that is actually a tag. Currently this is just the <img> tag, which takes up visible space just like a word but is only represented in a document by a tag. Represents a diffable token, generally a word that is displayed to the user. Opening tags are attached to this token when they are adjacent (pre_tags) and closing tags that follow the word (post_tags). Some exceptions occur when there are empty tags adjacent to a word, so there may be close tags in pre_tags, or open tags in post_tags.
We also keep track of whether the word was originally followed by whitespace, even though we do not want to treat the word as equivalent to a similar word that does not have a trailing space. Raised when the document no longer contains any pending deletes (DEL_START/DEL_END) Acts like SequenceMatcher, but tries not to find very small equal blocks amidst large spans of changes
doclist should be ordered from oldest to newest, like::
The documents must be *fragments* (str/UTF8 or unicode), not complete documents
The markup argument is a function to markup the spans of words. This function is called like markup('Hello', 'version 2'), and returns HTML. The first argument is text and never includes any markup. The default uses a span with a title:
�B�ETx/t����F�B�B �B(�A0�D8�D`�hHpqhA`u 8A0A(B BBBBL�/����F�E�B �B(�A0�D8�D�� 8A0A(B BBBIL 0���F�B�B �B(�D0�A8�D�� 8A0A(B BBBA(p0�-���E�A�G0� AAFh�0�/���F�B�B �B(�A0�A8�G�� �A�L�A�u 8A0A(B BBBG1 �B�EH1H���F�B�B �B(�A0�D8�DpQ 8A0A(B BBBHHT1�W���B�B�B �B(�A0�A8�D`� 8A0A(B BBBA0�1�[���E�N�QHhPTHC@q AAAt�1X\��#F�B�B �B(�A0�A8�G��A�L�A�v 8A0A(B BBBF� �B�E� �B�JdL2u��u!F�B�B �B(�A0�A8�D`� 8A0A(B BBBH7 8C0A(B BBBE�2�P��GNU�����$"7G�� Xb��$��$���o`(� ���$(�}Xh^ ���o���o���o�o����o���$ �0�@�P�`�p�����������Љ���� �0�@�P�`�p�����������Њ���� �0�@�P�`�p�����������Ћ���� �0�@�P�`�p�����������Ќ���� �0�@�P�`�p�����������Ѝ���� �0�@�P�`�p�����������Ў���� �0�@�P�`�p�����������Џ���� �0�@�P�`�p����������� Removes an element, but merges its contents into its place, e.g., given <p>Hi <i>there!</i></p>, if you remove the <i> element you get <p>Hi there!</p> helper for _fixup_ins_del_tags; actually takes the <ins> etc tags and moves them inside any block-level tags. True if the element contains any block-level elements, like <p>, <td>, etc. fixup_ins_del_tags that works on an lxml document in-place Serialize a single lxml element as HTML. The serialized form includes the elements tail.
If skip_outer is true, then don't serialize the outermost tag Given an html string, move any <ins> or <del> tags inside of any block-level elements, e.g. transform <ins><p>word</p></ins> to <p><ins>word</ins></p> The text representation of an end tag for a tag. Includes trailing whitespace when appropriate. The text representation of the start tag for a tag. Splits some text into words. Includes trailing whitespace on each word when appropriate. Takes an lxml element el, and generates all the text chunks for that tag. Each start tag is a chunk, each word is a chunk, and each end tag is a chunk.
If skip_tag is true, then the outermost container tag is not returned (just its contents). This function takes a list of chunks and produces a list of tokens.
This function takes a word, such as 'test
' and returns ('test','
') This 'cleans' the HTML, meaning that any page structure is removed (only the contents of <body> are used, if there is any <body). Also <ins> and <del> tags are removed. Parses an HTML fragment, returning an lxml element. Note that the HTML will be wrapped in a <div> tag that was not in the original document.
If cleanup is true, make sure there's no <head> or <body>, and get rid of any <ins> and <del> tags.
Parse the given HTML and returns token objects (words with attached tags).
This parses only the content of a page; anything in the head is ignored, and the <head> and <body> elements are themselves optional. The content is then parsed by lxml, which ensures the validity of the resulting parsed document (though lxml may make incorrect guesses when the markup is particular bad).
<ins> and <del> tags are also eliminated from the document, as that gets confusing.
If include_hrefs is true, then the href attribute of <a> tags is included as a special kind of diffable token. like locate_unbalanced_start, except handling end tags and possibly moving the point earlier in the document. pre_delete and post_delete implicitly point to a place in the document (where the two were split). This moves that point (by popping items from one and pushing them onto the other). It moves the point to try to find a place where unbalanced_start applies.
As you can see, we moved the point so that the dangling <div> that we found will be effectively replaced by the div in the original document. If this doesn't work out, we just throw away unbalanced_start without doing anything. Returns (stuff_before_DEL_START, stuff_inside_DEL_START_END, stuff_after_DEL_END). Returns the first case found (there may be more DEL_STARTs in stuff_after_DEL_END). Raises NoDeletes if there's no DEL_START found. Return (unbalanced_start, balanced, unbalanced_end), where each is a list of text and tag chunks.
unbalanced_start is a list of all the tags that are opened, but not closed in this span. Similarly, unbalanced_end is a list of tags that are closed but were not opened. Extracting these might mean some reordering of the chunks. Cleans up any DEL_START/DEL_END markers in the document, replacing them with <del></del>. To do this while keeping the document valid, it may need to drop some tags (either start or end tags).
It may also move the del into adjacent tags to try to move it to a similar location where it was originally located (e.g., moving a delete into preceding <div> tag, if the del looks like (DEL_START, 'Text</div>', DEL_END) Adds the text chunks in del_chunks to the document doc (another list of text chunks) with marker to show it is a delete. cleanup_delete later resolves these markers into <del> tags. doc is the already-handled document (as a list of text chunks); here we add <ins>ins_chunks</ins> to the end of that. Given a list of tokens, return a generator of the chunks of text for the data in the tokens. Does a diff on the tokens themselves, returning a list of text chunks (not tokens). Do a diff of the old and new document. The documents are HTML *fragments* (str/UTF8 or unicode), they are not complete documents (i.e., no <html> tag).
Returns HTML with <ins> and <del> tags added around the appropriate text.
Markup is generally ignored, with the markup from new_html preserved, and possibly some markup from old_html (though it is considered acceptable to lose some of the old markup). Only the words in the HTML are diffed. The exception is <img> tags, which are treated like words, and the href attribute of <a> tags, which are noted inside the tag itself when there are changes.
Serialize the list of tokens into a list of text chunks, calling markup_func around text to add annotations. Merge tok into the last element of tokens (modifying the list of tokens in-place). Combine adjacent tokens when there is no HTML between the tokens, and they share an annotation
Copy annotations from the tokens listed in src to the tokens in dest Merge the annotations from tokens_old into tokens_new, when the tokens in the new document already existed in the old document. Tokenize a document and add an annotation attribute to each token
doclist should be ordered from oldest to newest, like::
The documents must be *fragments* (str/UTF8 or unicode), not complete documents
The markup argument is a function to markup the spans of words. This function is called like markup('Hello', 'version 2'), and returns HTML. The first argument is text and never includes any markup. The default uses a span with a title: