Meeting Request Scheduling and Booking System 1.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Meeting Request Scheduling and Booking System 1.1 (Default branch)
Prev   Next
# 1  
Old 05-20-2008
Meeting Request Scheduling and Booking System 1.1 (Default branch)

The Meeting Request Scheduling and Booking System (MRSBS) allows a person to schedule a meeting with people who are not on the same (or any) calendaring system. The meeting host (or the host's delegate) prepares an invitation, specifying required and optional attendees, information about the meeting topic and duration, potential time slots, and potential locations. The invitation is sent to the invitees via email, and the invitees reply via a Web page with their availability. Once all replies have been received, MRSBS selects the best available time. Invitees are then notified with an RFC 2445 compliant iCalendar notification.License: GNU General Public License v2Changes:
This release improves presentation of long lists, adds search capabilities, displays recent invitees when building new invitations, allows invitees to view the invite list when replying, and offers a downloadable .ics file for scheduled meetings. In addition, a number of bugs have been fixed.Image

More...
 
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. SCO

Help request for SCO System V 3.2 R4.2 C language compiler

No, I need for research purposes the SCO C compiler for System V 3.2 R4.2 I need the SCO compiler not gcc version. This release did not come with the C compiler it came as another tool suite. Can someone help me please . Dr. Mariano Mendez Operating System Professor University of... (0 Replies)
Discussion started by: locovich
0 Replies
Login or Register to Ask a Question
HTTP::Request::AsCGI(3pm)				User Contributed Perl Documentation				 HTTP::Request::AsCGI(3pm)

NAME
HTTP::Request::AsCGI - Set up a CGI environment from an HTTP::Request VERSION
version 1.2 SYNOPSIS
use CGI; use HTTP::Request; use HTTP::Request::AsCGI; my $request = HTTP::Request->new( GET => 'http://www.host.com/' ); my $stdout; { my $c = HTTP::Request::AsCGI->new($request)->setup; my $q = CGI->new; print $q->header, $q->start_html('Hello World'), $q->h1('Hello World'), $q->end_html; $stdout = $c->stdout; # environment and descriptors will automatically be restored # when $c is destructed. } while ( my $line = $stdout->getline ) { print $line; } DESCRIPTION
Provides a convenient way of setting up an CGI environment from an HTTP::Request. METHODS
new ( $request [, key => value ] ) Constructor. The first argument must be a instance of HTTP::Request, followed by optional pairs of environment key and value. environment Returns a hashref containing the environment that will be used in setup. Changing the hashref after setup has been called will have no effect. setup Sets up the environment and descriptors. restore Restores the environment and descriptors. Can only be called after setup. request Returns the request given to constructor. response Returns a HTTP::Response. Can only be called after restore. stdin Accessor for handle that will be used for STDIN, must be a real seekable handle with an file descriptor. Defaults to a tempoary IO::File instance. stdout Accessor for handle that will be used for STDOUT, must be a real seekable handle with an file descriptor. Defaults to a tempoary IO::File instance. stderr Accessor for handle that will be used for STDERR, must be a real seekable handle with an file descriptor. SEE ALSO
examples directory in this distribution. WWW::Mechanize::CGI Test::WWW::Mechanize::CGI THANKS TO
Thomas L. Shinnick for his valuable win32 testing. AUTHORS
Christian Hansen <ch@ngmedia.com> Hans Dieter Pearcey <hdp@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Christian Hansen <ch@ngmedia.com>. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.10.1 2010-01-12 HTTP::Request::AsCGI(3pm)