Tue, 06 Jan 2015 21:39:09 +0100
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 | <!-- Special characters for XHTML --> |
michael@0 | 2 | |
michael@0 | 3 | <!-- Character entity set. Typical invocation: |
michael@0 | 4 | <!ENTITY % HTMLspecial PUBLIC |
michael@0 | 5 | "-//W3C//ENTITIES Special for XHTML//EN" |
michael@0 | 6 | "http://www.w3.org/TR/xhtml1/DTD/xhtml-special.ent"> |
michael@0 | 7 | %HTMLspecial; |
michael@0 | 8 | --> |
michael@0 | 9 | |
michael@0 | 10 | <!-- Portions (C) International Organization for Standardization 1986: |
michael@0 | 11 | Permission to copy in any form is granted for use with |
michael@0 | 12 | conforming SGML systems and applications as defined in |
michael@0 | 13 | ISO 8879, provided this notice is included in all copies. |
michael@0 | 14 | --> |
michael@0 | 15 | |
michael@0 | 16 | <!-- Relevant ISO entity set is given unless names are newly introduced. |
michael@0 | 17 | New names (i.e., not in ISO 8879 list) do not clash with any |
michael@0 | 18 | existing ISO 8879 entity names. ISO 10646 character numbers |
michael@0 | 19 | are given for each character, in hex. values are decimal |
michael@0 | 20 | conversions of the ISO 10646 values and refer to the document |
michael@0 | 21 | character set. Names are Unicode names. |
michael@0 | 22 | --> |
michael@0 | 23 | |
michael@0 | 24 | <!-- C0 Controls and Basic Latin --> |
michael@0 | 25 | <!ENTITY quot """> <!-- quotation mark, U+0022 ISOnum --> |
michael@0 | 26 | <!ENTITY amp "&#38;"> <!-- ampersand, U+0026 ISOnum --> |
michael@0 | 27 | <!ENTITY lt "&#60;"> <!-- less-than sign, U+003C ISOnum --> |
michael@0 | 28 | <!ENTITY gt ">"> <!-- greater-than sign, U+003E ISOnum --> |
michael@0 | 29 | <!ENTITY apos "'"> <!-- apostrophe = APL quote, U+0027 ISOnum --> |
michael@0 | 30 | |
michael@0 | 31 | <!-- Latin Extended-A --> |
michael@0 | 32 | <!ENTITY OElig "Œ"> <!-- latin capital ligature OE, |
michael@0 | 33 | U+0152 ISOlat2 --> |
michael@0 | 34 | <!ENTITY oelig "œ"> <!-- latin small ligature oe, U+0153 ISOlat2 --> |
michael@0 | 35 | <!-- ligature is a misnomer, this is a separate character in some languages --> |
michael@0 | 36 | <!ENTITY Scaron "Š"> <!-- latin capital letter S with caron, |
michael@0 | 37 | U+0160 ISOlat2 --> |
michael@0 | 38 | <!ENTITY scaron "š"> <!-- latin small letter s with caron, |
michael@0 | 39 | U+0161 ISOlat2 --> |
michael@0 | 40 | <!ENTITY Yuml "Ÿ"> <!-- latin capital letter Y with diaeresis, |
michael@0 | 41 | U+0178 ISOlat2 --> |
michael@0 | 42 | |
michael@0 | 43 | <!-- Spacing Modifier Letters --> |
michael@0 | 44 | <!ENTITY circ "ˆ"> <!-- modifier letter circumflex accent, |
michael@0 | 45 | U+02C6 ISOpub --> |
michael@0 | 46 | <!ENTITY tilde "˜"> <!-- small tilde, U+02DC ISOdia --> |
michael@0 | 47 | |
michael@0 | 48 | <!-- General Punctuation --> |
michael@0 | 49 | <!ENTITY ensp " "> <!-- en space, U+2002 ISOpub --> |
michael@0 | 50 | <!ENTITY emsp " "> <!-- em space, U+2003 ISOpub --> |
michael@0 | 51 | <!ENTITY thinsp " "> <!-- thin space, U+2009 ISOpub --> |
michael@0 | 52 | <!ENTITY zwnj "‌"> <!-- zero width non-joiner, |
michael@0 | 53 | U+200C NEW RFC 2070 --> |
michael@0 | 54 | <!ENTITY zwj "‍"> <!-- zero width joiner, U+200D NEW RFC 2070 --> |
michael@0 | 55 | <!ENTITY lrm "‎"> <!-- left-to-right mark, U+200E NEW RFC 2070 --> |
michael@0 | 56 | <!ENTITY rlm "‏"> <!-- right-to-left mark, U+200F NEW RFC 2070 --> |
michael@0 | 57 | <!ENTITY ndash "–"> <!-- en dash, U+2013 ISOpub --> |
michael@0 | 58 | <!ENTITY mdash "—"> <!-- em dash, U+2014 ISOpub --> |
michael@0 | 59 | <!ENTITY lsquo "‘"> <!-- left single quotation mark, |
michael@0 | 60 | U+2018 ISOnum --> |
michael@0 | 61 | <!ENTITY rsquo "’"> <!-- right single quotation mark, |
michael@0 | 62 | U+2019 ISOnum --> |
michael@0 | 63 | <!ENTITY sbquo "‚"> <!-- single low-9 quotation mark, U+201A NEW --> |
michael@0 | 64 | <!ENTITY ldquo "“"> <!-- left double quotation mark, |
michael@0 | 65 | U+201C ISOnum --> |
michael@0 | 66 | <!ENTITY rdquo "”"> <!-- right double quotation mark, |
michael@0 | 67 | U+201D ISOnum --> |
michael@0 | 68 | <!ENTITY bdquo "„"> <!-- double low-9 quotation mark, U+201E NEW --> |
michael@0 | 69 | <!ENTITY dagger "†"> <!-- dagger, U+2020 ISOpub --> |
michael@0 | 70 | <!ENTITY Dagger "‡"> <!-- double dagger, U+2021 ISOpub --> |
michael@0 | 71 | <!ENTITY permil "‰"> <!-- per mille sign, U+2030 ISOtech --> |
michael@0 | 72 | <!ENTITY lsaquo "‹"> <!-- single left-pointing angle quotation mark, |
michael@0 | 73 | U+2039 ISO proposed --> |
michael@0 | 74 | <!-- lsaquo is proposed but not yet ISO standardized --> |
michael@0 | 75 | <!ENTITY rsaquo "›"> <!-- single right-pointing angle quotation mark, |
michael@0 | 76 | U+203A ISO proposed --> |
michael@0 | 77 | <!-- rsaquo is proposed but not yet ISO standardized --> |
michael@0 | 78 | |
michael@0 | 79 | <!-- Currency Symbols --> |
michael@0 | 80 | <!ENTITY euro "€"> <!-- euro sign, U+20AC NEW --> |