MobileMe: About subscribed calendars and the new MobileMe Calendar

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS MobileMe: About subscribed calendars and the new MobileMe Calendar
# 1  
Old 10-31-2010
MobileMe: About subscribed calendars and the new MobileMe Calendar

iCal can subscribe to various calendars, including some calendars provided by Apple or published by other MobileMe members. If you use the new MobileMe Calendar with Mac OS X v10.6.4 Snow Leopard, or with iOS 4 or later, you can sync these subscribed calendars via MobileMe from iCal to your iOS 4 device or other computers. Note: Subscriptions added on iOS devices will not sync to with MobileMe. iPads with iOS 3.2.x, me.com/calendar, and Windows with Microsoft Outlook will not display subscribed calendars synced with MobileMe.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Simple(3pm)						User Contributed Perl Documentation					       Simple(3pm)

NAME
Template::Plugin::Calendar::Simple - TT plugin for Calendar::Simple SYNOPSIS
[% USE cal = Calendar.Simple %] <table border="1"> [% FOREACH row = cal.rows %] <tr> [% FOREACH col = row %] <td>[% col || '&nbsp;' %]</td> [% END %] </tr> [% END %] </table> DESCRIPTION
This is a first stab at a Calendar::Simple plugin for Template Toolkit. METHODS
rows [% FOREACH row = cal.rows %] Returns a Template::Iterator which contains the calendar rows. Each row, however, is simply an array. days [% FOREACH day = cal.days %] Most calendars have a header with the days - this method returns an array of abbreviated day names (currently only in English). If any argument is passed, then the week day starts with Monday instead of Sunday. BUGS
If you have found a bug, typo, etc. please visit Best Practical Solution's CPAN bug tracker at http://rt.cpan.org: <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Template-Plugin-Calendar-Simple> or send mail to <bug-Template-Plugin-Calendar-Simple#rt.cpan.org> (you got this far ... you can figure out how to make that a valid address ... and note that i won't respond to bugs sent to my personal address any longer) AUTHOR
Jeffrey Hayes Anderson SEE ALSO
Template::Plugin, Calendar::Simple. COPYRIGHT
Copyright (c) 2004 Jeffrey Hayes Anderson. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MER- CHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. perl v5.8.8 2006-11-22 Simple(3pm)