.hgignore

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
child 6
8bccb770b82d
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 # .hgignore - List of filenames hg should ignore
michael@0 2
michael@0 3 # Filenames that should be ignored wherever they appear
michael@0 4 ~$
michael@0 5 \.py(c|o)$
michael@0 6 (?i)(^|/)TAGS$
michael@0 7 (^|/)ID$
michael@0 8 (^|/)\.DS_Store$
michael@0 9
michael@0 10 # Vim swap files.
michael@0 11 ^\.sw.$
michael@0 12 .[^/]*\.sw.$
michael@0 13
michael@0 14 # User files that may appear at the root
michael@0 15 ^\.mozconfig
michael@0 16 ^mozconfig*
michael@0 17 ^configure$
michael@0 18 ^config\.cache$
michael@0 19 ^config\.log$
michael@0 20 ^\.clang_complete
michael@0 21 ^mach.ini$
michael@0 22
michael@0 23 # Empty marker file that's generated when we check out NSS
michael@0 24 ^security/manager/\.nss\.checkout$
michael@0 25
michael@0 26 # Build directories
michael@0 27 ^obj
michael@0 28
michael@0 29 # Build directories for js shell
michael@0 30 _DBG\.OBJ/
michael@0 31 _OPT\.OBJ/
michael@0 32
michael@0 33 # SpiderMonkey configury
michael@0 34 ^js/src/configure$
michael@0 35 ^js/src/autom4te.cache$
michael@0 36 # SpiderMonkey test result logs
michael@0 37 ^js/src/tests/results-.*\.(html|txt)$
michael@0 38
michael@0 39 # Java HTML5 parser classes
michael@0 40 ^parser/html/java/(html|java)parser/
michael@0 41
michael@0 42 # SVN directories
michael@0 43 \.svn/
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 # Ignore the directory that JetBrains IDEs create
michael@0 51 \.idea/
michael@0 52
michael@0 53 # Python stuff installed at build time.
michael@0 54 ^python/psutil/.*\.so
michael@0 55 ^python/psutil/.*\.pyd
michael@0 56 ^python/psutil/build/
michael@0 57
michael@0 58 # Git repositories
michael@0 59 .git/
michael@0 60
michael@0 61 # Ignore chrome.manifest files from the devtools loader
michael@0 62 ^browser/devtools/chrome.manifest$
michael@0 63 ^toolkit/devtools/chrome.manifest$

mercurial