Dão Gottwald
7412b86381
Bug 1248268 - Add option for disabling the "Recently Bookmarked" UI. r=mak
2016-04-29 13:43:59 +02:00
Marco Bonardo
c805b3d790
Bug 1251446 - Can't delete more than 300 items from history treeviews. r=trivial-typo-fix
...
MozReview-Commit-ID: CoMlnL0Wwht
2016-02-26 16:16:48 +01:00
Dave Townsend
a2ba043d69
Bug 1245649: Turn on no-trailing-spaces. r=Gijs
2016-02-03 14:22:33 -08:00
Marco Bonardo
2456bebdca
Bug 1230471 - Basic eslint fixes in places. r=mconley
2015-12-10 06:46:49 -05:00
simplyblue
eebafcf9e3
Bug 1228976 - Remove array comprehensions from Places .r=mak
2015-12-03 16:26:58 +05:30
Hassen ben tanfous
aa7b48bf89
Bug 1074804 - Replace arrays .indexOf with .includes in Places. r=mak
2015-10-11 20:24:32 +02:00
Kapeel Sable
d5d674fd3c
Bug 1212171 - Change for referencing a different object Component.utils. instead of Cu. r=mak
2015-10-08 06:53:00 +02:00
Tooru Fujisawa
735dfed4e6
Bug 1207491 - Part 10: Remove use of expression closure from browser/components/places/content/. r=Gijs
2015-09-23 18:36:21 +09:00
Shu-yu Guo
37989840cd
Bug 1202902 - Mass replace toplevel 'let' with 'var' in preparation for global lexical scope. (rs=jorendorff)
2015-09-15 11:19:45 -07:00
Marco Bonardo
19425c3f03
Bug 1095411 - PlacesUtils.wrapNode is using synchronous getKeywordForBookmark. r=ttaubert
2015-05-22 19:02:41 +02:00
Asaf Romano
d911d456eb
Bug 951651 - Make bookmarkProperties, Star UI and Library info pane work with PlacesTransactions. r=mak
2015-04-23 16:34:55 +03:00
Carsten "Tomcat" Book
a4d1b4af8a
Backed out changeset 7f9114a84892 (bug 951651) for bc2 test bustage on a CLOSED TREE
2015-04-23 08:52:56 +02:00
Asaf Romano
823f1fa468
Bug 951651 - Make bookmarkProperties, Star UI and Library info pane work with PlacesTransactions. r=mak.
2015-04-23 08:15:21 +03:00
Marco Bonardo
0c56948218
Bug 1144571 - Pasting multiple bookmarks should retain their order. r=ttaubert
2015-03-28 14:00:11 +01:00
Tom Schuster
24216f65f0
Bug 821724 - Implement a menuitem for places/bookmarks to open them in a private window. r=mak
2015-01-13 21:18:33 +01:00
Marco Bonardo
77be050825
Bug 1095069 - Cannot copy or delete bookmarks from search results in library. r=mano
2014-11-13 10:19:19 +01:00
Asaf Romano
1fb486c62a
Bug 982115 - PlacesTransactions: (1) Decouple |transact| and |batch|, and make batch work like Task.spawn, rather than the custom solution we had so far (yielding transactions rather than calling |transact| for the batched transactions). so that |transact| may be called during a batch from any function, not limiting the batch 'context' to the function passed to |batch|; (2) Rename the uri input property to URL, and allow passing DOM URL objects for it (in addition to plain specs and nsIURI objects) - this matches recent Bookmark.jsm and History.jsm work; (3) Improve the module documentation. r=mak.
2014-11-10 10:36:56 +02:00
Gijs Kruitbosch
476bf86d60
Bug 1090609 - don't disable open in tabs when there's only one item there, r=mak
2014-11-03 10:44:47 +00:00
Asaf Romano
fbed712ada
Bug 1068671 - folderReadOnly doesn't pertain to bookmarks or results. r=mak
2014-10-14 17:03:28 +03:00
Carsten "Tomcat" Book
720b2367b9
Backed out changeset b30d47d94a85 (bug 1068671) for bc1 test failures
2014-10-01 13:14:06 +02:00
Asaf Romano
ce0d37a700
Bug 1068671 - Remove 'read-only' folders support from places. r=mak
2014-10-01 12:19:06 +03:00
Asaf Romano
99e55486ac
Bug 1070503 - Async Places Transactions: Delete command implementation. r=mak.
2014-09-23 09:11:26 +03:00
Asaf Romano
88912b1ad3
Bug 1069235 - make guid and parentGuid naming consistent. r=mak
2014-09-20 10:57:34 +03:00
Asaf Romano
cb0b83af93
Fix the 'bustage' of browser_parsable_script.js coming from bug 1067954 by whitelisting controller.js. It broke due to bug 1015578 (see mak's comment 2 there). CLOSED TREE
2014-09-19 18:23:20 +03:00
Asaf Romano
a9fb56da73
Bug 1067956 - Async Places Transactions: Drop functionality. r=mak.
2014-09-19 17:04:51 +03:00
Asaf Romano
acc27114a6
Bug 1067954 - Async Places Transactions: Paste functionality. r=mak
2014-09-19 16:53:27 +03:00
Gijs Kruitbosch
9ace2cd351
Bug 1006989 - hide and disable cut/copy/delete/properties when opening bookmarks context menu with no selection, r=mano
2014-06-05 15:28:07 +01:00
Jim Blandy
39dc0c6097
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
Asaf Romano
199cfe7699
Bug 993391 - Places async transactions: Implement "move bookmarks" command. r=mak.
2014-04-22 08:42:23 +03:00
Tetsuharu OHZEKI
a2ad59c326
Bug 994188 - Fix "ReferenceError: Cu is not defined" in browser/components/places/content/controller.js. r=mak
2014-04-12 01:11:10 +09:00
Asaf Romano
3f90880910
Bug 993274 - Remove cmd_new:livemark. r=mak
2014-04-08 12:05:26 +03:00
Asaf Romano
790ffe3a69
Bug 983623 - Implement cmd_un/redo for the new async TM. r=mak
2014-04-08 11:42:06 +03:00
Carsten "Tomcat" Book
929aad6275
Backed out changeset 3fbf2620c5de (bug 983623) for mochitest-other bustage
2014-04-08 09:35:04 +02:00
Asaf Romano
c8c880a7f0
Bug 984900 - Places async transactions: Implement 'sort by name' ui command. r=mak
2014-04-08 09:14:49 +03:00
Asaf Romano
42b4eb2288
Bug 984898 - Places async transactions: Implement 'new separator' ui command. r=mak
2014-04-08 09:07:03 +03:00
Asaf Romano
a36d27c81c
Bug 983623 - Implement cmd_un/redo for the new async TM. r=mak
2014-04-08 08:55:46 +03:00
Asaf Romano
510d9e8b24
Bug 983623 - Async transactions: Add a preference for turning it, implement undo & redo commands. r=mak
2014-03-15 23:49:07 +02:00
Marco Bonardo
fd265057ac
Bug 969318 - Mute "A promise chain failed to handle a rejection" error from the livemarks service. r=mano
2014-03-12 16:24:23 +01:00
Marco Bonardo
fdf569a8fe
Bug 435851 - dragging a folder shortcut drags the concrete folder instead. r=mano
2014-03-04 21:44:21 +01:00
Peter Van der Beken
511907d28c
Bug 803106 part 2. Convert DOMStringList to WebIDL bindings - add WebIDL API and switch. r=bzbarsky
2013-07-09 13:54:21 -04:00
Sushant Hiray
7e7a7540ec
Bug 887320 - Modify deprecated yield without value to yield undefined. r=mak
2013-07-02 15:49:06 -04:00
Matthew Noorenberghe
35baddfd39
Bug 888570 - Lazily load ForgetAboutSite.jsm from browser/components/places/content/controller.js. r=jaws
2013-06-30 21:12:26 -04:00
Marco Bonardo
1e3da3a614
Bug 561450 - Stop supporting session ids in Places.
...
r=Mano sr=gavin
2013-03-25 14:44:41 +01:00
Daniel Holbert
2e7dcc2c1f
Bug 835543 part 2: Remove deprecated interface nsINavHistoryFullVisitResultNode. r=mak
2013-01-29 14:30:13 -08:00
Ehsan Akhgari
5ab06de081
Bug 817477 - Remove support for global private browsing mode; r=jdm,glandium
2013-01-29 13:12:13 -05:00
Asaf Romano
ac391c4070
Bug 832949 - Disable common Organize options when the Downloads view is in use. r=mak.
2013-01-23 21:19:08 +02:00
Ehsan Akhgari
2fd664b499
Bug 823580 - Remove PlacesUIUtils.privateBrowsing usages in per-window PB builds; r=jdm
2012-12-20 12:41:52 -05:00
David Zbarsky
7bc4615075
Bug 797419 - Fix strict mode warnings in controller.js r=mak
2012-10-10 15:20:39 -04:00
Ehsan Akhgari
46ecde5c63
Bug 799126 - Rename ClearRecentHistory to ForgetAboutSite; r=jdm
2012-10-08 11:55:41 -04:00
Ehsan Akhgari
4b3e52c721
Bug 774963 - Remove removeDataFromDomain from nsIPrivateBrowsingService, and put it in its own JS module, ClearRecentHistory; r=jdm
2012-10-03 11:29:10 -04:00