Commit Graph

9859 Commits

Author SHA1 Message Date
David Greenspan
5eee458a0c versions 2014-09-03 12:01:04 -07:00
Slava Kim
211b523623 Merge pull request #2513 from prapicault/patch-1
Remove redundant package-client.js reference
2014-09-03 11:30:35 -07:00
Pascal Rapicault
57ed0b0c8a Update commands-cordova.js
Dependency on package-client.js is not necessary
2014-09-03 10:34:51 -07:00
Avital Oliver
0134e6a2d9 More clarification on spacebars/README.md
More detail on the way `{{#each}}` chooses keys for elements in an array
2014-09-02 17:47:49 -07:00
David Glasser
c1baf7a928 Allow meteor shell script to be run from symlink
Fixes #2462.

Too bad we can't just access realpath somehow...
2014-09-02 16:20:31 -07:00
Sashko Stubailo
8cc0eb623c Move canonicalize.js from public to private 2014-09-02 10:35:21 -07:00
Sashko Stubailo
71aeda7606 Added a DDP.md to livedata to redirect old links 2014-09-02 10:16:27 -07:00
Matthew Arbesfeld
65b8cc9882 Remove some unused packages 2014-08-29 15:21:50 -07:00
Matthew Arbesfeld
611298fb50 Merge branch 'cordova-hcp' into devel
Conflicts:
	packages/deps/package.js
	packages/reload/reload.js
	tools/tests/apps/hot-code-push-test/.meteor/versions
2014-08-29 12:08:34 -07:00
Matthew Arbesfeld
52db5b6f53 Fix logging test 2014-08-29 11:57:59 -07:00
Matthew Arbesfeld
d821f2f7d3 Fix typo in autoupdate_server 2014-08-29 11:53:30 -07:00
Emily Stark
345d49f15a Merge branch 'cordova-hcp-oauth' into cordova-hcp
Conflicts:
	packages/oauth/package.js
	packages/standard-app-packages/package.js
2014-08-29 11:50:00 -07:00
Matthew Arbesfeld
18e414caea Remove unused code from hot-code-push-test 2014-08-29 11:46:39 -07:00
Emily Stark
2de255f992 Code review comments from arbesfeld 2014-08-29 11:41:02 -07:00
Justin SB
16b4003f24 Rename sessionStorage -> safeSessionStorage, for clarity 2014-08-29 11:18:14 -07:00
Justin SB
e0990957e1 Don't throw on chrome when sessionStorage is disabled
Chrome is really strict; even (typeof sessionStorage) throws a
'SecurityError: Access is defined' when cookies & local storage
are blocked.  Borrow the logic from history.js; it relies on
catching the exception.

This should fix a problem with reload-safetybelt for users with
Chrome in no-cookies mode.
2014-08-29 11:18:07 -07:00
Matthew Arbesfeld
0bf177ca0b Create more hot code push tests and let --browserstack use many browsers. 2014-08-29 11:07:13 -07:00
Slava Kim
a02cb37ca7 Also set ANDROID_SDK_HOME
Hopefully will help with the "PANIC" crash of android emulator
2014-08-29 01:19:33 -07:00
Slava Kim
1078a6eeb4 Put cordova.sh back to the list of commands requesting android_bundle 2014-08-29 00:43:07 -07:00
Slava Kim
2c741b0a34 Remove redundant reference to ios-sim 2014-08-29 00:27:26 -07:00
Emily Stark
9ba7a6f117 Clean up OAuth redirect and Cordova flows.
* Be less XSS-able by HTML-encoding 'config' in the end-of-login
  responses and reading it out of the DOM.
* Thread 'isCordova' through to end-of-login responses. Trying to do a
  'window.close' in Cordova, even in a try/catch, breaks the in-app
  browser.
* Remove some stray 'console.log's.
2014-08-28 21:37:52 -07:00
Matthew Arbesfeld
fca5c382d5 Merge branch 'release-0.9.1' into cordova-hcp
Conflicts:
	docs/client/api.html
	docs/client/api.js
	meteor
	packages/autoupdate/autoupdate_server.js
	packages/autoupdate/package.js
	packages/constraint-solver/package.js
	packages/less/package.js
	packages/meteor-tool/package.js
	packages/meteor/package.js
	packages/minimongo/package.js
	packages/mongo-livedata/package.js
	packages/oauth1/package.js
	packages/package-version-parser/package.js
	packages/spiderable/package.js
	packages/standard-app-packages/package.js
	packages/templating/package.js
	packages/test-in-console/package.js
	packages/webapp/package.js
	scripts/admin/meteor-release-experimental.json
	scripts/generate-dev-bundle.sh
	tools/uniload.js
2014-08-28 21:13:59 -07:00
Avital Oliver
9bbdc82494 Bump DDP version from "pre2" to "1"
Still let old clients connect to a server running this new version
2014-08-28 19:43:28 -07:00
Slava Kim
76f0836e37 Another workaround for old Android browser's quircks around Event constructor 2014-08-28 18:07:34 -07:00
Slava Kim
02755faf0d adb from global path 2014-08-28 17:49:42 -07:00
Slava Kim
a65f825d4f Push the default HOME value 2014-08-28 17:42:14 -07:00
Matthew Arbesfeld
ef25e736d5 wip towards oauth 2014-08-28 17:25:13 -07:00
Andrew Wilcox
2fd00e58ba Implements the "redirect" login flow, for cases such as using a mobile
UIWebView which aren't able to use the preferred "popup" login flow.

See the specs for details:
  https://meteor.hackpad.com/OAuth-redirect-flow-spec-PeziTcaNPDP
  https://meteor.hackpad.com/OAuth-redirect-flow-part-II-vswwUKP4vXe

I extracted code to construct a URL from the `http` package into a new
`url` utility package.  The new package has no public API, it simply
has the original URL construction functions that were in `http` and
makes them available to oauth.

Fixes the Meetup account login, as Meetup now requires using
"https://api.meetup.com/2/members" instead of
"https://secure.meetup.com/2/members".

The `?close` parameter for the redirect URI is now not needed or used.
For backwards compatibility the `?close` parameter is included if the
login service configuration doesn't include the `loginStyle` field
(indicating it was created using old code).
2014-08-28 17:25:13 -07:00
Sashko Stubailo
65491b7581 Changed description of mongo-livedata to point to mongo 2014-08-28 17:17:44 -07:00
Sashko Stubailo
3613ea0366 Rename livedata package to ddp
Summary: What's on the tin

Test Plan:
meteor test-packages passes
meteor self-test passes

Reviewers: dgreenspan

Reviewed By: dgreenspan

CC: avital, emily, nim

Differential Revision: https://phabricator.meteor.com/D789
2014-08-28 17:17:03 -07:00
Sashko Stubailo
aafd8a0d3e Merge branch 'release-0.9.1' into ddp
Conflicts:
	packages/livedata/package.js
2014-08-28 17:16:38 -07:00
Sashko Stubailo
a924aa7ee6 Rename mongo-livedata to mongo
Summary: Rename the package and update all references

Test Plan:
meteor test-packages
meteor self-test

Reviewers: dgreenspan

Reviewed By: dgreenspan

CC: avital, emily, nim

Differential Revision: https://phabricator.meteor.com/D788
2014-08-28 17:15:42 -07:00
Sashko Stubailo
c4e0ec5a14 Merge branch 'release-0.9.1' into mongo
Conflicts:
	packages/mongo-livedata/package.js
2014-08-28 17:15:06 -07:00
Sashko Stubailo
d0a0c177c9 Update docs and update jsdoc ignored paths 2014-08-28 17:11:58 -07:00
Slava Kim
02164d5cc8 If USE_GLOBAL_ADK is specified, don't try to
install android_bundle and use globally available
java, javac, android and ant
2014-08-28 17:10:24 -07:00
Slava Kim
5de5ba462b More logging, propagate the 'USE_GLOBAL_ADK' env variable 2014-08-28 17:10:03 -07:00
Slava Kim
81e216c599 Ignore failures of logcat -c 2014-08-28 16:10:05 -07:00
Slava Kim
54155531a1 more verboseness, adb.sh permissions 2014-08-28 16:00:19 -07:00
Slava Kim
50a5d7f7f8 Make the verbose mode actually verbose 2014-08-28 15:34:34 -07:00
Matthew Arbesfeld
3f821867d0 Don't rewrite relative paths for cordova builds.
Cordova relies on relative paths to base href to choose its public
assets.
2014-08-28 15:31:07 -07:00
Sashko Stubailo
6c3b37d8f8 Remove check for Meteor because we decided to assume it exists 2014-08-28 13:40:29 -07:00
Matthew Arbesfeld
0af50c04ef Change client.* to web.* and accept client and web 2014-08-28 13:35:26 -07:00
Sashko Stubailo
c24e96ff83 Update deps to tracker in self-test 2014-08-28 13:25:01 -07:00
Sashko Stubailo
3189a364e9 Rename livedata to ddp, meteor test-packages passes 2014-08-28 12:53:34 -07:00
Avital Oliver
6f6630d616 Update package versions for 0.9.1-rc2 release/METEOR@0.9.1-rc2 2014-08-28 12:37:04 -07:00
Slava Kim
91b193d5fb Add 'configure-android' command 2014-08-28 12:34:53 -07:00
Avital Oliver
4ee13d6aab 0.9.1-rc2 2014-08-28 12:31:10 -07:00
Avital Oliver
ca8ae9462d Export 'Deps' from the tracker package.
Specifically, this gives apps access to Deps (via meteor-platform,
formerly known as standard-app-packages)
2014-08-28 12:13:55 -07:00
Sashko Stubailo
932ab597b0 Merge branch 'release-0.9.1' of github.com:meteor/meteor into release-0.9.1 2014-08-28 12:04:33 -07:00
Sashko Stubailo
6f72a3c649 Update deps to tracker in self-test 2014-08-28 12:04:27 -07:00