Summary | I can�t see the attendees and the description of a event |
Queue | Kronolith |
Queue Version | Git master |
Type | Enhancement |
State | Duplicate |
Priority | 2. Medium |
Owners | |
Requester | manoli.cano (at) upcnet (dot) es |
Created | 05/18/2006 (6989 days ago) |
Due | |
Updated | 11/10/2009 (5717 days ago) |
Assigned | |
Resolved | 10/14/2009 (5744 days ago) |
Milestone | |
Patch | No |
the same Horde server.
belonging to the same Horde organization than the organizer, can see
the others attendees of the meeting. This feature covers typical
internal-company meeting scenarios.
Our users are asking for the same feature : who's part of the meeting
and have they accepted.
on the same Horde server.
Even with this limitation, it seems valuable that attendees belonging
to the same Horde organization than the organizer, can see the others
attendees of the meeting. This feature covers typical internal-company
meeting scenarios.
Sorry to comeback on this topic, but we are really looking for a solution.
Regards
Patrick
attendees from the organizer calendar by using the event_uid (which
is common between the organizer and the attendees).
the same Horde server.
have access to the organizer's calendar?
Our proposal was to create a new driver function which retrieves the
attendees from the organizer calendar by using the event_uid (which is
common between the organizer and the attendees).
Regards
Patrick
if they have accepted or declined the invitation ('don't want to go
to this meeting if boss declined'). So, in my point of view,
attendees list should no be duplicated into all the attendee events,
but should stay unique in the organizer event.
have access to the organizer's calendar?
Ticket: 3965Ticket: 6269
Tickey: 8396
User who has accepted an invitation wants to see others attendees and
if they have accepted or declined the invitation ('don't want to go to
this meeting if boss declined'). So, in my point of view, attendees
list should no be duplicated into all the attendee events, but should
stay unique in the organizer event. Regards
Patrick
State ⇒ Duplicate
Ticket: 3965Ticket: 6269
Tickey: 8396
and then locking the attendee list and disallow the notifications?
now), and is also on my todo list.
and then locking the attendee list and disallow the notifications?
metadata. Actually shouldn't we already have that for the purposes of
sending responses? Displaying that seems right.
Also fwiw, other calendar clients do show the list of attendees; you
just can't change it if you're not the organizer. Though some systems
do allow attendees to invite other attendees.
Version ⇒ Git master
Kronolith, besides the reasoning that the previous ticket was rejected
(
Ticket: 1059) still stands. Basically, once you have the list ofattendees attached to the event, you would be able to modify and send
notifications to all attendees... this is not desirable behavior as
only the organizer should be able to notify all attendees.
We have the same request from our users. Here is a proposal for
providing this feature.
1) In kronolith/lib/Driver/sql.php
Create a new function for retrieving $attendees from the organizer event.
function getOrgAttendees($eventUid)
{
$query = "SELECT event_attendees" .
" FROM " . $this->_params['table'] . " WHERE event_uid = ?" .
" AND event_attendees <> 'a:0:{}'";
$values = array($eventUid);
$attendees = $this->_db->getRow($query, $values, DB_FETCHMODE_ASSOC);
if (is_a($attendees, 'PEAR_Error')) {
Horde::logMessage($attendees, __FILE__, __LINE__, PEAR_LOG_ERR);
return $attendees;
}
return unserialize($attendees['event_attendees']);
}
2) In kronolith/lib/Views/Event.php
modify the html() function:
$status = Kronolith::statusToString($this->event->getStatus());
$attendees = $this->event->getAttendees();
+ if (empty($attendees) == true)
+ {
+ $orgAttendees =
$GLOBALS['kronolith_driver']->getOrgAttendees($this->event->getUID());
+ }
3) kronolith/templates/view/view.inc
Add some html code for displaying $orgAttendees.
<?php if (!empty($orgAttendees)): ?>
..
Thanks for your advise on this feature.
Regars
Patrick
find any other tiquet related with this.
Thanks.
ticket where this enhancement was rejected. I want to know the reason
because this enhancement was rejected.
Thanks in advance
State ⇒ Rejected
Priority ⇒ 2. Medium
State ⇒ New
Queue ⇒ Kronolith
Summary ⇒ I can´t see the attendees and the description of a event
Type ⇒ Enhancement
created for my) I see it in my calendar but I can´t see the
description and the list of the attendees of the event.
I thint is very important to know what other people are invited to the
event and the description. Is there any way to see this information?.
I find it will be interesting to see the description and the list of
attendees in the same way that I can see this information when I
display the event that was created for my.