.gitignore

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 # .gitignore - List of filenames git should ignore
michael@0 2
michael@0 3 # Filenames that should be ignored wherever they appear
michael@0 4 *~
michael@0 5 *.pyc
michael@0 6 *.pyo
michael@0 7 TAGS
michael@0 8 tags
michael@0 9 ID
michael@0 10 .DS_Store*
michael@0 11
michael@0 12 # Vim swap files.
michael@0 13 .*.sw[a-z]
michael@0 14
michael@0 15 # User files that may appear at the root
michael@0 16 #/.mozconfig*
michael@0 17 /mozconfig
michael@0 18 /configure
michael@0 19 /config.cache
michael@0 20 /config.log
michael@0 21 /.clang_complete
michael@0 22 /mach.ini
michael@0 23
michael@0 24 # Empty marker file that's generated when we check out NSS
michael@0 25 security/manager/.nss.checkout
michael@0 26
michael@0 27 # Build directories
michael@0 28 /obj*/
michael@0 29
michael@0 30 # Build directories for js shell
michael@0 31 */_DBG.OBJ/
michael@0 32 */_OPT.OBJ/
michael@0 33
michael@0 34 # SpiderMonkey configury
michael@0 35 js/src/configure
michael@0 36 js/src/autom4te.cache
michael@0 37 # SpiderMonkey test result logs
michael@0 38 js/src/tests/results-*.html
michael@0 39 js/src/tests/results-*.txt
michael@0 40
michael@0 41 # Java HTML5 parser classes
michael@0 42 parser/html/java/htmlparser/
michael@0 43 parser/html/java/javaparser/
michael@0 44
michael@0 45 # Ignore the files and directory that Eclipse IDE creates
michael@0 46 .project
michael@0 47 .cproject
michael@0 48 .settings/
michael@0 49
michael@0 50 # Python virtualenv artifacts.
michael@0 51 python/psutil/*.so
michael@0 52 python/psutil/*.pyd
michael@0 53 python/psutil/build/
michael@0 54
michael@0 55 # Ignore chrome.manifest files from the devtools loader
michael@0 56 browser/devtools/chrome.manifest
michael@0 57 toolkit/devtools/chrome.manifest

mercurial