cvs-log | 1 May 2005 19:33

[otrs-cvs] CVS: otrs/scripts apache2-httpd.include.conf,1.9,1.10

Update of /home/cvs/otrs/scripts
In directory osser:/tmp/cvs-serv2466/scripts

Modified Files:
	apache2-httpd.include.conf 
Log Message:
improved with AllowOverride None and Order, Allow

Index: apache2-httpd.include.conf
===================================================================
RCS file: /home/cvs/otrs/scripts/apache2-httpd.include.conf,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** apache2-httpd.include.conf	30 Apr 2005 08:16:58 -0000	1.9
--- apache2-httpd.include.conf	1 May 2005 17:33:51 -0000	1.10
***************
*** 17,20 ****
--- 17,21 ----
  <Location /otrs>
  #  ErrorDocument 403 /otrs/customer.pl
+   AllowOverride None
    ErrorDocument 403 /otrs/index.pl
    SetHandler  perl-script
***************
*** 22,25 ****
--- 23,28 ----
    Options +ExecCGI
    PerlOptions +ParseHeaders
+   Order allow,deny
(Continue reading)

cvs-log | 1 May 2005 19:35

[otrs-cvs] CVS: otrs/scripts suse-otrs-9.1.spec,1.5,1.6

Update of /home/cvs/otrs/scripts
In directory osser:/tmp/cvs-serv2533/scripts

Modified Files:
	suse-otrs-9.1.spec 
Log Message:
added install of apache2-httpd.include.conf

Index: suse-otrs-9.1.spec
===================================================================
RCS file: /home/cvs/otrs/scripts/suse-otrs-9.1.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** suse-otrs-9.1.spec	30 Apr 2005 08:19:29 -0000	1.5
--- suse-otrs-9.1.spec	1 May 2005 17:35:16 -0000	1.6
***************
*** 69,72 ****
--- 69,74 ----
  ln -s ../../etc/init.d/otrs $RPM_BUILD_ROOT/usr/sbin/rcotrs

+ install -m 644 scripts/apache2-httpd.include.conf $RPM_BUILD_ROOT/etc/apache2/conf.d/otrs.conf
+ 
  # set permission
  export OTRSUSER=otrs

_______________________________________________
OTRS mailing list: cvs-log - Web-CVS http://cvs.otrs.org/
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/cvs-log

(Continue reading)

cvs-log | 1 May 2005 19:41

[otrs-cvs] CVS: otrs/Kernel/System Ticket.pm,1.166,1.167

Update of /home/cvs/otrs/Kernel/System
In directory osser:/tmp/cvs-serv2636/Kernel/System

Modified Files:
	Ticket.pm 
Log Message:
improved merge feature

Index: Ticket.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/Ticket.pm,v
retrieving revision 1.166
retrieving revision 1.167
diff -C2 -r1.166 -r1.167
*** Ticket.pm	25 Apr 2005 09:31:22 -0000	1.166
--- Ticket.pm	1 May 2005 17:41:09 -0000	1.167
***************
*** 568,574 ****
--- 568,580 ----
      $Subject =~ s/\[$TicketHook:$Param{TicketNumber}\] //g;
      $Subject =~ s/\[$TicketHook$TicketHookDivider$Param{TicketNumber}\] //g;
+     if ($Self->{ConfigObject}->Get('Ticket::SubjectCleanAllNumbers')) {
+         $Subject =~ s/\[$TicketHook$TicketHookDivider\d+?\] //g;
+     }
      $Subject =~ s/$TicketHook: $Param{TicketNumber} //g;
      $Subject =~ s/$TicketHook:$Param{TicketNumber} //g;
      $Subject =~ s/$TicketHook$TicketHookDivider$Param{TicketNumber} //g;
+     if ($Self->{ConfigObject}->Get('Ticket::SubjectCleanAllNumbers')) {
+         $Subject =~ s/$TicketHook$TicketHookDivider\d+? //g;
+     }
(Continue reading)

cvs-log | 1 May 2005 19:41

[otrs-cvs] CVS: otrs/Kernel/Config/Files Ticket.pm,1.9,1.10

Update of /home/cvs/otrs/Kernel/Config/Files
In directory osser:/tmp/cvs-serv2636/Kernel/Config/Files

Modified Files:
	Ticket.pm 
Log Message:
improved merge feature

Index: Ticket.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/Config/Files/Ticket.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** Ticket.pm	22 Apr 2005 08:47:10 -0000	1.9
--- Ticket.pm	1 May 2005 17:41:08 -0000	1.10
***************
*** 21,24 ****
--- 21,28 ----
      $Self->{'Ticket::SubjectRe'} = 'Re';

+     # Ticket::SubjectCleanAllNumbers
+     # (remove all ticket numbers, not just the current ticket number, from subject)
+     $Self->{'Ticket::SubjectCleanAllNumbers'} = 0;
+ 
      # CustomQueue
      # (The name of custom queue.)
***************
*** 511,514 ****
--- 515,524 ----
(Continue reading)

cvs-log | 1 May 2005 19:41

[otrs-cvs] CVS: otrs/Kernel/Modules AgentTicketMerge.pm,1.1,1.2

Update of /home/cvs/otrs/Kernel/Modules
In directory osser:/tmp/cvs-serv2636/Kernel/Modules

Modified Files:
	AgentTicketMerge.pm 
Log Message:
improved merge feature

Index: AgentTicketMerge.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/Modules/AgentTicketMerge.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** AgentTicketMerge.pm	22 Apr 2005 08:44:37 -0000	1.1
--- AgentTicketMerge.pm	1 May 2005 17:41:08 -0000	1.2
***************
*** 13,16 ****
--- 13,17 ----

  use strict;
+ use Kernel::System::CustomerUser;

  use vars qw($VERSION);
***************
*** 37,40 ****
--- 38,43 ----
      }

+     $Self->{CustomerUserObject} = Kernel::System::CustomerUser->new(%Param);
(Continue reading)

cvs-log | 1 May 2005 19:41

[otrs-cvs] CVS: otrs/Kernel/Output/HTML/Lite AgentTicketMerge.dtl, 1.1, 1.2

Update of /home/cvs/otrs/Kernel/Output/HTML/Lite
In directory osser:/tmp/cvs-serv2636/Kernel/Output/HTML/Lite

Modified Files:
	AgentTicketMerge.dtl 
Log Message:
improved merge feature

Index: AgentTicketMerge.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Lite/AgentTicketMerge.dtl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** AgentTicketMerge.dtl	22 Apr 2005 08:44:37 -0000	1.1
--- AgentTicketMerge.dtl	1 May 2005 17:41:08 -0000	1.2
***************
*** 47,51 ****
      <input type="hidden" name="Subaction" value="Merge">
      <input type="hidden" name="TicketID" value="$Data{"TicketID"}">
!     <table border="0" width="500" align="center" cellspacing="0" cellpadding="4">
        <tr>
         <td colspan="2" class="contenthead">$Text{"Options"}</td>
--- 47,51 ----
      <input type="hidden" name="Subaction" value="Merge">
      <input type="hidden" name="TicketID" value="$Data{"TicketID"}">
!     <table border="0" width="700" align="center" cellspacing="0" cellpadding="4">
        <tr>
         <td colspan="2" class="contenthead">$Text{"Options"}</td>
***************
(Continue reading)

cvs-log | 1 May 2005 19:41

[otrs-cvs] CVS: otrs/Kernel/Output/HTML/Standard AgentTicketMerge.dtl,1.1,1.2

Update of /home/cvs/otrs/Kernel/Output/HTML/Standard
In directory osser:/tmp/cvs-serv2636/Kernel/Output/HTML/Standard

Modified Files:
	AgentTicketMerge.dtl 
Log Message:
improved merge feature

Index: AgentTicketMerge.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AgentTicketMerge.dtl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** AgentTicketMerge.dtl	22 Apr 2005 08:44:37 -0000	1.1
--- AgentTicketMerge.dtl	1 May 2005 17:41:09 -0000	1.2
***************
*** 47,51 ****
      <input type="hidden" name="Subaction" value="Merge">
      <input type="hidden" name="TicketID" value="$Data{"TicketID"}">
!     <table border="0" width="500" align="center" cellspacing="0" cellpadding="4">
        <tr>
         <td colspan="2" class="contenthead">$Text{"Options"}</td>
--- 47,51 ----
      <input type="hidden" name="Subaction" value="Merge">
      <input type="hidden" name="TicketID" value="$Data{"TicketID"}">
!     <table border="0" width="700" align="center" cellspacing="0" cellpadding="4">
        <tr>
         <td colspan="2" class="contenthead">$Text{"Options"}</td>
***************
(Continue reading)

cvs-log | 1 May 2005 19:42

[otrs-cvs] CVS: otrs/Kernel/System/LinkObject Ticket.pm,1.3,1.4

Update of /home/cvs/otrs/Kernel/System/LinkObject
In directory osser:/tmp/cvs-serv2840/Kernel/System/LinkObject

Modified Files:
	Ticket.pm 
Log Message:
iproved ticket full text search

Index: Ticket.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/LinkObject/Ticket.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** Ticket.pm	15 Feb 2005 11:58:13 -0000	1.3
--- Ticket.pm	1 May 2005 17:42:08 -0000	1.4
***************
*** 119,122 ****
--- 119,123 ----
      my  <at> ResultWithData = ();
      if ($Param{TicketFulltext}) {
+         $Param{TicketFulltext} = '*'.$Param{TicketFulltext}.'*';
          %Search = (
              From => $Param{TicketFulltext},

_______________________________________________
OTRS mailing list: cvs-log - Web-CVS http://cvs.otrs.org/
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/cvs-log

(Continue reading)

cvs-log | 1 May 2005 19:43

[otrs-cvs] CVS: otrs/Kernel/System/GenericAgent NotifyAgentGroupOfCustomQueue.pm,1.5,1.6

Update of /home/cvs/otrs/Kernel/System/GenericAgent
In directory osser:/tmp/cvs-serv2880/Kernel/System/GenericAgent

Modified Files:
	NotifyAgentGroupOfCustomQueue.pm 
Log Message:
just send notifications in working times

Index: NotifyAgentGroupOfCustomQueue.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/GenericAgent/NotifyAgentGroupOfCustomQueue.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** NotifyAgentGroupOfCustomQueue.pm	10 Dec 2004 09:17:43 -0000	1.5
--- NotifyAgentGroupOfCustomQueue.pm	1 May 2005 17:43:21 -0000	1.6
***************
*** 1,5 ****
  # --
  # Kernel/System/GenericAgent/NotifyAgentGroupOfCustomQueue.pm - generic agent notifications
! # Copyright (C) 2001-2004 Martin Edenhofer <martin+code <at> otrs.org>
  # --
  # $Id$
--- 1,5 ----
  # --
  # Kernel/System/GenericAgent/NotifyAgentGroupOfCustomQueue.pm - generic agent notifications
! # Copyright (C) 2001-2005 Martin Edenhofer <martin+code <at> otrs.org>
  # --
  # $Id$
***************
(Continue reading)

cvs-log | 1 May 2005 20:45

[otrs-cvs] CVS: otrs/Kernel/Output/HTML/Lite InstallerFinish.dtl, 1.6, 1.7

Update of /home/cvs/otrs/Kernel/Output/HTML/Lite
In directory osser:/tmp/cvs-serv3580/Kernel/Output/HTML/Lite

Modified Files:
	InstallerFinish.dtl 
Log Message:
added mod_perl check

Index: InstallerFinish.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Lite/InstallerFinish.dtl,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** InstallerFinish.dtl	12 Apr 2003 23:04:26 -0000	1.6
--- InstallerFinish.dtl	1 May 2005 18:45:12 -0000	1.7
***************
*** 1,5 ****
  # --
  # InstallerFinish.dtl - provides HTML form for Installer
! # Copyright (C) 2002-2003 Martin Edenhofer <martin+code <at> otrs.org>
  # --
  # $Id$
--- 1,5 ----
  # --
  # InstallerFinish.dtl - provides HTML form for Installer
! # Copyright (C) 2001-2005 Martin Edenhofer <martin+code <at> otrs.org>
  # --
  # $Id$
***************
(Continue reading)


Gmane