Commit Graph

177 Commits

Author SHA1 Message Date
David Greenspan
d442f8750a Todos: make more room for dropdown 2012-10-12 16:48:04 -07:00
David Greenspan
6d06e5486c accounts-ui-viewer: move dropdown to the right 2012-10-12 16:28:39 -07:00
Nick Martin
bc6e80073a Merge branch 'support-autorun' into devel 2012-10-12 15:21:48 -07:00
David Greenspan
32edb4043f loginButtons halign -> align 2012-10-12 09:38:20 -07:00
David Glasser
bae1a59af6 Publicize Meteor._autorun as Meteor.autorun (with docs and tests). 2012-10-12 00:50:35 -07:00
Dan Dascalescu
f0f35650fa The period isn't part of the collection name
http://en.wikipedia.org/wiki/Logical_quotes
2012-10-12 00:29:03 -07:00
David Greenspan
92ac9f1309 accounts-ui-viewer: allow testing of background color 2012-10-11 21:55:09 -07:00
David Greenspan
ea83ef4174 accounts-ui-viewer: update for halign 2012-10-11 21:54:56 -07:00
Avital Oliver
ed89815a33 accounts-ui: {{> loginButtons}} -> {{loginButtons}}
Also support {{loginButtons halign="right"}} for a dropdown that
hangs to the left
2012-10-11 19:50:09 -07:00
David Greenspan
09ed9ffeea accounts-ui-viewer tests spinner 2012-10-11 18:50:06 -07:00
David Greenspan
d5ccedf8c1 harness for viewing states of accounts-ui 2012-10-10 22:16:07 -07:00
Avital Oliver
7757cc0659 accounts-ui: dropdown opens by default to right, unless wrapped in an element with class 2012-10-09 21:52:52 -07:00
David Glasser
3b41434e23 In method invocations and publish handlers, this.userId is now the userId
itself, not a function returning it.
2012-10-08 21:41:14 -07:00
David Glasser
5a01d9fe4d Meteor.Collection now takes its optional parameters ("manager" and some
undocumented ones beginning with _) in an options dictionary.

(For backwards compatibility it still supports passing the manager directly.)
2012-10-08 09:17:54 -07:00
David Glasser
41cc24d9e7 Merge branch 'devel' into auth
Pulls in Meteor._ContextSet, bumps version to 0.4.2, etc.
2012-10-06 11:10:56 -07:00
David Glasser
86cdbe4d71 Merge branch 'deps-utils-private' into devel
This adds three deps utilities, which are currently undocumented and internal:
Meteor._ContextSet, Meteor._autorun, and Meteor._atFlush.
2012-10-06 11:06:58 -07:00
David Glasser
20e29d2851 Make everything in deps-utils private for now. 2012-10-05 15:26:22 -07:00
David Glasser
08a0eda83e Merge branch 'devel' into deps-utils-private
Conflicts:
	packages/session/session.js
2012-10-05 15:14:13 -07:00
Avital Oliver
c086ca0912 accounts-github: cleanup, small tweaks 2012-10-05 00:22:09 -07:00
Nick Martin
f36fc90c07 Add clear button to template demo. Fixes #362 2012-10-04 22:02:24 -07:00
Nick Martin
12934c96a9 Feedback from review. 2012-10-02 23:18:58 -07:00
Nick Martin
1eceed28f9 Replace 'Meteor.accounts' with 'Accounts'.
find . -name '*.js' -print0 | xargs -0 perl -pi -e 's/Meteor\.accounts/Accounts/g'
2012-10-02 23:18:57 -07:00
David Glasser
71851fef89 Merge branch 'devel' into auth
Conflicts:
	app/meteor/skel/.meteor/packages
	examples/leaderboard/.meteor/packages
	packages/livedata/livedata_connection.js
2012-10-01 20:07:27 -07:00
David Greenspan
be6b876d53 remove trailing comma 2012-09-30 15:30:59 -07:00
David Greenspan
9dce7c7cfa rename tabs to JS Lex and JS Parse 2012-09-30 15:05:32 -07:00
David Greenspan
8f23d52618 rename example jsparse-demo -> parse-inspector 2012-09-30 15:04:55 -07:00
David Greenspan
6686d40526 include comments in jsparse AST 2012-09-30 00:42:04 -07:00
David Greenspan
3201fe5180 jsparse demo improvements (lexer tab) 2012-09-29 21:33:19 -07:00
David Greenspan
b995d4751a add preserve-inputs package to skel and more examples 2012-09-28 13:23:30 -07:00
David Greenspan
d22e1e6dcd todos uses preserve-inputs 2012-09-24 20:25:03 -07:00
Avital Oliver
ee922de1c2 Merge branch 'devel' into auth
Conflicts:
	packages/livedata/livedata_server.js
2012-09-21 10:59:48 -07:00
David Greenspan
8648180803 Merge branch 'devel' into deps-utils 2012-09-19 11:54:27 -07:00
David Greenspan
886d657afe Merge branch 'jsparse' into devel
Adds the "jsparse" JavaScript parser as an internal package.

At some point jsparse will get proper docs and become a public
package.  For now, it's basically complete and has unit tests,
so it meets the bar for an internal package.  It will be used
by the new docs tool.
2012-09-19 11:45:02 -07:00
David Greenspan
301b03b7d5 Merge branch 'devel' into deps-utils 2012-09-17 18:02:22 -07:00
David Glasser
af741cc245 Merge branch 'devel' into auth
Conflicts:
	examples/todos/.meteor/packages
	examples/wordplay/.meteor/packages
2012-09-17 15:07:48 -07:00
David Greenspan
660882eb4e examples specify whether they use jquery 2012-09-17 14:42:28 -07:00
David Glasser
2fedd2adfc Merge branch 'devel' into auth
Conflicts:
	packages/livedata/livedata_common.js
	packages/livedata/livedata_connection.js
	packages/livedata/livedata_server.js
	packages/mongo-livedata/collection.js
2012-09-17 14:42:10 -07:00
David Glasser
5e622215ba Change all publicly documented APIs to use camelCase.
For now, the old names still work as well.

This includes:
  - Meteor.isServer/isClient
  - this.isSimulation in methods
  - Context.onInvalidate
  - Meteor.status().retryCount/retryTime

Remove old backwards-compatibility "Sky" alias for "Meteor".

Update all examples in the docs to use camelCase.

Delete unused docs/client/projects.html file.
2012-09-17 14:26:45 -07:00
David Greenspan
fb765dd5f3 Meteor.autorun 2012-09-16 04:07:49 -07:00
David Greenspan
34b4ebbf22 create JSParser 2012-09-12 14:11:28 -07:00
David Greenspan
6e5e7497f0 Lexeme object 2012-09-12 13:04:19 -07:00
David Greenspan
a6bd5747b2 ParseNode object 2012-09-11 18:03:29 -07:00
David Greenspan
f1379b8ec9 demo tweaks 2012-09-11 16:49:47 -07:00
David Greenspan
c63278332b AST => tree 2012-09-11 16:49:47 -07:00
David Greenspan
d6370e762a tweaks, node naming 2012-09-11 16:49:47 -07:00
David Greenspan
ef62683280 none => empty 2012-09-11 16:49:47 -07:00
David Greenspan
42675e5c02 "variables" statement => "var" statement 2012-09-11 16:49:47 -07:00
David Greenspan
48c62ea850 further demo tweaks 2012-09-11 16:49:47 -07:00
David Greenspan
cbfad7f578 UI tweaks 2012-09-11 16:49:46 -07:00
David Greenspan
ce65ffede8 whitespace fixes 2012-09-11 16:49:46 -07:00