[Rt-commit] rt branch, master, updated. rt-4.2.12-343-g4e467df

Dustin Graves dustin at bestpractical.com
Wed Oct 28 15:48:47 EDT 2015


The branch, master has been updated
       via  4e467df0d490310e9a77f27230d0fb449581f26d (commit)
       via  a32996af406391d4107a6817dfffd35a0698d44a (commit)
       via  dcc563706d6dbfeb030e3ce9a7924eb4fc26c4a0 (commit)
       via  bee77440f641af0b1889656aede735b37bdf357a (commit)
      from  542efdf97687b55ee537cbeb4892a12b036bf386 (commit)

Summary of changes:
 etc/RT_Config.pm.in             | 6 +++---
 share/static/css/rudder/nav.css | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

- Log -----------------------------------------------------------------
commit bee77440f641af0b1889656aede735b37bdf357a
Author: Christian Loos <cloos at netcologne.de>
Date:   Tue Oct 27 09:32:54 2015 +0100

    use MiB instead of MB for attachment config options
    
    Attachment size is shown in MiB in the web interface.
    So it makes sense to also use MiB for attachment related config options.

diff --git a/etc/RT_Config.pm.in b/etc/RT_Config.pm.in
index 94b1f7c..291b5e3 100644
--- a/etc/RT_Config.pm.in
+++ b/etc/RT_Config.pm.in
@@ -393,7 +393,7 @@ read.
 
 =cut
 
-Set($MaxAttachmentSize, 10_000_000);  # 10M
+Set($MaxAttachmentSize, 10*1024*1024);  # 10MiB
 
 =item C<$TruncateLongAttachments>
 
@@ -2567,7 +2567,7 @@ Certain object types, like values for Binary (aka file upload) custom
 fields, are always put into external storage. However, for other
 object types, like images and text, there is a line in the sand where
 you want small objects in the database but large objects in external
-storage. By default, objects larger than 10 MB will be put into external
+storage. By default, objects larger than 10 MiB will be put into external
 storage. C<$ExternalStorageCutoffSize> adjusts that line in the sand.
 
 Note that changing this setting does not affect existing attachments, only
@@ -2575,7 +2575,7 @@ the new ones that C<sbin/rt-externalize-attachments> hasn't seen yet.
 
 =cut
 
-Set($ExternalStorageCutoffSize, 10_000_000);
+Set($ExternalStorageCutoffSize, 10*1024*1024);
 
 =item C<$ExternalStorageDirectLink>
 

commit dcc563706d6dbfeb030e3ce9a7924eb4fc26c4a0
Author: Christian Loos <cloos at netcologne.de>
Date:   Tue Oct 27 11:17:50 2015 +0100

    avoid 'new ticket in' button width changes on focus
    
    The intention of 3db1895 was to change the width of the search input,
    not the width of the 'new ticket in' button.

diff --git a/share/static/css/rudder/nav.css b/share/static/css/rudder/nav.css
index 277aeb2..ad48366 100644
--- a/share/static/css/rudder/nav.css
+++ b/share/static/css/rudder/nav.css
@@ -147,7 +147,7 @@
     transition: width 0.25s ease-in-out;
 }
 
-#topactions input:focus {
+#topactions #simple-search input:focus {
     width: 16em;
     -webkit-transition: width 0.25s ease-in-out;
     -moz-transition: width 0.25s ease-in-out;

commit a32996af406391d4107a6817dfffd35a0698d44a
Merge: 542efdf bee7744
Author: Dustin Graves <dustin at ivangraves.com>
Date:   Wed Oct 28 15:37:26 2015 -0400

    Merge pull request #162 from cloos/4.4/attachment-size-config
    
    use MiB instead of MB for attachment config options


commit 4e467df0d490310e9a77f27230d0fb449581f26d
Merge: a32996a dcc5637
Author: Dustin Graves <dustin at ivangraves.com>
Date:   Wed Oct 28 15:38:46 2015 -0400

    Merge pull request #164 from cloos/4.4/topaction-layout
    
    avoid 'new ticket in' button width changes on focus


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


More information about the rt-commit mailing list