
jesse at bestpractical
Feb 26, 2006, 5:51 PM
Post #1 of 1
(96 views)
Permalink
|
|
r4583 - in rtir/branches/1.9-EXPERIMENTAL: html/RTIR/Elements html/RTIR/Investigation/Elements
|
|
Author: jesse Date: Sun Feb 26 20:51:21 2006 New Revision: 4583 Modified: rtir/branches/1.9-EXPERIMENTAL/ (props changed) rtir/branches/1.9-EXPERIMENTAL/README rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Elements/Tabs rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Investigation/Elements/Create Log: r24755[at]truegrounds: jesse | 2006-02-26 20:50:17 -0500 * Removed a debugging statement, spiffed up the README, improved reporting for a basic installation screwup Modified: rtir/branches/1.9-EXPERIMENTAL/README ============================================================================== --- rtir/branches/1.9-EXPERIMENTAL/README (original) +++ rtir/branches/1.9-EXPERIMENTAL/README Sun Feb 26 20:51:21 2006 @@ -23,11 +23,11 @@ Changes since RTIR 1.0.x ------------------------ -Full integration with RT 3.4. +Full integration with RT 3.7. New Search UI - This includes a 3.4-style search UI, and menu changes to + This includes a 3.7-style search UI, and menu changes to accomodate this. Instead of search results and criteria being displayed on a single page, you can now choose the 'Refine' menu option to refine your search and re-run it after you've @@ -59,7 +59,7 @@ REQUIRED PACKAGES: ------------------ -o RT 3.4.0 or later, configured, installed and tested. +o RT 3.7.0 or later, configured, installed and tested. o The Business::Hours module (version 0.05 or later) @@ -80,7 +80,7 @@ Installation instructions: -------------------------- -1) Once RT 3.4 and other required package have been installed and +1) Once RT 3.7 and other required package have been installed and appear to be working properly, cd to the directory into which you unpacked RTIR into. Modified: rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Elements/Tabs ============================================================================== --- rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Elements/Tabs (original) +++ rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Elements/Tabs Sun Feb 26 20:51:21 2006 @@ -38,6 +38,12 @@ <%INIT> +unless ( RT->Config->Get('rtirname') ) { + die q{Couldn't get an "rtirname" configuration variable. This usually only happens if you haven't sourced RTIR's default configuration file. Check out RTIR's README for details + }; + +} + my $toptabs = { A => { title => loc('RT'), path => '' }, Modified: rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Investigation/Elements/Create ============================================================================== --- rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Investigation/Elements/Create (original) +++ rtir/branches/1.9-EXPERIMENTAL/html/RTIR/Investigation/Elements/Create Sun Feb 26 20:51:21 2006 @@ -140,7 +140,6 @@ delete $ARGS{'DefaultsNamePrefix'}; delete $ARGS{'NamePrefix'}; -use Data::Dumper; $RT::Logger->crit(Dumper(\%ARGS)); #unless ($QueueObj->CurrentUserHasRight('CreateTicket')) { # Abort('You have no permission to create tickets in that queue.'); _______________________________________________ Rt-commit mailing list Rt-commit[at]lists.bestpractical.com http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-commit
|