Nick Martin
448da70a58
Workaround weird header issue in firefox. Fixes #553 .
2013-01-11 18:32:52 -08:00
Nick Martin
3ff567eda2
Merge branch 'quiesce-fix' into devel
2013-01-11 17:13:29 -08:00
Nick Martin
84b32f3241
Add test for fix to #555 .
2013-01-11 16:55:41 -08:00
David Glasser
ec6c4cd55a
Maybe fix #555 .
2013-01-11 16:55:41 -08:00
David Glasser
6e5dd0b948
livedata client: Factor out "stringify message and send it" into a helper.
...
(Extracted from ddp-pre1 branch.)
2013-01-11 15:06:02 -08:00
David Glasser
aec2e586d8
spiderable: Correctly kill phantomjs after timeout. Fixes #571 .
...
The previous version only killed the wrapper bash script, not the child. We now
work around the broken (socketpair) stdin presented to Node's child processes by
using a bash heredoc rather than "cat |"; this means we can use exec, which only
gives us one process to clean up.
While we're at it, simplify code by switching from child_process.spawn to
child_process.execFile, which does the work of capturing stdout and setting a
timeout for us automatically.
2013-01-08 22:51:40 -08:00
Nick Martin
918113ee4c
Merge branch 'pr-588' into devel
2013-01-08 21:05:09 -08:00
Blake Miner
e474302fba
Added Meteor._debug function to dependency list
2013-01-08 21:04:57 -08:00
Blake Miner
30bcbd8b58
Add underscore as dependency for Spark
...
Fixes #587
2013-01-08 21:04:57 -08:00
Nick Martin
0c64008499
Optimised images
...
Originally from https://github.com/meteor/meteor/pull/569
Reworked to:
- apply to soma.png, not soma.jpeg (file was previously misnamed).
- don't touch bootstrap's glyph image. It would cause conflicts later, and is not neighborly.
2013-01-08 20:52:30 -08:00
Rahul
40e92ee043
Specify that Bootstrap is a front-end framework
...
Taken from the Bootstrap homepage: "Sleek, intuitive, and powerful front-end framework for faster and easier web development."
Nitpick. There's no such thing as a "UX framework", and Bootstrap also provides more than just UI widgets, so I figured it would probably be best to just use the same description Twitter chose.
2013-01-08 20:35:53 -08:00
Dana Woodman
d17fb77189
Fix spelling error
...
Missing 'n'.
2013-01-08 20:35:11 -08:00
David Glasser
81be8c0d1b
Add emacs TAGS file to .gitignore.
...
Suggested by naomi.
2013-01-08 19:38:55 -08:00
David Glasser
1c80429e06
Merge branch 'master' into devel
2013-01-08 11:19:19 -08:00
David Glasser
4d98d8cb4e
Merge branch 'release-0.5.4'
2013-01-08 11:17:58 -08:00
David Glasser
2d27799008
find_mongo_pids: Fix regression in 203a82d.
...
Don't consider "ps" stderr to be an error. This occurs on OSX Mountain Lion if
DYLD_LIBRARY_PATH or a similar env var is set, and is harmless.
v0.5.4
2013-01-08 10:41:01 -08:00
David Glasser
864371f9ab
Bump version number to 0.5.4 and write History.md.
2013-01-08 10:40:52 -08:00
David Glasser
071b86900a
find_mongo_pids: Fix regression in 203a82d.
...
Don't consider "ps" stderr to be an error. This occurs on OSX Mountain Lion if
DYLD_LIBRARY_PATH or a similar env var is set, and is harmless.
2013-01-07 22:14:04 -08:00
David Glasser
5154eafce1
Merge branch 'master' into devel
...
Brings changes done on release-0.5.3 into devel.
2013-01-07 12:24:48 -08:00
David Glasser
182e1dcd81
Merge branch 'release-0.5.3'
2013-01-07 12:24:03 -08:00
David Glasser
a9a7179ebf
Follow-up to 26c725 to work on more browsers.
...
Windows Safari (eg) seems to apply the "uncheck existing radios when new radios
are created" even earlier than other browsers, so save values earlier.
v0.5.3
2013-01-03 15:33:42 -08:00
David Glasser
fd13a9b899
http: Fix incorrect use of self in param encoding.
2013-01-03 14:56:45 -08:00
David Glasser
25af4e5cdb
http: Fix test failure on FF caused by 3bada2a.
2013-01-03 14:56:02 -08:00
David Glasser
f54b85cd47
Release notes for #392 fix.
2013-01-03 10:40:17 -08:00
David Glasser
46e772c0ef
Merge branch 'devel' into release-0.5.3
...
Pull in fix to #392 .
2013-01-03 10:34:00 -08:00
David Glasser
95974f82fb
Fix server-side observe with no added callback. Fixes #589 .
...
The cursor de-dup code introduced in Meteor 0.5.1 had a bug where a server-side
`observe` with no `added` callback would throw an error if the `observe` was
de-duped.
2013-01-03 10:16:21 -08:00
David Glasser
203a82d9b9
Fix race condition in 'meteor mongo'.
...
The 'exit' event on a ChildProcess doesn't necessarily occur before all the
'data' events on its stdio, so sometimes 'meteor mongo' didn't find the
process. We should have been using the 'close' event. Switch from
child_process.spawn to child_process.exec, which simplifies the code and uses
the right event.
2013-01-03 09:29:52 -08:00
David Glasser
fb24d39cba
cli-test: Use node instead of Python.
...
It's guaranteed to be there, and works better!
2013-01-03 00:40:08 -08:00
Nick Martin
bc9e6997d4
Wordsmithing on History.md.
2013-01-02 18:38:11 -08:00
David Greenspan
5eae5eae4c
Further protect from stack traces on re-render
2013-01-02 18:10:48 -08:00
David Greenspan
577e1b6b12
Fix #392 - Spark.isolate prints stack trace
...
Isolates would print a stack trace upon re-render
if their DOM nodes had been manually removed from
the DOM without called Spark.finalize.
2013-01-02 18:07:58 -08:00
David Glasser
2d7d419ef8
Add a comment about the now-undocumented meteor run --once.
2013-01-02 17:48:43 -08:00
David Glasser
f3940cab78
Use Python instead of Perl.
2013-01-02 17:26:59 -08:00
David Glasser
8231783d22
More sleep is always the answer! (Avoid race between listens.)
2013-01-02 14:11:24 -08:00
David Glasser
4f8032e577
cli-test: Error checking in mongo message test.
2013-01-02 13:54:34 -08:00
David Glasser
66b0e7caff
cli-test: Use perl instead of nc for portability.
2013-01-02 12:08:39 -08:00
David Glasser
45b7ff1c78
Yet more sleeps in cli-test.
2013-01-01 16:42:42 -08:00
David Glasser
6c04fab366
Make sleeps larger in cli-test.sh (cheap AWS instances are slow...)
2012-12-31 12:49:28 -08:00
David Glasser
dea8fc6d4d
More sleeps to help things work on Linux.
2012-12-31 12:43:15 -08:00
David Glasser
eee3352675
Make cli-test.sh pass on Linux.
2012-12-31 12:36:44 -08:00
David Glasser
238a7858e5
admin/cli-test.sh --global should use 'meteor' from $PATH, not hardcode
...
/usr/local/bin.
2012-12-31 12:24:29 -08:00
David Glasser
dd5bf80f5b
Make the modification needed for testing the updater simpler.
2012-12-31 11:48:44 -08:00
David Glasser
1c47ffa07f
admin/node.sh: Preserve node's exit code.
2012-12-31 01:54:54 -08:00
David Glasser
45a19ee918
Re-run app when --settings file changes.
2012-12-29 13:28:17 -08:00
David Glasser
617d3b7207
Update History.md.
2012-12-28 16:00:50 -08:00
David Glasser
4c5ea61beb
Merge branch 'devel' into release-0.5.3
...
Bring in Meteor.http.call JSON header improvement.
2012-12-28 15:59:30 -08:00
David Glasser
3bada2a9f9
If Meteor.http.call JSON-ifies the request body, default the Content-Type to
...
application/json.
This matches our heuristic for deciding whether to parse responses as JSON.
2012-12-28 15:58:41 -08:00
David Glasser
8a2328b27f
Fix lookup by fields beginning with numbers (broken by 2d2aaa808).
2012-12-27 16:32:55 -08:00
David Glasser
e4befac16f
copy-release-from-jenkins now takes care of setting URLs correctly in
...
s3://com.meteor.static/test/update/
2012-12-27 14:00:49 -08:00
David Glasser
a37f0707b5
Updates to History.md from last merge.
2012-12-27 13:40:27 -08:00