Author: Peter Eckersley <[email protected]> Date: Sat, 13 Nov 2010 15:09:19 -0800 Subject: Escape some dots (thanks rransom) Commit: ca4fc1710be8f0ac33ff091372498218131e34f3
--- src/chrome/content/rules/Dropbox.xml | 2 +- src/chrome/content/rules/Evernote.xml | 2 +- src/chrome/content/rules/Github.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/chrome/content/rules/Dropbox.xml b/src/chrome/content/rules/Dropbox.xml index 712ad26..3a63409 100644 --- a/src/chrome/content/rules/Dropbox.xml +++ b/src/chrome/content/rules/Dropbox.xml @@ -2,7 +2,7 @@ <target host="www.dropbox.com" /> <target host="dropbox.com" /> - <securecookie host="^(.*\.)?dropbox.com$" name=".*" /> + <securecookie host="^(.*\.)?dropbox\.com$" name=".*" /> <rule from="^http://(www\.)?dropbox\.com/" to="https://www.dropbox.com/"/> <!-- This breaks blog.dropbox.com and forums.dropbox.com, for example diff --git a/src/chrome/content/rules/Evernote.xml b/src/chrome/content/rules/Evernote.xml index 8ff0370..5e64211 100644 --- a/src/chrome/content/rules/Evernote.xml +++ b/src/chrome/content/rules/Evernote.xml @@ -2,7 +2,7 @@ <target host="www.evernote.com" /> <target host="evernote.com" /> - <securecookie host="^(.*\.)?evernote.com$" name=".*" /> + <securecookie host="^(.*\.)?evernote\.com$" name=".*" /> <rule from="^http://(www\.)?evernote\.com/" to="https://www.evernote.com/"/> </ruleset> diff --git a/src/chrome/content/rules/Github.xml b/src/chrome/content/rules/Github.xml index a6cc650..cd0bd69 100644 --- a/src/chrome/content/rules/Github.xml +++ b/src/chrome/content/rules/Github.xml @@ -2,7 +2,7 @@ <target host="*.github.com" /> <target host="github.com" /> - <securecookie host="^(.*\.)?github.com$" name=".*" /> + <securecookie host="^(.*\.)?github\.com$" name=".*" /> <rule from="^http://(www\.)?github\.com/" to="https://github.com/"/> <rule from="^http://(assets\d+|gist)\.github\.com/" to="https://$1.github.com/"/> -- 1.7.1
