PHP 7.4.33
Preview: _diffcommand.py Size: 2.08 KB
//lib64/python2.7/site-packages/lxml/html/_diffcommand.py

from __future__ import absolute_import

import optparse
import sys
import re
import os
from .diff import htmldiff

description = """\
"""

parser = optparse.OptionParser(
    usage="%prog [OPTIONS] FILE1 FILE2\n"
    "%prog --annotate [OPTIONS] INFO1 FILE1 INFO2 FILE2 ...",
    description=description,
    )

parser.add_option(
    '-o', '--output',
    metavar="FILE",
    dest="output",
    default="-",
    help="File to write the difference to",
    )

parser.add_option(
    '-a', '--annotation',
    action="store_true",
    dest="annotation",
    help="Do an annotation")

def main(args=None):
    if args is None:
        args = sys.argv[1:]
    options, args = parser.parse_args(args)
    if options.annotation:
        return annotate(options, args)
    if len(args) != 2:
        print('Error: you must give two files')
        parser.print_help()
        sys.exit(1)
    file1, file2 = args
    input1 = read_file(file1)
    input2 = read_file(file2)
    body1 = split_body(input1)[1]
    pre, body2, post = split_body(input2)
    result = htmldiff(body1, body2)
    result = pre + result + post
    if options.output == '-':
        if not result.endswith('\n'):
            result += '\n'
        sys.stdout.write(result)
    else:
        f = open(options.output, 'wb')
        f.write(result)
        f.close()

def read_file(filename):
    if filename == '-':
        c = sys.stdin.read()
    elif not os.path.exists(filename):
        raise OSError(
            "Input file %s does not exist" % filename)
    else:
        f = open(filename, 'rb')
        c = f.read()
        f.close()
    return c

body_start_re = re.compile(
    r"<body.*?>", re.I|re.S)
body_end_re = re.compile(
    r"</body.*?>", re.I|re.S)
    
def split_body(html):
    pre = post = ''
    match = body_start_re.search(html)
    if match:
        pre = html[:match.end()]
        html = html[match.end():]
    match = body_end_re.search(html)
    if match:
        post = html[match.start():]
        html = html[:match.start()]
    return pre, html, post

def annotate(options, args):
    print("Not yet implemented")
    sys.exit(1)
    

Directory Contents

Dirs: 0 × Files: 41

Name Size Perms Modified Actions
4.21 KB lrw-r--r-- 2011-09-25 16:58:04
Edit Download
3.83 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
3.83 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
26.49 KB lrw-r--r-- 2022-04-21 13:53:18
Edit Download
19.67 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
19.58 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
268.93 KB lrwxr-xr-x 2022-04-21 13:54:51
Edit Download
4.11 KB lrw-r--r-- 2022-04-21 13:53:18
Edit Download
3.84 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
3.84 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
29.79 KB lrw-r--r-- 2017-05-01 14:11:37
Edit Download
27.94 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
27.60 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
363.35 KB lrwxr-xr-x 2022-04-21 13:54:51
Edit Download
319 B lrw-r--r-- 2011-09-25 16:58:04
Edit Download
622 B lrw-r--r-- 2022-04-21 13:54:51
Edit Download
622 B lrw-r--r-- 2022-04-21 13:54:51
Edit Download
9.46 KB lrw-r--r-- 2017-06-03 16:47:37
Edit Download
9.52 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
9.28 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
8.43 KB lrw-r--r-- 2017-09-17 07:43:53
Edit Download
7.79 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
7.79 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
9.96 KB lrw-r--r-- 2017-09-17 07:43:53
Edit Download
9.57 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
9.57 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
249 B lrw-r--r-- 2011-09-25 16:58:04
Edit Download
464 B lrw-r--r-- 2022-04-21 13:54:51
Edit Download
464 B lrw-r--r-- 2022-04-21 13:54:51
Edit Download
2.08 KB lrw-r--r-- 2017-09-17 07:43:53
Edit Download
2.84 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
2.84 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
3.17 KB lrw-r--r-- 2012-09-28 19:13:25
Edit Download
4.49 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
4.49 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
1.08 KB lrw-r--r-- 2016-05-05 07:08:05
Edit Download
2.49 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
2.49 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
63.37 KB lrw-r--r-- 2018-03-13 20:13:32
Edit Download
65.50 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download
65.22 KB lrw-r--r-- 2022-04-21 13:54:51
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).