Commit Graph

7625 Commits

Author SHA1 Message Date
Emily Stark
fba413d597 update banner, notices, History 2014-06-23 08:04:59 -07:00
Emily Stark
2b87aa1f00 Do feature detection instead of browser detection for ui test.
The previous `isIE()` check returned false for IE11.
release/0.8.2 release/download-test-0.8.2 release/0.8.2-rc7
2014-06-22 16:31:13 -07:00
Emily Stark
69455d4df7 Use _.toArray to make IE8 happy release/0.8.2-rc6 2014-06-22 08:27:42 -07:00
Emily Stark
7b1cddad0c Merge branch 'fix-ui-hooks-nested-domranges' into release-0.8.2 release/0.8.2-rc5 2014-06-20 17:10:32 -07:00
Emily Stark
631bce6d5b Merge branch 'bcrypt-change-password' into release-0.8.2 2014-06-20 16:44:35 -07:00
Emily Stark
abd92999a4 Meteor.user()._id -> Meteor.userId() 2014-06-20 16:44:12 -07:00
Emily Stark
367516a966 Replace accidentally deleted comment line 2014-06-20 16:22:38 -07:00
Emily Stark
ea231729de Revert "Add a changePassword test"
This reverts commit 7e519e11b7.

This commit added a test that upgraded from srp to bcrypt via
changePassword for a user with only an email address, in addition to the
test that existed for a user with a username. Having two such tests is
now silly because Meteor.changePassword no longer has different code
paths for email/username users.
2014-06-20 16:22:38 -07:00
Emily Stark
76cfdd44a6 Use id as user selector instead of username or email 2014-06-20 16:22:38 -07:00
Emily Stark
924f51a0ed Add a changePassword test 2014-06-20 16:22:38 -07:00
Emily Stark
84774800b8 Add a comment 2014-06-20 16:22:38 -07:00
Emily Stark
137129b358 Upgrade from SRP to bcrypt on password change 2014-06-20 16:22:38 -07:00
Matthew Arbesfeld
42b0cad48f Allow styles to not have a trailing semicolon. Fix cannonicalize_html to
remove trailing semicolons from styles.
2014-06-20 14:06:37 -07:00
Matthew Arbesfeld
02c0c4de68 IE8 fix for StyleAttrHandler. 2014-06-20 13:28:23 -07:00
David Greenspan
085441524f Separate element removal and “teardown”
DomRange now never removes elements except through the removeElement UI hook.  If you write a hook that prevents removal, teardown still happens (e.g. templates stop updating).

This code also provides the basis for stopping updates to part of the DOM by triggering teardown without removal.

Before, DomBackend.removeElement would both trigger teardown and actually deparent the element.  Now we have DomBackend.tearDownElement, which just triggers the jQuery teardown (which in turn triggers finalization of DomRanges that have been inserted in the DOM tree).

The flag to {node,members,range}Removed is now named “alreadyTornDown” and documented.  Its purpose is to prevent redundant teardown walks through the DOM.
2014-06-20 12:34:23 -07:00
David Greenspan
4ec9cb5847 Prevent a test from leaving a DIV behind 2014-06-20 12:08:08 -07:00
Emily Stark
b845f8e7eb history pass 2014-06-19 09:51:33 -07:00
Emily Stark
80ee5c19ee Add comment to findHelperHostComponent 2014-06-19 09:40:28 -07:00
Emily Stark
dc2b03aee6 Tentative maybe fix for UI hooks on nested domranges. 2014-06-18 17:03:46 -07:00
Emily Stark
86aeec461a Fix canonicalizeHtml regexes.
Allows empty, quoted attributes (e.g. <div foo="">)
2014-06-17 22:32:21 -07:00
Emily Stark
7d9c1da444 Fix removeNode indentation 2014-06-17 21:09:14 -07:00
Emily Stark
b84c7662f3 Fix UI._templateInstance() to look at surrounding template.
Previously we were using the current component to retrieve the template
instance, but what we actually want is the template instance of the
surrounding component that is a template.
release/0.8.2-rc4
2014-06-17 16:58:54 -07:00
Emily Stark
40e45cab00 more detail in History 2014-06-17 15:33:00 -07:00
Matthew Arbesfeld
ae0fab33d2 Fix quotes in History.md 2014-06-17 14:02:26 -07:00
Matthew Arbesfeld
c25017edf0 Update History.md with 'UI._parentData(n)'. 2014-06-17 14:02:22 -07:00
Matthew Arbesfeld
6b48630160 Adds UI._parentData(n) method in template helpers.
This method returns the parent data context which surrounds the
helper call. This mirrors the effect of {{..}} in Spacebars. So
UI._parentData(2) is equivalent to {{../..}}.
2014-06-17 14:02:17 -07:00
Emily Stark
7336bf901b bump some self-test timeouts 2014-06-16 18:15:38 -07:00
Emily Stark
566302f1cb Export the number of bcrypt rounds and checkPassword release/0.8.2-rc3 2014-06-14 14:23:08 -07:00
Emily Stark
dd034b3f0b Maintain old behavior of plaintext password handler.
This is for backwards compatibility with old standalone DDP clients
(like the Meteor command line tool). Note that we are not maintaining
back-compat with old standalone DDP clients that implemented SRP.
release/0.8.2-rc2
2014-06-13 09:44:29 -07:00
Emily Stark
58182f2009 Merge branch 'fix-style-handler-test' into release-0.8.2 2014-06-12 20:24:38 -07:00
Emily Stark
a6ecfb3825 Use $.trim in StyleHandler when String.trim isn't available.
(Safari 4)
2014-06-12 20:24:20 -07:00
Matthew Arbesfeld
961965a7c5 fix merge 2014-06-12 20:24:20 -07:00
Matthew Arbesfeld
4f20802cf9 Fix test expectations 2014-06-12 20:24:20 -07:00
Emily Stark
15804badf4 Remove forgotten debugging argument 2014-06-12 20:24:19 -07:00
Emily Stark
0950952c26 partial fix to ui reactive attributes style diffing test
It's failing in IE10, maybe other IEs also
2014-06-12 20:24:19 -07:00
Emily Stark
2554228e49 History tweaks 2014-06-11 17:50:38 -07:00
Emily Stark
e43d13e9f0 organization pass on history 2014-06-11 17:46:46 -07:00
Emily Stark
8b9a61b39c Use 'protocol' property to detect javascript: URLs.
This strategy works in Safari 4, unlike what we were doing previously.
release/0.8.2-rc1
2014-06-11 15:13:27 -07:00
Emily Stark
81dbf20ea3 Ensure that user fields exist before setting them.
Follow-up to 4acfc5c6f
2014-06-11 10:11:20 -07:00
Emily Stark
5e0c9923d4 Update mailmap/history release/0.8.2-rc0 2014-06-10 21:10:50 -07:00
Emily Stark
89d8f41156 Update History 2014-06-10 20:59:19 -07:00
Maxime Quandalle
f65451e196 Upgrade Stylus from 0.42.3 to 0.46.3 2014-06-10 17:28:17 -07:00
David Glasser
2a8da041e7 Merge branch 'pr/2215' into devel 2014-06-10 17:11:49 -07:00
David Glasser
31a5f4014f Improve comment and message
Make sure that it shows you that it added '.meteor.com'.
2014-06-10 17:10:34 -07:00
J. Bruni
ab5c2513cd Show meaningful deploy error message for long hostname
https://github.com/meteor/meteor/issues/1208#issuecomment-45158503
2014-06-10 17:05:28 -07:00
Frederico Carvalho
4acfc5c6ff before passing 'user' to email template functions, update with new token information 2014-06-10 16:59:51 -07:00
Tim Phillips
b3d7434e06 Add command line h1 to docs
Remove unused template
2014-06-10 16:40:26 -07:00
Emily Stark
31a0db621f Add History entry for bcrypt 2014-06-10 16:04:19 -07:00
Emily Stark
1ce98b5e02 Add History entry for userEmail option 2014-06-10 15:39:06 -07:00
Emily Stark
05bfdc297e Merge branch 'pr/2183' into devel 2014-06-10 15:17:24 -07:00