[haiku-commits] haiku: hrev52685 - src/data/mime_db/text

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 25 Dec 2018 13:47:21 -0500 (EST)

hrev52685 adds 1 changeset to branch 'master'
old head: ab6bcb08bc02e083c22d514fc09ba5330bf2c8b7
new head: 0ca55d11ebd68f1d5139031d6bd6795e1344dfb3
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=0ca55d11ebd6+%5Eab6bcb08bc02

----------------------------------------------------------------------------

0ca55d11ebd6: x-mail MIME: make Subject attribute editable
  
  Fixes #2832
  
  For details, please check the comments to ticket #2832.
  In short: while not needed normally, it'd be nice to be able to edit
  the subject attribute, for example when the sender accidentally forgot
  to enter a subject or made an especially awkward typo that would spoil
  querying for it.
  
  Also: sentence casing the attribute name to "Reply to".
  Change-Id: I41e0ebade25d550d0cb260c0dfebd4b9c1c8b34c
  Reviewed-on: https://review.haiku-os.org/793
  Reviewed-by: Adrien Destugues <pulkomandy@xxxxxxxxxxxxx>

                                        [ Humdinger <humdingerb@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev52685
Commit:      0ca55d11ebd68f1d5139031d6bd6795e1344dfb3
URL:         https://git.haiku-os.org/haiku/commit/?id=0ca55d11ebd6
Author:      Humdinger <humdingerb@xxxxxxxxx>
Date:        Sun Dec 23 15:52:37 2018 UTC
Committer:   waddlesplash <waddlesplash@xxxxxxxxx>
Commit-Date: Tue Dec 25 18:47:17 2018 UTC

Ticket:      https://dev.haiku-os.org/ticket/2832

----------------------------------------------------------------------------

1 file changed, 2 insertions(+), 2 deletions(-)
src/data/mime_db/text/x-email | 4 ++--

----------------------------------------------------------------------------

diff --git a/src/data/mime_db/text/x-email b/src/data/mime_db/text/x-email
index 35c19c6704..895302c994 100644
--- a/src/data/mime_db/text/x-email
+++ b/src/data/mime_db/text/x-email
@@ -40,7 +40,7 @@ resource(6, "META:ATTR_INFO") message(233) {
        "attr:public_name" = "To",
        "attr:public_name" = "Cc",
        "attr:public_name" = "From",
-       "attr:public_name" = "Reply To",
+       "attr:public_name" = "Reply to",
        "attr:public_name" = "Status",
        "attr:public_name" = "Priority",
        "attr:public_name" = "When",
@@ -69,7 +69,7 @@ resource(6, "META:ATTR_INFO") message(233) {
        "attr:viewable" = true,
        "attr:viewable" = true,
        "attr:editable" = false,
-       "attr:editable" = false,
+       "attr:editable" = true,
        "attr:editable" = false,
        "attr:editable" = false,
        "attr:editable" = false,


Other related posts:

  • » [haiku-commits] haiku: hrev52685 - src/data/mime_db/text - waddlesplash