Thu, 15 Jan 2015 15:59:08 +0100
Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | #!/bin/bash |
michael@0 | 2 | # helper tool for testing. Cats the manifest out of a mar file |
michael@0 | 3 | |
michael@0 | 4 | mar="$1" |
michael@0 | 5 | workdir="/tmp/catmanifest" |
michael@0 | 6 | |
michael@0 | 7 | rm -rf "$workdir" |
michael@0 | 8 | mkdir -p "$workdir" |
michael@0 | 9 | cp "$1" "$workdir" |
michael@0 | 10 | cd "$workdir" |
michael@0 | 11 | mar -x "$1" |
michael@0 | 12 | mv updatev2.manifest updatev2.manifest.bz2 |
michael@0 | 13 | bzip2 -d updatev2.manifest.bz2 |
michael@0 | 14 | cat updatev2.manifest |