Lines Matching refs:archive
18 To list all URLs in an archive:
19 $ ./httparchive.py ls archive.wpr
22 $ ./httparchive.py cat --host example.com archive.wpr
25 $ ./httparchive.py cat --host www.example.com --full_path /foo archive.wpr
28 $ ./httparchive.py cat archive.wpr
31 $ ./httparchive.py edit --host www.example.com --full_path /foo archive.wpr
33 To print statistics of an archive:
34 $ ./httparchive.py stats archive.wpr
37 $ ./httparchive.py stats --host www.example.com archive.wpr
88 the archive to find potential matches.
267 """Print stats about the archive for all URLs that match given params."""
301 only resources that are not part of the accumlated archive are added"""
309 for archive in other_archives:
310 if not os.path.exists(archive):
311 print 'Error: Replay file "%s" does not exist' % archive
314 http_archive_other = HttpArchive.Load(archive)
315 print 'Loaded %d responses from %s' % (len(http_archive_other), archive)
317 # Only resources that are not already part of the current archive
350 """Find the closest matching request in the archive to the given request.
416 """Diff the given request to the closest matching request in the archive.
432 """Gets certificate from the server and stores it in archive"""
545 # Fix older version of archive.
550 'Archived HTTP request is missing "headers". The HTTP archive is'
557 # dealing with an older archive.
934 Modifies the state of the archive according to the textual representation.