[Rt-commit] rt branch, 4.0-trunk, updated. rt-4.0.10-131-g5f26708

Thomas Sibley trs at bestpractical.com
Thu Mar 21 15:07:15 EDT 2013


The branch, 4.0-trunk has been updated
       via  5f2670871d64a78ee2a33596cccf6ae9d7557ecc (commit)
       via  ca919c1d58ce5ee6d0e3d8f55d07fff72fc59413 (commit)
       via  f4069e5637a92de949d02c982117c2f58acfed85 (commit)
       via  47c9dd1a8c435159dc3fba044982a0b333dfe0fb (commit)
       via  d6c77df1bf7732457dcbc838a24f516b9956bb6e (commit)
       via  76338412300f42e5d7830b59af2df79c3925a3f4 (commit)
       via  4ff29385a4feaa50af9773ab8cd33d8eded4b84e (commit)
      from  27428ec8e1b3caa12a547895e04ceb249e7221f4 (commit)

Summary of changes:
 lib/RT/{Interface/Web/QueryBuilder.pm => I18N/de.pm} | 9 +++++++--
 share/html/NoAuth/css/print.css                      | 5 ++---
 2 files changed, 9 insertions(+), 5 deletions(-)
 copy lib/RT/{Interface/Web/QueryBuilder.pm => I18N/de.pm} (95%)

- Log -----------------------------------------------------------------
commit 4ff29385a4feaa50af9773ab8cd33d8eded4b84e
Author: Christian Loos <github at netsandbox.de>
Date:   Tue Mar 19 09:33:57 2013 +0100

    remove non-existing style id's
    
    This is an leftover from RT 3.8 menu.

diff --git a/share/html/NoAuth/css/print.css b/share/html/NoAuth/css/print.css
index 9c3fe00..99442e2 100644
--- a/share/html/NoAuth/css/print.css
+++ b/share/html/NoAuth/css/print.css
@@ -81,8 +81,6 @@ div#header h1 {
 }
 
 #quickbar,
-#nav,
-#page-menu,
 #main-navigation,
 #page-navigation,
 .titlebox-title .widget,

commit 76338412300f42e5d7830b59af2df79c3925a3f4
Author: Christian Loos <github at netsandbox.de>
Date:   Tue Mar 19 09:38:07 2013 +0100

    remove always the right element from titlebox
    
    This element contains information that never would be worth printing.

diff --git a/share/html/NoAuth/css/print.css b/share/html/NoAuth/css/print.css
index 99442e2..a6b4add 100644
--- a/share/html/NoAuth/css/print.css
+++ b/share/html/NoAuth/css/print.css
@@ -84,9 +84,8 @@ div#header h1 {
 #main-navigation,
 #page-navigation,
 .titlebox-title .widget,
-.ticket-info-links .titlebox-title .right,
+.titlebox-title .right,
 .ticket-info-links .titlebox-content .create,
-.history .titlebox .titlebox-title .right,
 .ticket-transaction .metadata .actions,
 .ticket-transaction .content .downloadattachment,
 #comp-Search-Results #body .refresh,

commit d6c77df1bf7732457dcbc838a24f516b9956bb6e
Author: Christian Loos <github at netsandbox.de>
Date:   Tue Mar 19 11:20:06 2013 +0100

    Fix display of numbers for german language

diff --git a/lib/RT/I18N/de.pm b/lib/RT/I18N/de.pm
new file mode 100644
index 0000000..fd467ba
--- /dev/null
+++ b/lib/RT/I18N/de.pm
@@ -0,0 +1,65 @@
+# BEGIN BPS TAGGED BLOCK {{{
+#
+# COPYRIGHT:
+#
+# This software is Copyright (c) 1996-2013 Best Practical Solutions, LLC
+#                                          <sales at bestpractical.com>
+#
+# (Except where explicitly superseded by other copyright notices)
+#
+#
+# LICENSE:
+#
+# This work is made available to you under the terms of Version 2 of
+# the GNU General Public License. A copy of that license should have
+# been provided with this software, but in any event can be snarfed
+# from www.gnu.org.
+#
+# This work is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+# 02110-1301 or visit their web page on the internet at
+# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
+#
+#
+# CONTRIBUTION SUBMISSION POLICY:
+#
+# (The following paragraph is not intended to limit the rights granted
+# to you to modify and distribute this software under the terms of
+# the GNU General Public License and is only of importance to you if
+# you choose to contribute your changes and enhancements to the
+# community by submitting them to Best Practical Solutions, LLC.)
+#
+# By intentionally submitting any modifications, corrections or
+# derivatives to this work, or any other work intended for use with
+# Request Tracker, to Best Practical Solutions, LLC, you confirm that
+# you are the copyright holder for those contributions and you grant
+# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
+# royalty-free, perpetual, license to use, copy, create derivative
+# works based on those contributions, and sublicense and distribute
+# those contributions and any derivatives thereof.
+#
+# END BPS TAGGED BLOCK }}}
+
+use strict;
+use warnings;
+
+package RT::I18N::de;
+use base 'RT::I18N';
+
+sub numf {
+    my ($handle, $num) = @_[0,1];
+    my $de_num = $handle->SUPER::numf($num);
+    $de_num =~ tr<.,><,.>
+        if ref($handle) and not $handle->{'numf_comma'};
+    return $de_num;
+}
+
+RT::Base->_ImportOverlays();
+
+1;

commit 47c9dd1a8c435159dc3fba044982a0b333dfe0fb
Author: Christian Loos <github at netsandbox.de>
Date:   Wed Mar 20 18:31:47 2013 +0100

    switch from tr to set numf_comma

diff --git a/lib/RT/I18N/de.pm b/lib/RT/I18N/de.pm
index fd467ba..b8352da 100644
--- a/lib/RT/I18N/de.pm
+++ b/lib/RT/I18N/de.pm
@@ -52,12 +52,8 @@ use warnings;
 package RT::I18N::de;
 use base 'RT::I18N';
 
-sub numf {
-    my ($handle, $num) = @_[0,1];
-    my $de_num = $handle->SUPER::numf($num);
-    $de_num =~ tr<.,><,.>
-        if ref($handle) and not $handle->{'numf_comma'};
-    return $de_num;
+sub init {
+    $_[0]->{numf_comma} = 1;
 }
 
 RT::Base->_ImportOverlays();

commit f4069e5637a92de949d02c982117c2f58acfed85
Author: Christian Loos <github at netsandbox.de>
Date:   Wed Mar 20 22:52:43 2013 +0100

    correct #app-nav name and bring back #page-menu
    
    as suggested by tsibley

diff --git a/share/html/NoAuth/css/print.css b/share/html/NoAuth/css/print.css
index a6b4add..ecd7021 100644
--- a/share/html/NoAuth/css/print.css
+++ b/share/html/NoAuth/css/print.css
@@ -81,6 +81,8 @@ div#header h1 {
 }
 
 #quickbar,
+#app-nav,
+#page-menu,
 #main-navigation,
 #page-navigation,
 .titlebox-title .widget,

commit ca919c1d58ce5ee6d0e3d8f55d07fff72fc59413
Merge: 27428ec 47c9dd1
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Thu Mar 21 12:00:41 2013 -0700

    Merge remote-tracking branch 'github/pr/53' into 4.0-trunk


commit 5f2670871d64a78ee2a33596cccf6ae9d7557ecc
Merge: ca919c1 f4069e5
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Thu Mar 21 12:04:30 2013 -0700

    Merge remote-tracking branch 'github/pr/52' into 4.0-trunk


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


More information about the Rt-commit mailing list