cvs-log | 7 Oct 2003 00:39

[otrs-cvs] CVS: otrs/scripts/test - New directory

Update of /home/cvs/otrs/scripts/test
In directory esanta:/tmp/cvs-serv3974/scripts/test

Log Message:
Directory /home/cvs/otrs/scripts/test added to the repository

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

cvs-log | 7 Oct 2003 00:39

[otrs-cvs] CVS: otrs/scripts/test CustomerBackend.pl,NONE,1.1 UserAuth.pl,NONE,1.1

Update of /home/cvs/otrs/scripts/test
In directory esanta:/tmp/cvs-serv4010/scripts/test

Added Files:
	CustomerBackend.pl UserAuth.pl 
Log Message:
test files

--- NEW FILE ---
#!/usr/bin/perl -w
# --
# scripts/test/CustomerBackend.pl - test script of customer backend
# Copyright (C) 2003 Martin Edenhofer <martin+code <at> otrs.org>
# --
# $Id: CustomerBackend.pl,v 1.1 2003/10/06 22:39:47 martin Exp $
# --
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
# --
(Continue reading)

cvs-log | 7 Oct 2003 01:16

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

Update of /home/cvs/otrs/scripts
In directory esanta:/tmp/cvs-serv5752/scripts

Modified Files:
	apache-httpd.include.conf 
Log Message:
added "PerlSetupEnv On" - default is on!

Index: apache-httpd.include.conf
===================================================================
RCS file: /home/cvs/otrs/scripts/apache-httpd.include.conf,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** apache-httpd.include.conf	13 Jul 2003 19:28:20 -0000	1.9
--- apache-httpd.include.conf	6 Oct 2003 23:16:35 -0000	1.10
***************
*** 21,24 ****
--- 21,25 ----
    Options ExecCGI
    PerlSendHeader On
+   PerlSetupEnv On
  </Location>

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

cvs-log | 7 Oct 2003 09:35

[otrs-cvs] CVS: otrs/Kernel/System Auth.pm,1.16,1.17

Update of /home/cvs/otrs/Kernel/System
In directory esanta:/tmp/cvs-serv20457/Kernel/System

Modified Files:
	Auth.pm 
Log Message:
removed last line

Index: Auth.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/Auth.pm,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** Auth.pm	13 Jul 2003 11:01:21 -0000	1.16
--- Auth.pm	7 Oct 2003 07:35:38 -0000	1.17
***************
*** 64,66 ****

  1;
- 
--- 64,65 ----

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

cvs-log | 7 Oct 2003 09:38

[otrs-cvs] CVS: otrs/Kernel/System/Auth LDAPNew.pm,NONE,1.1

Update of /home/cvs/otrs/Kernel/System/Auth
In directory esanta:/tmp/cvs-serv20556/Kernel/System/Auth

Added Files:
	LDAPNew.pm 
Log Message:
new ldap modules with AD referals support

--- NEW FILE ---
# --
# Kernel/System/Auth/LDAPNew.pm - provides the ldap authentification (for AD with referals) 
# Copyright (C) 2002-2003 Martin Edenhofer <martin+code <at> otrs.org>
# --
# $Id: LDAPNew.pm,v 1.1 2003/10/07 07:38:16 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see 
# the enclosed file COPYING for license information (GPL). If you 
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
# Note: 
# available objects are: ConfigObject, LogObject and DBObject
# --

package Kernel::System::Auth::LDAPNew;

use strict;
use Net::LDAP qw(:all);

use vars qw($VERSION);
$VERSION = '$Revision: 1.1 $';
(Continue reading)

cvs-log | 7 Oct 2003 09:38

[otrs-cvs] CVS: otrs/Kernel/System/CustomerUser LDAPNew.pm, NONE, 1.1

Update of /home/cvs/otrs/Kernel/System/CustomerUser
In directory esanta:/tmp/cvs-serv20556/Kernel/System/CustomerUser

Added Files:
	LDAPNew.pm 
Log Message:
new ldap modules with AD referals support

--- NEW FILE ---
# --
# Kernel/System/CustomerUser/LDAPNew.pm - some customer user functions in LDAP (for AD with referals)
# Copyright (C) 2002 Wiktor Wodecki <wiktor.wodecki <at> net-m.de>
# Copyright (C) 2002-2003 Martin Edenhofer <martin+code <at> otrs.org>
# --
# $Id: LDAPNew.pm,v 1.1 2003/10/07 07:38:16 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --

package Kernel::System::CustomerUser::LDAPNew;

use strict;
use Net::LDAP qw(:all);

use vars qw( <at> ISA $VERSION);
$VERSION = '$Revision: 1.1 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;

(Continue reading)

cvs-log | 7 Oct 2003 10:10

[otrs-cvs] CVS: otrs/scripts/test CustomerUserAuth.pl,NONE,1.1

Update of /home/cvs/otrs/scripts/test
In directory esanta:/tmp/cvs-serv21747/scripts/test

Added Files:
	CustomerUserAuth.pl 
Log Message:
new test script

--- NEW FILE ---
#!/usr/bin/perl -w
# --
# scripts/test/CustomerUserAuth.pl - test script of user auth 
# Copyright (C) 2003 Martin Edenhofer <martin+code <at> otrs.org>
# --
# $Id: CustomerUserAuth.pl,v 1.1 2003/10/07 08:10:55 martin Exp $
# --
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
# --
(Continue reading)

cvs-log | 7 Oct 2003 10:11

[otrs-cvs] CVS: otrs/Kernel/System/CustomerAuth LDAPNew.pm, NONE, 1.1

Update of /home/cvs/otrs/Kernel/System/CustomerAuth
In directory esanta:/tmp/cvs-serv21797/Kernel/System/CustomerAuth

Added Files:
	LDAPNew.pm 
Log Message:
new ldap module for AD with referals

--- NEW FILE ---
# --
# Kernel/System/CustomerAuth/LDAPNew.pm - provides the ldap authentification (for AD with referals) 
# Copyright (C) 2002-2003 Martin Edenhofer <martin+code <at> otrs.org>
# --
# $Id: LDAPNew.pm,v 1.1 2003/10/07 08:11:45 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see 
# the enclosed file COPYING for license information (GPL). If you 
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
# Note: 
# available objects are: ConfigObject, LogObject and DBObject
# --

package Kernel::System::CustomerAuth::LDAPNew; 

use strict;
use Net::LDAP qw(:all);

use vars qw($VERSION);
$VERSION = '$Revision: 1.1 $';
(Continue reading)

cvs-log | 7 Oct 2003 10:13

[otrs-cvs] CVS: otrs/Kernel/Output/HTML/Lite AgentPhoneNew.dtl, 1.18, 1.19

Update of /home/cvs/otrs/Kernel/Output/HTML/Lite
In directory esanta:/tmp/cvs-serv21900/Kernel/Output/HTML/Lite

Modified Files:
	AgentPhoneNew.dtl 
Log Message:
added invalid to option

Index: AgentPhoneNew.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Lite/AgentPhoneNew.dtl,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** AgentPhoneNew.dtl	14 Mar 2003 08:24:19 -0000	1.18
--- AgentPhoneNew.dtl	7 Oct 2003 08:13:52 -0000	1.19
***************
*** 54,61 ****
  <table border="0" width="100%" cellspacing="0" cellpadding="3" cols="2">
  <tr>
!   <td align="left" class="table2"> 
      <b>$Env{"Box0"}$Text{"Phone call"} / $Text{"new ticket"}$Env{"Box1"}</b>
    </td>
!   <td align="right" class="table2">
      <b>-</b>
    </td>
--- 54,61 ----
  <table border="0" width="100%" cellspacing="0" cellpadding="3" cols="2">
  <tr>
!   <td align="left" class="table0"> 
(Continue reading)

cvs-log | 7 Oct 2003 10:13

[otrs-cvs] CVS: otrs/Kernel/Output/HTML/Standard AgentPhoneNew.dtl, 1.20, 1.21

Update of /home/cvs/otrs/Kernel/Output/HTML/Standard
In directory esanta:/tmp/cvs-serv21900/Kernel/Output/HTML/Standard

Modified Files:
	AgentPhoneNew.dtl 
Log Message:
added invalid to option

Index: AgentPhoneNew.dtl
===================================================================
RCS file: /home/cvs/otrs/Kernel/Output/HTML/Standard/AgentPhoneNew.dtl,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** AgentPhoneNew.dtl	30 Mar 2003 18:30:35 -0000	1.20
--- AgentPhoneNew.dtl	7 Oct 2003 08:13:52 -0000	1.21
***************
*** 92,96 ****
    <tr>
      <td>$Text{"To"}:</td>
!     <td>$Data{"ToStrg"}</td>
    </td>
    </tr>
--- 92,96 ----
    <tr>
      <td>$Text{"To"}:</td>
!     <td>$Data{"ToStrg"} <font color="red" size="-2">$Text{"$Data{"Destination invalid"}"}</font></td>
    </td>
    </tr>

(Continue reading)


Gmane