[Rt-commit] rt branch, admin_ui, updated. f08ece2c153bb9f6c4c04804a75b9f0de3b4e430
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Mon Jan 11 03:08:56 EST 2010
The branch, admin_ui has been updated
via f08ece2c153bb9f6c4c04804a75b9f0de3b4e430 (commit)
from 37896d32109f234c2b8edfa1633bb573c296ca55 (commit)
Summary of changes:
share/html/Elements/GnuPG/KeyIssues | 2 +-
share/html/Elements/ShowMemberships | 2 +-
share/html/Ticket/Elements/EditWatchers | 4 ++--
share/html/Ticket/Elements/ShowRequestor | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
- Log -----------------------------------------------------------------
commit f08ece2c153bb9f6c4c04804a75b9f0de3b4e430
Author: sunnavy <sunnavy at bestpractical.com>
Date: Mon Jan 11 16:08:48 2010 +0800
update pages that involves /Admin
diff --git a/share/html/Elements/GnuPG/KeyIssues b/share/html/Elements/GnuPG/KeyIssues
index f5ac71e..0a11815 100644
--- a/share/html/Elements/GnuPG/KeyIssues
+++ b/share/html/Elements/GnuPG/KeyIssues
@@ -67,7 +67,7 @@
% foreach my $issue ( @$issues ) {
<li>
% if ( $issue->{'user'} ) {
-User <a href="<% RT->config->get('web_path') %>/Admin/Users/Modify.html?id=<% $issue->{'user'}->id %>"><&/Elements/ShowUser, user => $issue->{'user'} &></a> has a problem.
+User <a href="<% RT->config->get('web_path') %>/admin/users/edit?id=<% $issue->{'user'}->id %>"><&/Elements/ShowUser, user => $issue->{'user'} &></a> has a problem.
% } else {
There is a problem with key(s) for address <% $issue->{'email'} %>, but there is no user in the DB for this address.
% }
diff --git a/share/html/Elements/ShowMemberships b/share/html/Elements/ShowMemberships
index 2c50f28..6619b25 100644
--- a/share/html/Elements/ShowMemberships
+++ b/share/html/Elements/ShowMemberships
@@ -50,7 +50,7 @@
% my $Group = RT::Model::Group->new( current_user => Jifty->web->current_user );
% $Group->load($GroupMember->group_id) or next;
% if ($Group->domain eq 'UserDefined') {
-<li><a href="<%RT->config->get('web_path')%>/Admin/Groups/Modify.html?id=<% $Group->id %>"><% $Group->name %></a></li>
+<li><a href="<%RT->config->get('web_path')%>/admin/groups/edit?id=<% $Group->id %>"><% $Group->name %></a></li>
% } elsif ($Group->domain eq 'SystemInternal') {
<li><em><% _($Group->type) %></em></li>
% }
diff --git a/share/html/Ticket/Elements/EditWatchers b/share/html/Ticket/Elements/EditWatchers
index 377fce4..9e8f146 100755
--- a/share/html/Ticket/Elements/EditWatchers
+++ b/share/html/Ticket/Elements/EditWatchers
@@ -57,14 +57,14 @@
<li>
<input type="checkbox" class="checkbox" name="Ticket-DeleteWatcher-Type-<% $watchers->type %>-Principal-<% $watcher->member_id %>" value="1" unchecked />
% if ( $member->isa( 'RT::Model::User' ) ) {
-<a href="<% RT->config->get('web_path') %>/Admin/Users/Modify.html?id=<% $watcher->member_id %>">
+<a href="<% RT->config->get('web_path') %>/admin/users/edit?id=<% $watcher->member_id %>">
<& /Elements/ShowUser, user => $member &></a>
% if ($ticket_obj and grep { $_->content eq $member->email } $ticket_obj->squelch_mail_to) {
<b><&|/l&>(Will not be sent email)</&></b>
% }
% } else {
-<a href="<% RT->config->get('web_path') %>/Admin/Groups/Modify.html?id=<% $watcher->member_id %>">
+<a href="<% RT->config->get('web_path') %>/admin/groups/edit?id=<% $watcher->member_id %>">
<% $member->name %></a>
% }
</li>
diff --git a/share/html/Ticket/Elements/ShowRequestor b/share/html/Ticket/Elements/ShowRequestor
index a95a7e3..b781669 100755
--- a/share/html/Ticket/Elements/ShowRequestor
+++ b/share/html/Ticket/Elements/ShowRequestor
@@ -60,7 +60,7 @@ while ( my $requestor = $people->next ) {
</%PERL>
<&| /Widgets/TitleBox,
- title_href => $has_right_adminusers? RT->config->get('web_path')."/Admin/Users/Modify.html?id=".$requestor->id: undef,
+ title_href => $has_right_adminusers? RT->config->get('web_path')."/admin/users/edit?id=".$requestor->id: undef,
title_raw => _("More about %1", $name),
class => 'ticket-info-requestor'
&>
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list