[otrs-cvs] Calendar/Kernel/System CalendarEvent.pm,1.12,1.13

cvs-log at otrs.org cvs-log at otrs.org
Tue Mar 4 11:16:29 GMT 2008


Comments:
Update of /home/cvs/Calendar/Kernel/System
In directory lancelot:/tmp/cvs-serv5335/Kernel/System

Modified Files:
	CalendarEvent.pm 
Log Message:
Fixed typos in pod.

Author: martin

Index: CalendarEvent.pm
===================================================================
RCS file: /home/cvs/Calendar/Kernel/System/CalendarEvent.pm,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** CalendarEvent.pm	15 Jan 2007 22:16:58 -0000	1.12
--- CalendarEvent.pm	4 Mar 2008 11:16:24 -0000	1.13
***************
*** 1,5 ****
  # --
  # Kernel/System/CalendarEvent.pm - manage all calendar events
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
--- 1,5 ----
  # --
  # Kernel/System/CalendarEvent.pm - manage all calendar events
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
  # --
  # $Id$
***************
*** 7,11 ****
  # 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.
  # --
  
--- 7,11 ----
  # 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-2.0.txt.
  # --
  
***************
*** 98,102 ****
          SequenceEndTime => 'Normal', #Yearly Weekly Monthly
          State => 'Meeting',
!         ParticipantIDs => [123, 1, 2, 3]
          OrganizerID => 123,
          UserID => 123,
--- 98,102 ----
          SequenceEndTime => 'Normal', #Yearly Weekly Monthly
          State => 'Meeting',
!         ParticipantIDs => [123, 1, 2, 3],
          OrganizerID => 123,
          UserID => 123,
***************
*** 110,114 ****
      my %DBParam = ();
      # check needed stuff
!     foreach (qw(Title Description Location StartTime EndTime SequenceEndTime State ParticipantIDs OrganizerID UserID)) {
          if (!defined ($Param{$_})) {
              $Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
--- 110,114 ----
      my %DBParam = ();
      # check needed stuff
!     foreach (qw(Title Location StartTime EndTime SequenceEndTime State ParticipantIDs OrganizerID UserID)) {
          if (!defined ($Param{$_})) {
              $Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
***************
*** 224,228 ****
      my %DBParam = ();
      # check needed stuff
!     foreach (qw(EventID Title Description Location StartTime EndTime SequenceEndTime SequenceType State OrganizerID UserID)) {
          if (!defined ($Param{$_})) {
              $Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
--- 224,228 ----
      my %DBParam = ();
      # check needed stuff
!     foreach (qw(EventID Title Location StartTime EndTime SequenceEndTime SequenceType State OrganizerID UserID)) {
          if (!defined ($Param{$_})) {
              $Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
***************
*** 510,514 ****
  get events in time slot
  
!     my %Event = $CalendarEventObject->Events(
          StartTime => '1977-10-27 20:15:00',
          EndTime => '1977-10-27 21:00:00',
--- 510,514 ----
  get events in time slot
  
!     my @EventIDs = $CalendarEventObject->Events(
          StartTime => '1977-10-27 20:15:00',
          EndTime => '1977-10-27 21:00:00',
***************
*** 518,522 ****
  or get events where array of user ids are involed
  
!     my %Event = $CalendarEventObject->Events(
          StartTime => '1977-10-27 20:15:00',
          EndTime => '1977-10-27 21:00:00',
--- 518,522 ----
  or get events where array of user ids are involed
  
!     my @EventIDs = $CalendarEventObject->Events(
          StartTime => '1977-10-27 20:15:00',
          EndTime => '1977-10-27 21:00:00',
***************
*** 525,528 ****
--- 525,537 ----
      );
  
+ in @EventIDs are hash references with the following keys
+ 
+     EventID
+     Title
+     Description
+     StartTime
+     EndTime
+     State
+ 
  =cut
  
***************
*** 914,918 ****
  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.
  
  =cut
--- 923,927 ----
  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-2.0.txt.
  
  =cut
***************
*** 922,924 ****
  $Revision$ $Date$
  
! =cut
\ No newline at end of file
--- 931,933 ----
  $Revision$ $Date$
  
! =cut


More information about the cvs-log mailing list