Commit Graph

2203 Commits

Author SHA1 Message Date
David Glasser
f68a8a3431 Add a XXX caveat to #346 fix. 2012-12-17 10:06:48 -08:00
David Glasser
3d870954ca Fix queries and updates with JS RegExp objects with //i and //m flags.
Follow-up to 28a136d7 continuing to address issue #346.
2012-12-14 15:14:04 -08:00
Avital Oliver
7fb8f22a64 More History.md fixes 2012-12-14 09:46:48 -08:00
Avital Oliver
02c092e140 Improvement to last commit changing History.md 2012-12-14 09:43:50 -08:00
Avital Oliver
836c80ef67 Add comment to History.md 2012-12-14 09:34:33 -08:00
David Glasser
1070a682fd Rename soma.jpeg to soma.png, because that's what it is. 2012-12-13 17:49:09 -08:00
Nick Martin
6fee95fc34 make static bigdata app to stress page load (merge box) 2012-12-12 22:01:09 -08:00
Avital Oliver
c8c5fdbf0d Merge pull request #544 from timhaines/fix-twitter-server-after-update-to-oauth1binding
Fix capturing the twitter identity information
2012-12-12 16:58:37 -08:00
Tim Haines
d85497a275 Fix capturing the twitter identity information 2012-12-12 16:16:02 -08:00
David Greenspan
5a053a039f Merge branch 'dev-bundle-nodetar' into devel 2012-12-12 16:06:59 -08:00
David Greenspan
6c9cd218a9 bump dev_bundle version to 0.2.11 2012-12-12 16:06:31 -08:00
David Greenspan
033fd00a58 add npm "tar" package for use by engine 2012-12-12 16:06:21 -08:00
David Glasser
cd250f0945 tinytest: drop results for a run when requested by client, not onComplete.
Should be useful for a non-browser-based test runner.
2012-12-12 12:55:44 -08:00
Naomi Seyfer
69459b8c70 Add pre to the whitspace formatting of code 2012-12-12 12:53:39 -08:00
Naomi Seyfer
7724c7ef7f Changed from a fake enum thing to just strings for debug opts
Taking Geoff's advice.  Also adjusting the docstrings in the usage
for --debug and --debug-brk
2012-12-12 12:53:39 -08:00
Naomi Seyfer
06a3e23730 The rest of the docs for Meteor.settings 2012-12-12 12:53:39 -08:00
Avital Oliver
f247840536 Merge pull request #539 from timhaines/oauth1binding-to-accept-post-params
Update OAuth1Binding to allow post and get to receive params
2012-12-12 12:41:57 -08:00
Geoff Schmidt
da4699288d tweaks to Email.send example 2012-12-12 12:17:53 -08:00
Evan
e2743eeab0 Update docs/client/api.html
Added example to Email.send
2012-12-12 12:05:52 -08:00
Tim Haines
0b1ced1aa2 Have an oauth call return the result including headers and statusCode, not just the data 2012-12-11 17:00:11 -08:00
Nick Martin
ae07218515 Convert the benchmark to use Meteor.settings to load scenarios. 2012-12-11 00:17:28 -08:00
Tim Haines
440d386ba1 Add post convenince method to OAuth1Binding, and allow post and get to receive params 2012-12-10 21:07:13 -08:00
David Greenspan
11f98e0748 include jsparse-docs app in main repo
Under examples/unfinished.  Was in my personal repo.

This app displays a nicely-formatted full reference for the jsparse syntax tree.
2012-12-10 15:27:09 -08:00
David Greenspan
96cd1faf6b jsparse: allow unescaped / in regex char classes
Regexes like /[/]/ are ES5 compliant and supported by Node and browsers.

Needed to parse prettify.js and SockJS!
2012-12-10 15:16:23 -08:00
Nick Martin
a13328b7f4 Use comment nodes for LiveRange in all IE, not just IE < 8. Fixes #458. 2012-12-10 12:29:26 -08:00
David Glasser
28a136d7c2 Fix client-side c.update({foo: /bar/}) and remove.
Minimongo supported JS RegExp object in selectors, but previously we serialized
them poorly over DDP. Fix by converting to the equivalent {foo: {$regex: 'bar'}}
form.

Fixes #346.
2012-12-10 11:42:18 -08:00
David Glasser
5e6bd79321 Followup to 7289950b: fix and add tests and comments.
7289950b removed the long-deprecated support for including "/sockjs" in
HTTP/HTTPS URLs passed to Meteor.connect (though it is require for the new
ddp+sockjs URLs), breaking some tests and making some comments incorrect. These
are now fixed.
2012-12-09 21:23:49 -08:00
David Greenspan
8eacb1ab9f clarify comment 2012-12-07 18:03:52 -08:00
David Greenspan
85b502c296 jsparse: fix logic bug in lexing identifiers 2012-12-07 17:56:23 -08:00
Naomi Seyfer
f78e46607c Make the default for Meteor.settings be the empty object 2012-12-07 13:43:05 -08:00
David Greenspan
c87b00f0c9 jsparse: fix decimal literals starting with '.' 2012-12-07 13:40:23 -08:00
Naomi Seyfer
0988203ca1 Merge branch 'mongo-error' into devel 2012-12-07 11:27:47 -08:00
Naomi Seyfer
9bc802b3f6 Added file with library of mongo exit codes
Make meteor clearer about why mongo exited.

test for one possible mongo badness

Only print explanation if we have it
2012-12-07 11:27:18 -08:00
David Glasser
7289950b54 Implement "ddp+sockjs://" and "ddpi+sockjs://" URLs for Meteor.connect.
This is not yet documented or fully supported (ie, it may change before 1.0).

ddp+sockjs:// URLs are translated into https:// URLs and explicitly contain the
"/sockjs" endpoint. Any '*' in the hostname should be changed into a random
digit before opening a SockJS connection, to help avoid browser per-hostname
connection limits.

ddpi+sockjs:// is identical but uses http:// instead.

The DEFAULT_DDP_ENDPOINT environment variable has been renamed
DDP_DEFAULT_CONNECTION_URL. (For now, 'meteor deploy' will continue to also
provide non-"ddp+sockjs://" URLs in the old environment variable so that old
apps continue to work).
2012-12-06 16:45:01 -08:00
David Glasser
8916b1cd02 Don't add '.meteor.com' to deployed app names (the server will do that now and
return the site URL).
2012-12-06 16:45:01 -08:00
Naomi Seyfer
9902ea7c2b Merge remote-tracking branch 'settings' into devel 2012-12-06 16:43:53 -08:00
Naomi Seyfer
325b93e6ea Add newline 2012-12-06 14:28:27 -08:00
Naomi Seyfer
16fff9ea48 Fixed documentation to talk about unsetting 2012-12-06 14:21:42 -08:00
Naomi Seyfer
ad45a0854b Passing an empty settings file unsets settings on deploy 2012-12-06 14:21:42 -08:00
Naomi Seyfer
ad564f26aa Re-silince settings test 2012-12-06 14:21:42 -08:00
Naomi Seyfer
3f8b7c9b78 More code review comments; simplifying mongo kill 2012-12-06 14:21:42 -08:00
Naomi Seyfer
0531db7dcb Adjusting code as per code review comments 2012-12-06 14:21:42 -08:00
Naomi Seyfer
57ff26497d Added explanation in docs for settings stickiness 2012-12-06 14:21:42 -08:00
Naomi Seyfer
836fd21a13 Docs for --settings in commandline.html 2012-12-06 14:21:42 -08:00
Naomi Seyfer
dc47e4304c Geoff comments on usage text 2012-12-06 14:21:42 -08:00
Naomi Seyfer
67c37b9d41 removed extraneous console.log 2012-12-06 14:21:42 -08:00
Naomi Seyfer
8769274e76 Settings working with meteor deploy 2012-12-06 14:21:42 -08:00
Naomi Seyfer
fb1d2b319a Tests for --settings, and also Nick's review comments 2012-12-06 14:21:42 -08:00
Naomi Seyfer
4d5498424a launch_mongo now returns a handle that can stop the mongo proc 2012-12-06 14:21:42 -08:00
Naomi Seyfer
24e70fda21 Find mongo and kill it dead on --once exit 2012-12-06 14:21:42 -08:00