Commit Graph

5707 Commits

Author SHA1 Message Date
Slava Kim
650ca70fe6 Reset the state of regex in minimongo on matching
Fixes #2817. Regular Expressions in JavaScript keep the state when matching for
the same string. When there are two documents with the same value of the
matching field, the minimongo can incorrectly filter collection because regexp
would return different values on different calls.
2014-10-14 21:53:01 -07:00
Avital Oliver
50c3c3e78b Code review changes on launch-screen package 2014-10-14 16:23:21 -07:00
Geoff Schmidt
e52be2a2df typo fix 2014-10-13 22:51:09 -07:00
Geoff Schmidt
5d2f9fe640 short readme for routepolicy 2014-10-13 22:49:56 -07:00
Geoff Schmidt
ebf14581a7 move force-ssl writeup from docs.meteor.com to a README 2014-10-13 22:33:05 -07:00
Geoff Schmidt
82297964af fix typo 2014-10-13 22:00:18 -07:00
Geoff Schmidt
34505c8356 Move browser-policy docs from docs.meteor.com to the browser-policy readme. Also create placeholder readmes for the other browser-policy-* packages. 2014-10-13 21:54:04 -07:00
Geoff Schmidt
25205a2f61 short readmes for autoupdate, reload, webapp, webapp-hashing 2014-10-13 21:23:07 -07:00
Geoff Schmidt
cdbc57c0ce Move appcache docs from docs.meteor.com to package readme 2014-10-13 20:21:23 -07:00
Geoff Schmidt
a0fe7cb0b9 one more try to make session readme look its best on atmosphere 2014-10-13 20:10:36 -07:00
Geoff Schmidt
4b7312b556 session readme fixes take 2 2014-10-13 20:09:30 -07:00
Geoff Schmidt
8fc4e3cfeb session readme fixes 2014-10-13 20:08:44 -07:00
Geoff Schmidt
b90d87e56a Readmes for reactive-dict, reactive-var, session 2014-10-13 20:05:40 -07:00
Geoff Schmidt
5661a590f2 Move spiderable docs from docs.meteor.com to readme 2014-10-13 18:37:23 -07:00
Nick Martin
619faab29f fix another typeof 2014-10-13 18:04:14 -07:00
Rahul
bd9dcf9643 Fix the typeof check
Encountered this bug when I tried to update an app that was generating Blaze warnings about the deprecated old-style helper to a 0.9.4 RC. The problem is that the type of the string `'Log'` is being checked rather than the value of the `Log` variable, which obviously returns true, and then the code breaks on the `&& Log` check, which is undefined.
2014-10-13 18:00:25 -07:00
Slava Kim
98f5445f37 Remove the underscore dep from launch screen package 2014-10-13 17:50:13 -07:00
Geoff Schmidt
3c98e47709 fix tracker readme formatting typo 2014-10-13 17:43:39 -07:00
Slava Kim
51a23fc346 Another pass on LaunchScreens 2014-10-13 17:30:50 -07:00
Sander van den Akker
441d35dc38 Added missing underscore package dependency. 2014-10-13 17:30:42 -07:00
Geoff Schmidt
4d64c493d6 README.md: port Tracker chapter over from Meteor Manual 2014-10-13 17:29:10 -07:00
David Glasser
dbef8b7247 Improve error message for limited ordered observe
See #1643.
2014-10-13 17:26:09 -07:00
Geoff Schmidt
ba41957243 another image from Meteor Manual 2014-10-13 17:25:35 -07:00
Geoff Schmidt
364b09ffda Add image from Meteor Manual 2014-10-13 17:20:50 -07:00
Maxime Quandalle
6c793b427c Fix emailTemplates locus
close #2748
2014-10-13 16:42:04 -07:00
David Glasser
3ff1ca06b8 Clarify Session.setDefault docs.
Wording suggested by @PeppeL-G.

Fixes #2725.
2014-10-13 16:08:47 -07:00
Sashko Stubailo
101b96bdcc Merge branch 'master' into devel 2014-10-13 14:51:41 -07:00
Sashko Stubailo
36da5aecb4 Make all version numbers not have rc 2014-10-13 14:09:37 -07:00
Sashko Stubailo
667f3b8a91 Bump package versions for rc.8 2014-10-13 13:35:03 -07:00
Nick Martin
03b8e2b2ad Bump versions for -rc.7 2014-10-12 13:53:01 -07:00
Nick Martin
fbb15e7e3b Allow null in appId check. This can happen when a client passes
`undefined` for appId and it gets translated to `null` by DDP.
2014-10-12 13:18:20 -07:00
Nick Martin
4d2023e9b0 Allow null in appId check. This can happen when a client passes
`undefined` for appId and it gets translated to `null` by DDP.
2014-10-12 13:15:54 -07:00
Slava Kim
270217b566 Fix Accounts.ui.config docs: forceApprovalPrompt is an Object
that maps services to booleans
2014-10-12 00:01:51 -07:00
Slava Kim
ad6521ddc8 Readme file for launch screen 2014-10-11 03:43:40 -07:00
Slava Kim
a39f6bb35e Extract the launch screen logic to a separate package
That can be configured in apps to postpone the launch screen until a certain
moment with some sane default behavior.
2014-10-11 03:19:52 -07:00
Nick Martin
5b17ef1a30 Version bump for rc.6 2014-10-10 20:37:54 -07:00
Nick Martin
80eebe86ba Merge remote-tracking branch 'origin/behind-proxy' into 0.9.4 2014-10-10 20:29:28 -07:00
Slava Kim
8e919e41b5 Whitespace 2014-10-10 19:48:13 -07:00
David Glasser
fb7921ade2 Support $HTTPS_PROXY in Node DDP client.
This should mean that you can access the package server from behind a
corporate firewall.

I tested this by setting up a Linux machine that doesn't have access to
packages.meteor.com:

   $ sudo iptables -A OUTPUT -d 54.225.216.115 -j DROP
   $ sudo iptables -A OUTPUT -d 184.72.252.20 -j DROP
   $ sudo iptables -A OUTPUT -d 23.23.114.56 -j DROP

I confirmed that these commands both fail:

  $ curl https://packages.meteor.com/
  $ ./meteor search asdf   # when it needs to sync first

I bought a proxy server from Proxy Bonanza and confirmed that setting
the environment variable HTTPS_PROXY to
   https://PROXYUSERNAME:PROXYPASSWORD@PROXYIP:PROXYPORT/
made both of the commands above succeed.

Fixes #2515.
2014-10-10 14:49:05 -07:00
David Glasser
ac0014d852 factor out creation of socket 2014-10-10 14:46:51 -07:00
David Glasser
7126e17109 Allow any number of spaces by || in constraints
Previously, exactly one was required, but this was not explicitly
documented.
2014-10-09 21:20:14 -07:00
Sashko Stubailo
a0bf883d93 Bump versions 2014-10-09 20:33:25 -07:00
Sashko Stubailo
8ae1301832 Bump versions 2014-10-09 20:11:53 -07:00
Avital Oliver
f2b65cc055 Fix ce98ea08d5 on IE8
Array.prototype.indexOf isn't defined on IE8
2014-10-09 19:46:09 -07:00
Sashko Stubailo
f77570662c Bump meteor-tool.. again 2014-10-09 16:54:12 -07:00
Sashko Stubailo
18f77ab2ee Bump netroute 2014-10-09 16:52:49 -07:00
Sashko Stubailo
ac7ed9627f Bump meteor-tool 2014-10-09 16:49:18 -07:00
Sashko Stubailo
5dc03c53ec Bump package versions 2014-10-09 16:45:54 -07:00
Nick Martin
cafb427aa7 Bump versions for 0.9.4-rc.2 2014-10-09 16:42:30 -07:00
Slava Kim
ce98ea08d5 Explicitly ban some names for Templates.
Fixes the test failure on IEs because for IEs 'name' is not a magical property
on functions.
2014-10-09 15:24:44 -07:00