Nathan Froyd
9ea6c585f8
Bug 1042878 - part 2 - move MOZ_CAIRO_CFLAGS et al additions to C*FLAGS into moz.build; r=glandium
2014-07-24 11:55:33 -04:00
Nathan Froyd
1023cdecbc
Bug 1042903 - declare jsdownloads's xpcshell data in manifests; r=glandium
2014-07-23 15:40:45 -04:00
Mike Hommey
d10b15b035
Bug 1041860 - Avoid setting FINAL_LIBRARY to libraries that further use a FINAL_LIBRARY. r=mshal
2014-07-23 08:37:51 +09:00
Monica Chew
d91ee6a4da
Bug 1038465: Fix bad merge to get rid of aSuggestedFilename (r=me)
2014-07-16 10:21:35 -07:00
Monica Chew
ff0a539b43
Bug 1038465: Pass suggested filename to application reputation query (r=paolo)
2014-07-15 13:46:52 -07:00
Ryan VanderMeulen
427eea561d
Backed out changeset 7441f4dde492 (bug 1038465) for hitting the network during tests.
2014-07-15 13:28:55 -04:00
Monica Chew
261ccc824f
Bug 1038465: Pass suggested filename to application reputation query (r=paolo)
2014-07-14 17:47:47 -07:00
Paolo Amadini
946fa0ce67
Bug 1023402 - API review for OS.File.setPermissions. r=Yoric
...
--HG--
rename : toolkit/components/osfile/tests/xpcshell/test_osfile_async_setPerms.js => toolkit/components/osfile/tests/xpcshell/test_osfile_async_setPermissions.js
2014-07-09 14:26:41 +01:00
Jim Blandy
4d6a633bba
Bug 914753: Make Emacs file variable header lines correct, or at least consistent. DONTBUILD r=ehsan
...
The -*- file variable lines -*- establish per-file settings that Emacs will
pick up. This patch makes the following changes to those lines (and touches
nothing else):
- Never set the buffer's mode.
Years ago, Emacs did not have a good JavaScript mode, so it made sense
to use Java or C++ mode in .js files. However, Emacs has had js-mode for
years now; it's perfectly serviceable, and is available and enabled by
default in all major Emacs packagings.
Selecting a mode in the -*- file variable line -*- is almost always the
wrong thing to do anyway. It overrides Emacs's default choice, which is
(now) reasonable; and even worse, it overrides settings the user might
have made in their '.emacs' file for that file extension. It's only
useful when there's something specific about that particular file that
makes a particular mode appropriate.
- Correctly propagate settings that establish the correct indentation
level for this file: c-basic-offset and js2-basic-offset should be
js-indent-level. Whatever value they're given should be preserved;
different parts of our tree use different indentation styles.
- We don't use tabs in Mozilla JS code. Always set indent-tabs-mode: nil.
Remove tab-width: settings, at least in files that don't contain tab
characters.
- Remove js2-mode settings that belong in the user's .emacs file, like
js2-skip-preprocessor-directives.
2014-06-24 22:12:07 -07:00
Benoit Jacob
5e258769e8
Bug 1028588 - Fix dangerous public destructors in toolkit/ - r=ehsan
2014-06-23 18:40:02 -04:00
Zack Weinberg
784c9abf3d
Bug 961080: apply umask upon completion of downloads. r=amadini
2014-06-20 19:54:06 -04:00
Paolo Amadini
7fa51b688f
Bug 983197 - Test that downloads fail with an HTTP/1.1 response shorter than the Content-Length. r=enn
2014-03-13 09:08:00 +00:00
Ghislain 'Aus' Lacroix
aa8897d8a2
bug 983747 - Add 'download' method to Browser API r=kanru,paolo
2014-06-09 10:51:25 -07:00
Ghislain 'Aus' Lacroix
7a9a70d04f
Backed out changeset ceb784b90138
2014-06-09 08:51:16 -07:00
Ghislain 'Aus' Lacroix
ac0fa028f4
bug 983747 - Add 'download' method to Browser API r=kanru,paolo
2014-06-09 08:34:54 -07:00
Monica Chew
b5a63e7b91
Bug 1011799: Integrate nsIRedirectChannel redirects into application reputation check
2014-05-28 16:06:21 -07:00
David Rajchenbach-Teller
64d7b9648b
Bug 1010277
- Fixed uncaught async error in test_DownloadImport.js. r=paolo
2014-05-14 08:39:00 +02:00
Masatoshi Kimura
9f49037ce6
Bug 1008778 - Respect Security Zone settings when the download manager marks a downloaded file. r=paolo
2014-05-15 06:58:35 +09:00
Hansu Kim
96648b485e
Bug 991977 - Ensure volume is mounted before starting download. r=dhylands
2014-04-23 17:50:00 -04:00
Birunthan Mohanathas
ff8ce9bd42
Bug 900908 - Part 3: Change uses of numbered macros in nsIClassInfoImpl.h/nsISupportsImpl.h to the variadic variants. r=froydnj
2014-04-27 03:06:00 -04:00
David Rajchenbach-Teller
447b372e9b
Bug 991038 - Uncaught async error in DownloadIntegration.jsm. r=paolo
2014-04-03 11:01:07 -04:00
Paolo Amadini
5a2734396d
Bug 941317 - Switch Downloads.jsm to use Promise.jsm. r=enn
2014-03-17 15:58:44 +01:00
Monica Chew
adb15d780a
Bug 977236 - Use referrer for application reputation checks. r=gcp
2014-03-12 20:31:51 -07:00
Paolo Amadini
29293f0cda
Bug 929067 - Canceling a download from the Downloads Panel sometimes pauses it instead. r=enn
2014-03-11 15:50:46 +01:00
Paolo Amadini
7906267d8e
Bug 941726 - Prevent DownloadLegacy from keeping a reference to the network request after the download is stopped. r=enn
2014-03-11 15:50:46 +01:00
Alexandre Lissy
d36cdd8dc7
Bug 973637 - Avoid crash at shutdown during make package. r=paolo
2014-02-17 17:00:36 +01:00
Gregory Szorc
5f7ff500d3
Bug 969021 - Part 1: Consolidate moz.build data into parent moz.build files; r=ted
...
Many moz.build files define things that could be defined in parent
moz.build files. Keeping the number of moz.build files low helps with
build times due to less I/O and fewer directories traversed.
This patch eliminates a lot of moz.build files by moving their content
into parent moz.build files.
--HG--
extra : rebase_source : 0cfdf2697d10532e5b03cd27fbaadb41f42b837c
extra : amend_source : 0119d4e4881217f105e0e4ba1dfa9c8f7295f3e9
extra : histedit_source : eb49e62c67af2005fdc08d9c9a07f56bee98d558%2C50951e960e450f9b0e48fc7e8ec369d8666a63b0
2014-02-06 13:00:20 -08:00
Monica Chew
85de3a65ab
Bug 928536: Integrate signature verification info into application reputation call in download manager (r=paolo)
2014-01-27 13:39:00 -08:00
Phil Ringnalda
68432f3df0
Backed out 3 changesets (bug 928536) for build bustage
...
CLOSED TREE
Backed out changeset 750054102e68 (bug 928536)
Backed out changeset baa309383864 (bug 928536)
Backed out changeset 1ff2aed7f76f (bug 928536)
2014-02-05 08:29:17 -08:00
Monica Chew
ab239b2b34
Bug 928536: Integrate signature verification info into application reputation call in download manager (r=paolo)
2014-01-27 13:39:00 -08:00
Roberto A. Vitillo
c94e7dddf3
Bug 960966 - Remove TelemetryPing.js from telemetry. r=Yoric, r=BenWa
2014-01-22 11:43:26 +00:00
Masatoshi Kimura
dca21c697c
Bug 952961 - Remove our own executable check and pref check, and added a regitry check when downloading a file. r=paolo
2014-01-12 17:05:28 +09:00
Andy Wingo
db3a35cb7d
Bug 945828 - Work around bug 945756. r=luke
2013-12-03 19:04:25 +01:00
Ryan VanderMeulen
d529bbd277
Backed out changeset 4cbb184bf6cb (bug 945828) for Linux64 debug xpcshell crashes.
2013-12-03 18:10:33 -05:00
Ryan VanderMeulen
375ca823e3
Merge m-c to inbound.
2013-12-03 17:42:20 -05:00
Andy Wingo
e2c13b49c9
Bug 945828 - Work around bug 945756. r=luke
2013-12-03 19:04:25 +01:00
Paolo Amadini
1be00c4aed
Bug 940408 - Rework DeferredTask to allow asynchronous tasks and support AsyncShutdown. r=Mossop
2013-12-03 13:21:08 +01:00
Carsten "Tomcat" Book
325e1c28d4
Backed out changeset 295b75fac0c8 (bug 940408) for test failures in B2g Desktop Linux & B2G ICS Emulator Opt
2013-12-03 12:53:27 +01:00
Carsten "Tomcat" Book
ed69377fa1
Backed out changeset 1e8f83c69e80 (bug 941317) for test failures in B2g Desktop Linux & B2G ICS Emulator Opt
2013-12-03 12:53:17 +01:00
Carsten "Tomcat" Book
f029eb2c91
Backed out changeset bc9014b4439a (bug 929067) for test failures in B2g Desktop Linux & B2G ICS Emulator Opt
2013-12-03 12:53:08 +01:00
Carsten "Tomcat" Book
2732f37b3a
Backed out changeset f785bf2e2c51 (bug 941726) for test failures in B2g Desktop Linux & B2G ICS Emulator Opt
2013-12-03 12:52:49 +01:00
Carsten "Tomcat" Book
2696630985
Merge m-c to fx-team
2013-12-03 10:44:31 +01:00
Paolo Amadini
e92a8b9d1d
Bug 941726 - Prevent DownloadLegacy from keeping a reference to the network request after the download is stopped. r=enn
2013-12-03 10:15:22 +01:00
Paolo Amadini
2edf54dc39
Bug 929067 - Canceling a download from the Downloads Panel sometimes pauses it instead. r=enn
2013-12-03 10:15:22 +01:00
Paolo Amadini
16214b9035
Bug 941317 - Switch Downloads.jsm to use Promise.jsm. r=enn
2013-12-03 10:15:22 +01:00
Paolo Amadini
1664144e6a
Bug 940408 - Rework DeferredTask to allow asynchronous tasks and support AsyncShutdown. r=Mossop
2013-12-03 10:15:22 +01:00
Mike Hommey
b4eb12b707
Bug 943728 - Convert several resource install using double quotes to INSTALL_TARGETS and editor/libeditor/html/tests to mochitest manifest. r=gps,r=mshal
2013-12-03 06:34:21 +09:00
Carsten "Tomcat" Book
45d2ff3464
Merge m-c to b2g-inbound
2013-11-28 14:48:55 +01:00
Fabrice Desré
619c5db6bd
Bug 938023 - Implement the download API : Part 2, implementation. r=auswerk
2013-11-27 23:18:08 -08:00
Felipe Gomes
5b12e7ad40
Bug 941099 - Default application handler is not correctly used when an alternate app handler exists. r=paolo
2013-11-28 00:57:05 -02:00