import rt 3.6.4
[freeside.git] / rt / etc / upgrade / 3.5.1 / content
1 @Attributes = (
2     { Name => 'Search - My Tickets',
3       Description => '[_1] highest priority tickets I own',
4       Content     =>
5       { Format => "'<a href=\"__WebPath__/Ticket/Display.html?id=__id__\">__id__</a>/TITLE:#', '<a href=\"__WebPath__/Ticket/Display.html?id=__id__\">__Subject__</a>/TITLE:Subject', Priority, QueueName, ExtendedStatus",
6         Query   => " Owner = '__CurrentUser__' AND ( Status = 'new' OR Status = 'open')",
7         OrderBy => 'Priority',
8         Order   => 'DESC' },
9     },
10     { Name => 'Search - Unowned Tickets',
11       Description => '[_1] newest unowned tickets',
12       Content     =>
13       { Format => "'<a href=\"__WebPath__/Ticket/Display.html?id=__id__\">__id__</a>/TITLE:#', '<a href=\"__WebPath__/Ticket/Display.html?id=__id__\">__Subject__</a>/TITLE:Subject', QueueName, ExtendedStatus, CreatedRelative, '<A HREF=\"__WebPath__/Ticket/Display.html?Action=Take&id=__id__\">__loc(Take)__</a>/TITLE:&nbsp;' ",
14         Query   => " Owner = 'Nobody' AND ( Status = 'new' OR Status = 'open')",
15         OrderBy => 'Created',
16         Order   => 'DESC' },
17     },
18     { Name => 'HomepageSettings',
19       Description => 'HomepageSettings',
20       Content =>
21       { 'body' =>
22         [ { type => 'system', name => 'My Tickets' },
23           { type => 'system', name => 'Unowned Tickets' },
24           { type => 'component',  name => 'QuickCreate'},
25         ],
26         'summary' =>
27         [ 
28           { type => 'component', name => 'MyReminders' },
29           { type => 'component', name => 'Quicksearch' },
30           { type => 'component', name => 'RefreshHomepage' },
31         ]
32     },
33 }
34 );
35
36 1;