Commit Graph

9 Commits

Author SHA1 Message Date
Jim Blandy
7e20285e70 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
John Hu
90461dda1b Bug 949944 - [B2G][Helix][Browser][Wallpaper] Use new File([blob], filename) to return a blob with filename when picking. r=fabrice 2014-01-06 16:07:18 +08:00
Andrea Marchesini
79731ad42a Bug 920905 - DOMFile.name is used to show the filename in the b2g filepicker, r=fabrice 2013-12-12 19:27:55 +00:00
Tomasz Szatkowski
25921341ff Bug 945952 - Fix uploading of files with empty MIME type. r=fabrice
--HG--
extra : rebase_source : 3a5f56c241d98cc9a472cf94add10ae4d8f88fcb
2013-12-10 10:14:39 -05:00
Andrea Marchesini
fe73b73366 Bug 935273 - B2G filePicker.js uses nocrop when no filters are set. r=dflanagan 2013-12-03 15:44:45 -05:00
Andrea Marchesini
5c87204805 Bug 935273 - Force nocrop property in FilePicker for b2g. r=fabrice 2013-12-02 22:37:03 -05:00
Jonathan Watt
f8cb2eb37d Bug 894840, part 2 - Get rid of the nsFilePickerShownCallback ctor's aMulti argument by exposing nsIFilePicker.mode. r=mounir 2013-07-22 13:46:27 +01:00
Andrea Marchesini
f69f6d9241 Bug 884878 - Add support for multiple accept filters in input type=file. r=mounir 2013-06-26 10:15:28 -04:00
Andrea Marchesini
ccfb81cfa0 Bug 832923 - Implement <input type='file'> on B2G, r=mounir, r=fabrice 2013-03-19 18:49:16 +01:00