Avital Oliver
b2bb353a10
Implement UI.getElementData
...
Replaces Spark.getDataContext
2014-03-13 14:06:24 -07:00
David Greenspan
084ee3bf4f
Merge branch 'devel' into shark
...
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
2014-03-06 16:21:33 -08:00
David Greenspan
d27fa802b7
Change {{> content}} to {{> UI.contentBlock}}
...
...and elseContent to UI.elseBlock.
2014-03-04 20:08:22 -08:00
Emily Stark
b0d86e535c
Update docs and examples
2014-02-26 17:48:17 -08:00
Avital Oliver
5671eaa2b7
Merge branch 'devel' into shark
...
Conflicts:
packages/minifiers/package.js
packages/preserve-inputs/package.js
packages/test-in-browser/driver.css
packages/test-in-browser/driver.js
2014-02-25 15:50:36 -08:00
Emily Stark
fd7eaf45d0
Bump docs and examples to 0.7.1.1
2014-02-24 14:02:33 -08:00
Emily Stark
27e5b77249
Bump examples and docs to 0.7.1-rc3
2014-02-21 15:54:04 -08:00
Emily Stark
b4c78fce39
Bump apps to 0.7.1-rc0
2014-02-17 10:02:54 -08:00
Avital Oliver
7309025348
mv examples/unfinished/shark/ examples/unfinished/reorderable-list/
2014-02-07 15:04:42 -08:00
Avital Oliver
042fef5af4
Get unfinished/shark back to a working state.
2014-02-07 15:03:48 -08:00
Nick Martin
46e7410383
Move block for computing httpForwardedCount from the top of the file into where it is used.
...
This is less efficient, as we don't actually need to compute it every time.
However, I think this is pretty small compared to the other work we're doing
(string splitting via regexp, string copies, etc).
This makes the code clearer and easier to understand, as all the code is in
one place. Also, it was distracting at the top of the file as it came before
the commit saying what was in the file.
2014-02-04 01:28:36 -08:00
Andrew Wilcox
09029be917
Update client info API to just have connection.clientAddress and connection.httpHeaders.
...
Fix documentation.
Expose webapp's `identifyBrowser`, even though we aren't currently
using outside of webapp.
2014-02-04 01:08:36 -08:00
Andrew Wilcox
ca7a6929d7
Make information about the client available in the connection object.
2014-02-04 01:08:36 -08:00
Avital Oliver
9fa73a3d25
Simplify account-ui-viewer due to new template argument paradigm
2014-02-03 23:43:04 -08:00
Avital Oliver
dee3799c4a
Merge branch 'shark' into shark-newargs
2014-02-03 23:22:53 -08:00
Avital Oliver
69ba8feabd
Minor stylistic changes to the clock example.
2014-02-01 10:10:47 -08:00
David Greenspan
89b11490d6
Fix "atoms" title tag
2014-01-27 15:27:32 -08:00
David Greenspan
5038c63d08
Merge shark, including shark-isolate-helpers work
2014-01-27 15:21:23 -08:00
David Glasser
6471dce8fa
Merge branch 'devel' into shark
2014-01-27 13:58:11 -08:00
David Greenspan
8cafffa82d
"atoms" example
...
Demonstrates "components" using the new convention where keyword args with no positional args become the data context.
2014-01-25 19:44:47 -08:00
Sashko Stubailo
45ccc12970
Make default accounts-ui styling simpler/flatter
2014-01-21 13:57:52 -08:00
Avital Oliver
e3578c6c30
Merge branch 'devel' into shark
...
Conflicts:
packages/minimongo/minimongo.js
packages/minimongo/package.js
2014-01-07 04:08:06 -08:00
David Greenspan
2577b87cb1
Fix typo (spotted by cscott)
2014-01-06 11:39:42 -08:00
David Glasser
6fc8332c99
Update docs and examples to 0.7.0.1.
2013-12-20 14:23:11 -08:00
David Greenspan
b1a9457be1
More wordplay IE 8 fixes
2013-12-17 18:44:26 -08:00
David Greenspan
e61e4487f9
Make wordplay example not depend on String.trim
...
Not present in IE 8
2013-12-17 18:27:17 -08:00
Avital Oliver
305a406de6
Merge branch 'devel' into shark
2013-12-17 13:28:30 -08:00
David Glasser
b6c7d424bc
Update examples and docs to 0.7.0
2013-12-17 11:08:19 -08:00
Avital Oliver
cb8c0fc6e1
Fix most of accounts-ui-viewer
2013-12-16 20:07:23 -08:00
Nick Martin
9d5fb4d1e1
upgrade examples and docs.
2013-12-13 02:19:13 -08:00
David Greenspan
5dcb59b890
remove extra spaces in HTML
2013-12-11 15:05:48 -08:00
David Greenspan
45bd7f9e73
SVG clock demo
2013-12-11 14:59:55 -08:00
David Glasser
a933225026
Merge branch 'devel' into shark
2013-12-02 17:29:35 -08:00
Nick Martin
db59ab13c1
wait for server to be running instead of naive sleep.
2013-11-26 15:05:18 -08:00
David Greenspan
84b123ef44
don't use triple stache for HTML attrs in examples
...
This syntax has a bug where it relies on having html5-tokenizer on the client, code which was written for the server (and uses Function.bind, defineGetter, etc.).
The plan is to deprecate/remove this syntax anyway, i.e. not allow
you to say `<x {{{attrs}}}>` and then have `attrs` evaluate to a string like
'key1="value1" key2="value2"' at runtime. Constructing these strings is error-prone and likely to be insecure.
Instead, you'll have your choice of double-stache in an attribute value, with or without quotes (`<a b={{c}}>`, or `<a b="{{c}} {{d}}"`, or even `<a b={{c}}-{{d}}>`), or double-stache at the top level of a tag, as in `<a {{b}}>`, in which case `b` must be either a dictionary of attribute names and values or a string containing at most a single attribute name (e.g. "selected" or "").
2013-11-12 19:15:47 -08:00
David Greenspan
c9a79c1593
Merge branch 'devel' into shark
...
Conflicts:
examples/leaderboard/.meteor/release
examples/parties/.meteor/release
examples/todos/.meteor/release
examples/wordplay/.meteor/release
2013-11-11 20:50:33 -08:00
Nick Martin
c1d2c31b90
Update readme and scenarios for new benchmark.
2013-11-05 23:13:01 -08:00
Nick Martin
a4df4a792c
Add indexes to help mongo CPU.
2013-11-05 23:12:50 -08:00
Nick Martin
fd7ffb4420
Use method for remove.
2013-11-05 18:24:29 -08:00
Nick Martin
f688a54456
remove silly print.
2013-11-05 18:23:03 -08:00
Nick Martin
8bf8162c7a
Comment fixups.
2013-11-05 18:23:03 -08:00
Nick Martin
6a78254ddc
don't count the whole table.
2013-11-05 15:48:56 -08:00
Nick Martin
7c6073a9f5
no, don't remove
2013-11-05 15:47:10 -08:00
Nick Martin
80c7749c34
wip
2013-11-05 15:47:10 -08:00
Nick Martin
4500a1aa6d
update params files and readme for new benchmark.
2013-11-05 15:41:24 -08:00
David Glasser
28aa83d774
Add facts to chat-benchmark.
2013-11-05 15:41:23 -08:00
Nick Martin
971d93ae24
Chat benchmark
2013-11-05 15:41:23 -08:00
Nick Martin
9a47e73392
copy off old benchmark.
2013-11-05 15:41:23 -08:00
rzymek
2946346c38
Minor leaderboard example simplification. Replaced {{#unless}} with {{else}}.
2013-11-04 21:11:20 -08:00
Nick Martin
11a10421f7
bump version number on example and docs
2013-10-21 16:48:38 -07:00