From ed1f84b4e8f626245995ecda5afcf83092c153b2 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Mon, 15 Sep 2014 20:44:48 -0700 Subject: RT 4.0.22 --- rt/share/html/NoAuth/css/.calendar.css.swp | Bin 0 -> 12288 bytes rt/share/html/NoAuth/css/aileron/ticket.css | 16 ---------------- rt/share/html/NoAuth/css/base/ticket.css | 3 +++ rt/share/html/NoAuth/iCal/dhandler | 5 ++--- rt/share/html/NoAuth/images/week-collapse.xcf | Bin 0 -> 1996 bytes rt/share/html/NoAuth/images/week-expand.xcf | Bin 0 -> 1621 bytes 6 files changed, 5 insertions(+), 19 deletions(-) create mode 100644 rt/share/html/NoAuth/css/.calendar.css.swp create mode 100644 rt/share/html/NoAuth/images/week-collapse.xcf create mode 100644 rt/share/html/NoAuth/images/week-expand.xcf (limited to 'rt/share/html/NoAuth') diff --git a/rt/share/html/NoAuth/css/.calendar.css.swp b/rt/share/html/NoAuth/css/.calendar.css.swp new file mode 100644 index 000000000..cbc46cd5e Binary files /dev/null and b/rt/share/html/NoAuth/css/.calendar.css.swp differ diff --git a/rt/share/html/NoAuth/css/aileron/ticket.css b/rt/share/html/NoAuth/css/aileron/ticket.css index 0d60f6ada..bc6315001 100644 --- a/rt/share/html/NoAuth/css/aileron/ticket.css +++ b/rt/share/html/NoAuth/css/aileron/ticket.css @@ -223,22 +223,6 @@ div#ticket-history .messagebody .messagebody{ .ticket-summary .titlebox-title .left a, .ticket-summary .titlebox-title .left a:visited { color: #fff;} -.unread-messages .titlebox , .unread-messages .titlebox-title .left { - border: 1px solid #99a; - border-right: 2px solid #aab; - border-bottom: 2px solid #aab; - -} - - -.unread-messages .titlebox { - background-color: #dde; -} - -.unread-messages .titlebox-title .left { - background-color: #cce; -} - .ticket-inactive { text-decoration: line-through; color: #666 diff --git a/rt/share/html/NoAuth/css/base/ticket.css b/rt/share/html/NoAuth/css/base/ticket.css index 6a43a1db1..d30b04645 100644 --- a/rt/share/html/NoAuth/css/base/ticket.css +++ b/rt/share/html/NoAuth/css/base/ticket.css @@ -143,4 +143,7 @@ display: none; } +.unread-messages .titlebox-content :link { + text-decoration: underline; +} diff --git a/rt/share/html/NoAuth/iCal/dhandler b/rt/share/html/NoAuth/iCal/dhandler index 35da94080..46c272921 100644 --- a/rt/share/html/NoAuth/iCal/dhandler +++ b/rt/share/html/NoAuth/iCal/dhandler @@ -48,7 +48,6 @@ <%init> use Data::ICal; use Data::ICal::Entry::Event; -use Encode (); my $path = $m->dhandler_arg; @@ -62,8 +61,8 @@ $notfound->() unless $path =~ m!^([^/]+)/([^/]+)/(.*)(\.(ical|ics))?!; my ($name, $auth, $search) = ($1, $2, $3); # Unescape parts $_ =~ s/\%([0-9a-z]{2})/chr(hex($1))/gei for $name, $search; -# convert to perl strings -$_ = Encode::decode_utf8( $_ ) for $name, $search; +# Decode from bytes to characters +$_ = Encode::decode( "UTF-8", $_ ) for $name, $search; my $user = RT::User->new( RT->SystemUser ); $user->Load( $name ); diff --git a/rt/share/html/NoAuth/images/week-collapse.xcf b/rt/share/html/NoAuth/images/week-collapse.xcf new file mode 100644 index 000000000..cbb2b95eb Binary files /dev/null and b/rt/share/html/NoAuth/images/week-collapse.xcf differ diff --git a/rt/share/html/NoAuth/images/week-expand.xcf b/rt/share/html/NoAuth/images/week-expand.xcf new file mode 100644 index 000000000..1ab8e65c8 Binary files /dev/null and b/rt/share/html/NoAuth/images/week-expand.xcf differ -- cgit v1.2.1