Skip to content
This repository was archived by the owner on May 10, 2019. It is now read-only.

Commit eafb1fe

Browse files
committed
Merge pull request #2889 from mozilla/2012.11.23-hotfix-issue2863
fix cache poisioning introduced by borked production push
2 parents 067c673 + d1543f4 commit eafb1fe

7 files changed

Lines changed: 12 additions & 11 deletions

File tree

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ train-2012.11.23:
44
* (hotfix 2012.12.03) nodejs version in .spec file >= 0.8.12
55
* (hotfix 2012.12.05) when an email is re-staged, ensure the latest password is used: issue #2822
66
* (hotfix 2012.12.11) verifier default port number fix
7+
* (hotfix 2012.12.19) resolve issue caused by improper ETag header: issue #2863
78

89
train-2012.11.09:
910
* code cleanup, including jshinting of source and code coverage: #2643, #2272

resources/static/common/css/ie8.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
*/
88

99
.submit button,
10-
.submit button:hover,
1110
.submit button:focus,
11+
.submit button:hover,
1212
.submit .button:hover,
1313
.submit .button:focus {
1414
background-image: url("/common/i/button-arrow.png");

resources/static/common/css/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ html, body {
1717
}
1818

1919
body {
20-
font: 14px/21px 'Open Sans', "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
2120
overflow-y: auto;
21+
font: 14px/21px 'Open Sans', "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
2222
}
2323

2424
/* for floats */

resources/static/common/js/lib/winchan.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;WinChan = (function() {
2-
var RELAY_FRAME_NAME = "__winchan_relay_frame";
32
var CLOSE_CMD = "die";
3+
var RELAY_FRAME_NAME = "__winchan_relay_frame";
44

55
// a portable addListener implementation
66
function addListener(w, event, cb) {

resources/static/common/js/network.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ BrowserID.Network = (function() {
88
var jwcrypto = require("./lib/jwcrypto"),
99
bid = BrowserID,
1010
complete = bid.Helpers.complete,
11-
context,
1211
server_time,
12+
context,
1313
domain_key_creation_time,
1414
auth_status,
1515
code_version,

resources/static/include_js/include.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1227,6 +1227,12 @@
12271227
};
12281228

12291229
navigator.id = {
1230+
watch: function(options) {
1231+
if (this != navigator.id)
1232+
throw new Error("all navigator.id calls must be made on the navigator.id object");
1233+
checkCompat(false);
1234+
internalWatch(options);
1235+
},
12301236
request: function(options) {
12311237
if (this != navigator.id)
12321238
throw new Error("all navigator.id calls must be made on the navigator.id object");
@@ -1237,12 +1243,6 @@
12371243
if (!options.returnTo) options.returnTo = document.location.pathname;
12381244
return internalRequest(options);
12391245
},
1240-
watch: function(options) {
1241-
if (this != navigator.id)
1242-
throw new Error("all navigator.id calls must be made on the navigator.id object");
1243-
checkCompat(false);
1244-
internalWatch(options);
1245-
},
12461246
// logout from the current website
12471247
// The callback parameter is DEPRECATED, instead you should use the
12481248
// the .onlogout observer of the .watch() api.

scripts/browserid.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Name: browserid-server
44
Version: 0.2012.11.23
5-
Release: 4%{?dist}_%{svnrev}
5+
Release: 5%{?dist}_%{svnrev}
66
Summary: BrowserID server
77
Packager: Gene Wood <gene@mozilla.com>
88
Group: Development/Libraries

0 commit comments

Comments
 (0)