Net-ICal

 view release on metacpan or  search on metacpan

ChangeLog.detailed  view on Meta::CPAN

	
	- On startup, we now look for an iCal file we've saved out, and we
	try to use it first before setting up some default calendar
	objects. FIXME: For some reason, this routine isn't recognizing the
	iCal we output to a file as valid iCalendar text.

2001-02-21 19:56  srl

	* examples/gtk_todo.pl: Added a few bugfixes:
	
	- put the button for the popup dialog into the action_area, where
	it's supposed to go.  - added use of Date::Parse to fix the bug
	with editing start dates.
	
	I'm going to start refining the date editing by using a Gnome
	widget next. Thanks to LotR for pointing these bits out to me.

2001-02-21 17:08  srl

	* examples/gtk_todo.pl: Added a new example: a Todo editor written
	with the Gtk widget set.  This is a good example of the kind of

examples/gtk_todo.pl  view on Meta::CPAN

		$todo->$item( $entry->get_text() );
	}	

	#print "set temp value for  todo summary to " . $todo->summary . "\n";
}



### callback to save our changes back to the main calendar and the main window. 
sub saveTodo {
	my ($entry, $todo, $row, $clist, $popup) = @_;
	
	$cal->todos->[$row] = $todo;
	$clist->set_text($row, 0, $todo->summary);
	$clist->set_text($row, 1, scalar $todo->dtstart->as_localtime );
	$popup->destroy();
}



( run in 0.709 second using v1.01-cache-2.11-cpan-364913b4093 )