[freeside-commits] branch FREESIDE_4_BRANCH updated. 5de425c9529bc60cadf72e60164140f00047fb96
Ivan
ivan at 420.am
Fri Nov 13 13:08:08 PST 2015
The branch, FREESIDE_4_BRANCH has been updated
via 5de425c9529bc60cadf72e60164140f00047fb96 (commit)
from dba28013980fa1a27544c1dfe621a3cae323e881 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5de425c9529bc60cadf72e60164140f00047fb96
Author: Ivan Kohler <ivan at freeside.biz>
Date: Fri Nov 13 13:07:40 2015 -0800
rt 4.2.12
diff --git a/rt/configure b/rt/configure
index 599b464..b118e4f 100755
--- a/rt/configure
+++ b/rt/configure
@@ -1,7 +1,7 @@
#! /bin/sh
# From configure.ac Revision.
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for RT rt-4.2.11.
+# Generated by GNU Autoconf 2.69 for RT rt-4.2.12.
#
# Report bugs to <rt-bugs at bestpractical.com>.
#
@@ -580,8 +580,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='RT'
PACKAGE_TARNAME='rt'
-PACKAGE_VERSION='rt-4.2.11'
-PACKAGE_STRING='RT rt-4.2.11'
+PACKAGE_VERSION='rt-4.2.12'
+PACKAGE_STRING='RT rt-4.2.12'
PACKAGE_BUGREPORT='rt-bugs at bestpractical.com'
PACKAGE_URL=''
@@ -1324,7 +1324,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures RT rt-4.2.11 to adapt to many kinds of systems.
+\`configure' configures RT rt-4.2.12 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1385,7 +1385,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of RT rt-4.2.11:";;
+ short | recursive ) echo "Configuration of RT rt-4.2.12:";;
esac
cat <<\_ACEOF
@@ -1501,7 +1501,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-RT configure rt-4.2.11
+RT configure rt-4.2.12
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1518,7 +1518,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by RT $as_me rt-4.2.11, which was
+It was created by RT $as_me rt-4.2.12, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -1875,7 +1875,7 @@ rt_version_major=4
rt_version_minor=2
-rt_version_patch=11
+rt_version_patch=12
test "x$rt_version_major" = 'x' && rt_version_major=0
test "x$rt_version_minor" = 'x' && rt_version_minor=0
@@ -3662,7 +3662,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by RT $as_me rt-4.2.11, which was
+This file was extended by RT $as_me rt-4.2.12, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -3715,7 +3715,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-RT config.status rt-4.2.11
+RT config.status rt-4.2.12
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff --git a/rt/share/html/Elements/CryptStatus b/rt/share/html/Elements/CryptStatus
index b022b10..f2411a5 100644
--- a/rt/share/html/Elements/CryptStatus
+++ b/rt/share/html/Elements/CryptStatus
@@ -147,7 +147,7 @@ foreach my $run ( @runs ) {
push @messages, {
Tag => $protocol,
Classes => [qw/keycheck bad/],
- Value => loc( "Public key '0x[_1]' is required to verify signature", $line->{'Key'} ),
+ Value => $m->interp->apply_escapes( loc( "Public key '0x[_1]' is required to verify signature", $line->{'Key'} ), 'h'),
};
}
}
@@ -156,21 +156,21 @@ foreach my $run ( @runs ) {
push @messages, {
Tag => $protocol,
Classes => ['passphrasecheck', lc $line->{Status}],
- Value => loc( $line->{'Message'} ),
+ Value => $m->interp->apply_escapes( loc( $line->{'Message'} ), 'h'),
};
}
elsif ( $line->{'Operation'} eq 'Decrypt' ) {
push @messages, {
Tag => $protocol,
Classes => ['decrypt', lc $line->{Status}],
- Value => loc( $line->{'Message'} ),
+ Value => $m->interp->apply_escapes( loc( $line->{'Message'} ), 'h'),
};
}
elsif ( $line->{'Operation'} eq 'Verify' ) {
push @messages, {
Tag => $protocol,
Classes => ['verify', lc $line->{Status}, 'trust-'.($line->{Trust} || 'UNKNOWN')],
- Value => loc( $line->{'Message'} ),
+ Value => $m->interp->apply_escapes( loc( $line->{'Message'} ), 'h'),
};
}
else {
@@ -178,7 +178,7 @@ foreach my $run ( @runs ) {
push @messages, {
Tag => $protocol,
Classes => [lc $line->{Operation}, lc $line->{Status}],
- Value => loc( $line->{'Message'} ),
+ Value => $m->interp->apply_escapes( loc( $line->{'Message'} ), 'h'),
}
}
}
diff --git a/rt/share/static/js/util.js b/rt/share/static/js/util.js
index b665c0e..f6f5c3b 100644
--- a/rt/share/static/js/util.js
+++ b/rt/share/static/js/util.js
@@ -277,7 +277,7 @@ function toggle_addprincipal_validity(input, good, title) {
function update_addprincipal_title(title) {
var h3 = jQuery("#acl-AddPrincipal h3");
- h3.html( h3.text().replace(/: .*$/,'') + ": " + title );
+ h3.text( h3.text().replace(/: .*$/,'') + ": " + title );
}
// when a value is selected from the autocompleter
-----------------------------------------------------------------------
Summary of changes:
rt/configure | 20 ++++++++++----------
rt/share/html/Elements/CryptStatus | 10 +++++-----
rt/share/static/js/util.js | 2 +-
3 files changed, 16 insertions(+), 16 deletions(-)
More information about the freeside-commits
mailing list