Calendar and event links widgets bug - fix?

I was making some layout changes on some of our Calendar/Event pages and ran into this defect - TE-16868 - Added Collapsed option to Event Links and Calendar Links widgets

This was fixed in Version: 11.1.9.17830, but I'm not able to upgrade my community yet. Does anyone have the fix for the Event Links and Calendar Links widgets that I can add via Widget Studio? Or can anyone share exports from 11.1.9 or 11.1.10 of these widgets so that I can compare them to what I have in 11.1.2? 

Thanks!

  • Hey  !

    Here are exports from both of the noted widgets in the 11.1.10 release:

    <scriptedContentFragments>
    	<scriptedContentFragment name="${resource:Calendar_EventLinks_Name}" version="11.1.10.18802" description="${resource:Calendar_EventLinks_Description}" instanceIdentifier="68d781952e3f475ba6949577ca623604" theme="" isCacheable="false" varyCacheByUser="false" showHeaderByDefault="true" cssClass="event-links" lastModified="2021-08-12 21:44:44Z">
    		<contentScript language="Velocity"><![CDATA[$core_v2_page.AddLink('stylesheet', $core_v2_widget.GetExecutedFileUrl('style.less'), "%{ Position = 'AfterTheme' }")
    #set($currentGroup = $core_v2_group.Current)
    
    #if(!$currentGroup)
    	$core_v2_widget.Hide()
    #end
    
    #set ($collapse = $core_v2_widget.GetBoolValue('collapsed', false))
    #set($links = $core_v2_page.ParseQueryString($core_v2_widget.GetCustomValue('links','Link=eventSubscribe&amp;Link=eventEdit&amp;Link=viewRegistrations&amp;Link=cancelEvent&amp;Link=deleteEvent&amp;Link=download&amp;Link=rss&amp;Link=feature')))
    #set($hasLinks = false)
    #set($currentCalendar = $calendar_v1_calendars.Current)
    #set($event = $calendar_v1_events.Current)
    #set($userId = $core_v2_user.Accessing.Id)
    #set($userIsRegistered = $core_v2_user.IsRegistered($userId))
    
    #set ($linksToShow =  $links.Values('Link').Count * 2)
    #if ($collapse)
    	#set ($linksToShow = 0)
    #end
    
    #foreach($link in $links.Values('Link'))
    #beforeall
    <div class="ui-links navigation-list links" data-direction="vertical" data-minlinks="$linksToShow" data-maxlinks="$linksToShow">
    	<ul class="navigation-list">
    #each
    		#if($link == 'eventEdit' && ($event.EventCreatorId == $userId || $calendar_v1_calendars.HasPermission($event.CalendarId,$calendar_v1_permissions.EditEvent)))
    			#set($url = $calendar_v1_urls.EditEvent($event.Id))
    			#if ($url)
    				<li class="navigation-list-item">
    					<a href="$core_v2_encoding.HtmlAttributeEncode($url)">$core_v2_language.GetResource('edit')</a>
    				</li>
    				#set($hasLinks = true)
    			#end
    		#end
    
    		#if($link == 'feature' && $core_v3_feature.CanFeature($event.ContentId, $event.ContentTypeId))
    			<li class="navigation-list-item">$core_v2_ui.Feature($event.ContentId, $event.ContentTypeId)</li>
    		#end
    
    		#if($link == 'viewRegistrations' && $calendar_v1_calendars.HasPermission($event.CalendarId,$calendar_v1_permissions.ViewRegistrations))
    			#set($url = $calendar_v1_urls.RegisteredUsers($event.Id))
    			#if ($url)
    				<li class="navigation-list-item">
    					<a href="$core_v2_encoding.HtmlAttributeEncode($url)" class="internal-link view-registrations">
    						$core_v2_language.GetResource('calendar_EventLinks_ViewRegistrations')
    					</a>
    				</li>
    				#set($hasLinks = true)
    			#end
    		#end
    
    		#if($link == 'eventSubscribe' && $userIsRegistered && $calendar_v1_calendars.HasPermission($event.CalendarId,$calendar_v1_permissions.ViewCalendar))
    
    			<li class="navigation-list-item">
    				<a data-messagename="widget.${core_v2_widget.WrapperElementId}.eventSubscribe" data-eventid="$event.Id" data-subscribed="false" href="#" #if($calendar_v1_events.IsSubscribed($event.Id)) style="display:none" #end>$core_v2_language.GetResource('event_Subscribe_Off')</a>
    			</li>
    			<li class="navigation-list-item">
    				<a data-messagename="widget.${core_v2_widget.WrapperElementId}.eventSubscribe" data-eventid="$event.Id" data-subscribed="true" href="#" #if(!$calendar_v1_events.IsSubscribed($event.Id)) style="display:none" #end>$core_v2_language.GetResource('event_Subscribe_On')</a>
    			</li>
    
    			#registerEndOfPageHtml("widget.${core_v2_widget.WrapperElementId}.eventSubscribe")
    				<script type="text/javascript">
    					jQuery(function(j){
    						function update(value, link) {
    							j.telligent.evolution.post({
    								url: '$core_v2_encoding.JavascriptEncode($core_v2_widget.GetExecutedFileUrl('subscribe.vm'))',
    								data: {
    									subscribe: value,
    									eventId: link.data('eventid')
    								},
    								dataType: 'json',
    								success: function(response) {
    									if (response.subscribe) {
    										link.closest('ul').find('a[data-subscribed="false"]').hide();
    										link.closest('ul').find('a[data-subscribed="true"]').show();
    									} else {
    										link.closest('ul').find('a[data-subscribed="false"]').show();
    										link.closest('ul').find('a[data-subscribed="true"]').hide();
    									}
    
    									if (response.warnings && response.warnings.length > 0) {
    										j.telligent.evolution.notifications.show(response.warnings[0], { type: 'warning' });
    									}
    								}
    							});
    						}
    						j.telligent.evolution.messaging.subscribe('widget.${core_v2_widget.WrapperElementId}.eventSubscribe', function(data){
    							update(!j(data.target).data('subscribed'), j(data.target));
    						});
    					});
    				</script>
    			#end
    
    			#set($hasLinks = true)
    
    		#end
    
    		#if($link == 'cancelEvent' && $calendar_v1_calendars.HasPermission($currentCalendar.Id,$calendar_v1_permissions.EditEvent) && $event.IsCancelled == false)
    
    			<li class="navigation-list-item" id="$core_v2_widget.UniqueId('cancelEventItem')">
    				<a data-messagename="widget.${core_v2_widget.WrapperElementId}.eventCancel" data-eventid="$event.Id" href="#" class="internal-link delete-post">
    					$core_v2_language.GetResource('calendar_EventLinks_CancelEvent')
    				</a>
    			</li>
    
    			#registerEndOfPageHtml()
    				<script type="text/javascript">
    					jQuery(function(){
    						cancelEvent = function(link) {
    							if (window.confirm('$core_v2_encoding.JavascriptEncode($core_v2_language.GetResource('calendar_CancelEventConfirmation'))'))
    							{
    								jQuery.telligent.evolution.del({
    									url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/calendars/events/{Id}.json',
    									data: {Id: link.data('eventid'), CancelOnly: true},
    									defaultErrorMessage: '$core_v2_encoding.JavascriptEncode($core_v2_language.GetResource('calendar_CancelEventError'))'
    								}).then(function(response) {
    									jQuery.telligent.evolution.notifications.show('$core_v2_language.GetResource('calendar_event_cancelled_confirmation')');
                                        link.hide();
    								});
    							}
    						};
    
    						jQuery.telligent.evolution.messaging.subscribe('widget.${core_v2_widget.WrapperElementId}.eventCancel', function(data){
    							cancelEvent(jQuery(data.target));
    						});
    
    					});
    				</script>
    			#end
    
    			#set($hasLinks = true)
    
    		#end
    
    		#if ($link == 'deleteEvent' && $calendar_v1_calendars.HasPermission($event.CalendarId,$calendar_v1_permissions.DeleteEvent))
    			<li class="navigation-list-item">
    				<a href="#" onclick="deleteEvent(event);">$core_v2_language.GetResource('delete')</a>
    			</li>
    
    			#registerEndOfPageHtml()
    				<script type="text/javascript">
    					jQuery(function(){
    						deleteEvent = function(e) {
    							e.preventDefault();
    							if (window.confirm('$core_v2_encoding.JavascriptEncode($core_v2_language.GetResource('calendar_DeleteEventConfirmation'))'))
    							{
    								jQuery.telligent.evolution.del({
    									url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/calendars/events/{Id}.json',
    									data: {Id: $event.Id},
    									success: function (response) {
    										alert((response.Calendar == 'deleted') ? '$core_v2_language.GetResource('calendar_event_deleted')' : '$core_v2_language.GetResource('calendar_event_cancelled')');
    										window.location = '$core_v2_encoding.JavascriptEncode($calendar_v1_urls.HomePage($event.CalendarId))';
    									},
    									error: function (xhr, desc, ex) {
    										alert(desc);
    									},
    									defaultErrorMessage: '$core_v2_encoding.JavascriptEncode($core_v2_language.GetResource('calendar_DeleteEventError'))'
    								});
    							}
    						};
    					});
    				</script>
    			#end
    			#set($hasLinks = true)
    		#end
    
    		#if($link == 'rss' && $calendar_v1_calendars.HasPermission($currentCalendar.Id,$calendar_v1_permissions.ViewCalendar))
    			#set($url = $calendar_v1_urls.EventCommentRSS($event.Id))
    			#if($url)
    				<li class="navigation-item"><a href="$core_v2_encoding.HtmlAttributeEncode($url)" class="internal-link rss"><span></span>$core_v2_language.GetResource('calendar_EventLinks_Rss')</a></li>
    				#set($hasLinks = true)
    			#end
    		#end
    
    		#if($link == 'download' && $calendar_v1_calendars.HasPermission($currentCalendar.Id,$calendar_v1_permissions.ViewCalendar))
    			#set($url = $calendar_v1_urls.DownloadEvent($event.Id))
    			#if($url)
    				<li class="navigation-item"><a href="$core_v2_encoding.HtmlAttributeEncode($url)" class="internal-link download-event"><span></span>$core_v2_language.GetResource('calendar_EventLinks_Download')</a></li>
    				#set($hasLinks = true)
    			#end
    		#end
    
    		#if ($link == 'convert')
    				#set($convert = false)
    		#set($convert = $core_v2_ui.ConvertContent($event.ContentId, $event.ContentTypeId))
    		#if ($convert)
    				<li class="navigation-list-item">
    						$convert
    				</li>
    				#set($hasLinks = true)
    		#end
    	#end
    #afterall
    		#if($hasLinks)
    			<li class="navigation-list-item">
    			<a href="#" data-more>$core_v2_language.GetResource('more')</a>
    		</li>
    		<li class="navigation-list-item">
    			<a href="#" data-cancel>$core_v2_language.GetResource('cancel')</a>
    		</li>
    		#end
    	</ul>
    </div>
    
    #end
    
    #if($hasLinks == false)
    	$core_v2_widget.Hide()
    #end]]></contentScript>
    		<headerScript language="Velocity"><![CDATA[$core_v2_widget.ApplyTokens($core_v2_widget.GetStringValue('fragmentHeader', '${resource:Calendar_EventLinks_Title}'))]]></headerScript>
    		<configuration><![CDATA[
    		<propertyGroup id="options" resourceName="Options">
    			<property id="fragmentHeader" resourceName="CF_Title" dataType="string" defaultValue="${resource:Calendar_EventLinks_Title}" controlType="Telligent.Evolution.Controls.ContentFragmentTokenStringControl, Telligent.Evolution.Platform" />
    			<property id="collapsed" labelResourceName="collapsed" defaultValue="false" dataType="Bool" />
    			<property id="links" resourceName="event_Links" dataType="custom" defaultValue="Link=eventSubscribe&amp;Link=eventEdit&amp;Link=viewRegistrations&amp;Link=cancelEvent&amp;Link=deleteEvent&amp;Link=download&amp;Link=rss&amp;Link=feature" controlType="Telligent.Evolution.Controls.SortableListControl, Telligent.Evolution.Platform" height="300" key="Link" >
    				<propertyValue value="eventSubscribe" resourceName="calendar_EventLinks_Subscribe" />
    				<propertyValue value="eventEdit" resourceName="calendar_EventLinks_EditLink" />
    				<propertyValue value="viewRegistrations" resourceName="calendar_EventLinks_ViewRegistrationsLink" />
    				<propertyValue value="cancelEvent" resourceName="calendar_EventLinks_CancelEventLink" />
    				<propertyValue value="deleteEvent" resourceName="calendar_EventLinks_DeleteEventLink" />
    				<propertyValue value="download" resourceName="calendar_EventLinks_DownloadLink" />
    				<propertyValue value="rss" resourceName="calendar_EventLinks_RssLink" />
    				<propertyValue value="feature" resourceName="CF_feature" />
    				<propertyValue value="convert" resourceName="Convert" />
    			</property>
    		</propertyGroup>
    		]]></configuration>
    		<languageResources><![CDATA[<language key="en-us">
      <resource name="calendar_CancelEventConfirmation">Are you sure you wish to cancel this event? This cannot be undone.</resource>
      <resource name="calendar_CancelEventError">An error occurred while cancelling the event.</resource>
      <resource name="calendar_DeleteEventConfirmation">Are you sure you wish to delete this event?  This will cause the event to first be cancelled along with any/all registrations.  This cannot be undone.</resource>
      <resource name="calendar_DeleteEventError">An error occurred while deleting the event.</resource>
      <resource name="calendar_event_cancelled">This event has been cancelled.</resource>
      <resource name="calendar_event_cancelled_confirmation">This event has been cancelled</resource>
      <resource name="calendar_event_deleted">This event has been successfully deleted</resource>
      <resource name="calendar_EventLinks">Select, rearrange, and enable the links to be displayed</resource>
      <resource name="calendar_EventLinks_Add">Add a new event</resource>
      <resource name="calendar_EventLinks_AddLink">Add Event</resource>
      <resource name="calendar_EventLinks_Cancel">Cancel Registration/Invitation</resource>
      <resource name="calendar_EventLinks_CancelEvent">Cancel</resource>
      <resource name="calendar_EventLinks_CancelEventLink">Cancel</resource>
      <resource name="calendar_EventLinks_DeleteEvent">Delete</resource>
      <resource name="calendar_EventLinks_DeleteEventLink">Delete Event</resource>
      <resource name="Calendar_EventLinks_Description">Displays links for a calendar event</resource>
      <resource name="calendar_EventLinks_Download">Download</resource>
      <resource name="calendar_EventLinks_DownloadLink">Download</resource>
      <resource name="calendar_EventLinks_Edit">Edit this event</resource>
      <resource name="calendar_EventLinks_EditLink">Edit Event</resource>
      <resource name="Calendar_EventLinks_Name">Event Calendar - Event Links</resource>
      <resource name="calendar_EventLinks_Register">Request Registration</resource>
      <resource name="calendar_EventLinks_Rss">Rss</resource>
      <resource name="calendar_EventLinks_RssLink">Rss</resource>
      <resource name="calendar_EventLinks_Subscribe">Email Subscribe</resource>
      <resource name="Calendar_EventLinks_Title">Options</resource>
      <resource name="calendar_EventLinks_ViewRegistrations">Registrations</resource>
      <resource name="calendar_EventLinks_ViewRegistrationsLink">Registrations</resource>
      <resource name="calendar_EventLinkSettings_Disabled">Disabled</resource>
      <resource name="calendar_EventLinkSettings_Enabled">Enabled</resource>
      <resource name="cancel">Cancel</resource>
      <resource name="CF_feature">Feature</resource>
      <resource name="CF_Title">Widget Title</resource>
      <resource name="collapsed">Collapsed</resource>
      <resource name="Convert">Move</resource>
      <resource name="delete">Delete</resource>
      <resource name="edit">Edit</resource>
      <resource name="event_Links">Links</resource>
      <resource name="event_Subscribe_Off">Turn Event notifications on</resource>
      <resource name="event_Subscribe_On">Turn Event notifications off</resource>
      <resource name="more">More</resource>
      <resource name="Options">Options</resource>
    </language>]]></languageResources>
    		<additionalCssScript language="Unknown" />
    		<requiredContext>
    			<context id="ca14a7db70934b0abcce06169b6f2272" />
    		</requiredContext>
    		<files>
    			<file name="style.less">LmNvbnRlbnQtZnJhZ21lbnQuZXZlbnQtbGlua3MgLm5hdmlnYXRpb24taXRlbSB7IGJvcmRlci1ib3R0b206IDFweCBkb3R0ZWQgI2NjYzsgcG9zaXRpb246IHJlbGF0aXZlOyB9DQouY29udGVudC1mcmFnbWVudC5ldmVudC1saW5rcyAubmF2aWdhdGlvbi1pdGVtIC5pbnRlcm5hbC1saW5rIHsgcGFkZGluZy1sZWZ0OiAxOXB4OyBwb3NpdGlvbjogcmVsYXRpdmU7IGRpc3BsYXk6IGJsb2NrOyB9DQouY29udGVudC1mcmFnbWVudC5ldmVudC1saW5rcyAubmF2aWdhdGlvbi1pdGVtIC5pbnRlcm5hbC1saW5rIHNwYW4geyBwb3NpdGlvbjogYWJzb2x1dGU7IHdpZHRoOiAxMHB4OyBoZWlnaHQ6IDEwcHg7IGxlZnQ6IDA7IHRvcDogM3B4OyB9DQouY29udGVudC1mcmFnbWVudC5ldmVudC1saW5rcyAubmF2aWdhdGlvbi1pdGVtIC5lbWFpbC1zdWJzY3JpcHRpb24tZm9ybSB7IG1hcmdpbjogMDsgfQ0KLmNvbnRlbnQtZnJhZ21lbnQuZXZlbnQtbGlua3MgLm5hdmlnYXRpb24taXRlbSAuZW1haWwtc3Vic2NyaXB0aW9uLWZvcm0gLmZpZWxkLWl0ZW0geyBwb3NpdGlvbjogcmVsYXRpdmU7IHBhZGRpbmc6IDA7IH0NCi5jb250ZW50LWZyYWdtZW50LmV2ZW50LWxpbmtzIC5uYXZpZ2F0aW9uLWl0ZW0gLmVtYWlsLXN1YnNjcmlwdGlvbi1mb3JtIC5maWVsZC1pdGVtLWlucHV0IHsgcGFkZGluZy1sZWZ0OiAxOHB4OyBkaXNwbGF5OiBibG9jazsgfQ0KLmNvbnRlbnQtZnJhZ21lbnQuZXZlbnQtbGlua3MgLm5hdmlnYXRpb24taXRlbSAuZW1haWwtc3Vic2NyaXB0aW9uLWZvcm0gLmZpZWxkLWl0ZW0taW5wdXQgaW5wdXQgeyB3aWR0aDogODIlOyBtYXJnaW46IDVweCAwOyBmb250LXNpemU6IDEwcHg7IGJvcmRlcjogMXB4IHNvbGlkIGNvbnRyYXN0KC1ldm8tdGhlbWVjb25maWctY29sb3IoJ2ZvcmVncm91bmRDb2xvcicsICMxMTE3MUEpLCBkYXJrZW4oLWV2by10aGVtZWNvbmZpZy1jb2xvcignZm9yZWdyb3VuZENvbG9yJywgIzExMTcxQSksIDc3JSksIGxpZ2h0ZW4oLWV2by10aGVtZWNvbmZpZy1jb2xvcignZm9yZWdyb3VuZENvbG9yJywgIzExMTcxQSksIDc3JSkpOyBtYXJnaW46IDAgMCAxcHggMDsgcGFkZGluZzogMXB4OyB9DQouY29udGVudC1mcmFnbWVudC5ldmVudC1saW5rcyAubmF2aWdhdGlvbi1pdGVtIC5lbWFpbC1zdWJzY3JpcHRpb24tZm9ybSAuZmllbGQtaXRlbS1kZXNjcmlwdGlvbiB7IHBhZGRpbmctbGVmdDogMThweDsgZGlzcGxheTogYmxvY2s7IH0NCi5jb250ZW50LWZyYWdtZW50LmV2ZW50LWxpbmtzIC5uYXZpZ2F0aW9uLWl0ZW0gLmludGVybmFsLWxpbmsudmlldy1yZWdpc3RyYXRpb25zIHNwYW4geyBtYXJnaW46IDA7IH0NCi5jb250ZW50LWZyYWdtZW50LmV2ZW50LWxpbmtzIC5uYXZpZ2F0aW9uLWl0ZW0gLmludGVybmFsLWxpbmsuZG93bmxvYWQtZXZlbnQgc3BhbiB7d2lkdGg6MTZweDt9DQo=</file>
    			<file name="subscribe.vm">77u/I3NldCgkdHlwZSA9ICRjb3JlX3YyX3BhZ2UuR2V0Rm9ybVZhbHVlKCd0eXBlJykpDQojc2V0KCRzdWJzY3JpYmUgPSAkY29yZV92Ml91dGlsaXR5LlBhcnNlQm9vbCgkY29yZV92Ml9wYWdlLkdldEZvcm1WYWx1ZSgnc3Vic2NyaWJlJykpKQ0KJGNvcmVfdjJfcGFnZS5TZXRDb250ZW50VHlwZSgnYXBwbGljYXRpb24vanNvbicpDQoNCiRjYWxlbmRhcl92MV9ldmVudHMuU2V0U3Vic2NyaWJlZCgkY29yZV92Ml91dGlsaXR5LlBhcnNlSW50KCRjb3JlX3YyX3BhZ2UuR2V0Rm9ybVZhbHVlKCdldmVudElkJykpLCAkc3Vic2NyaWJlKQ0KeyJzdWJzY3JpYmUiOiNpZigkc3Vic2NyaWJlKSB0cnVlI2Vsc2UgZmFsc2UjZW5kfQ==</file>
    		</files>
    	</scriptedContentFragment>
    </scriptedContentFragments>
    <scriptedContentFragments>
    	<scriptedContentFragment name="${resource:Calendar_CalendarLinks_Name}" version="11.1.10.18802" description="${resource:Calendar_CalendarLinks_Description}" instanceIdentifier="cfb63a8508bf4d81b92002ed33d867b7" theme="" isCacheable="false" varyCacheByUser="true" showHeaderByDefault="true" cssClass="calendar-links" lastModified="2021-12-14 22:53:02Z">
    		<contentScript language="Velocity"><![CDATA[$core_v2_page.AddLink('stylesheet', $core_v2_widget.GetExecutedFileUrl('style.less'), "%{ Position = 'AfterTheme' }")
    
    #set ($collapse = $core_v2_widget.GetBoolValue('collapsed', false))
    #set($links = $core_v2_page.ParseQueryString($core_v2_widget.GetCustomValue('links','Link=calendarSubscribe&amp;Link=calendarEdit&amp;Link=calendarRss')))
    #set($hasLinks = false)
    #set($currentGroup = $core_v2_group.Current)
    #set($currentCalendar = $calendar_v1_calendars.Current)
    #set($url = false)
    
    #set ($linksToShow =  $links.Values('Link').Count * 2)
    #if ($collapse)
    	#set ($linksToShow = 0)
    #end
    
    #foreach($link in $links.Values('Link'))
    #beforeall
    <div class="ui-links navigation-list links" data-direction="vertical" data-minlinks="$linksToShow" data-maxlinks="$linksToShow">
    	<ul class="navigation-list">
    #each
    			#if($link == 'calendarRss')
    				#if ($currentCalendar)
    					#if( $calendar_v1_calendars.HasPermission($currentCalendar.Id,$calendar_v1_permissions.ViewCalendar))
    						#set($url = $calendar_v1_urls.CalendarRss($currentCalendar.Id))
    						#if($url)
    							<li class="navigation-list-item"><a href="$core_v2_encoding.HtmlAttributeEncode($url)" class="internal-link rss"><span></span>$core_v2_language.GetResource('calendar_CalendarLinks_Rss')</a></li>
    							#set($hasLinks = true)
    						#end
    					#end
    				#end
    
    			#elseif($link == 'calendarSubscribe')
    				#if($currentCalendar)
    					#if ($core_v2_user.IsRegistered($core_v2_user.Accessing.Id) && $calendar_v1_calendars.HasPermission($currentCalendar.Id,$calendar_v1_permissions.ViewCalendar))
    
    			<li class="navigation-list-item">
    				<a data-messagename="widget.${core_v2_widget.WrapperElementId}.calendarSubscribe" data-calendarid="$currentCalendar.Id" data-subscribed="false" href="#" #if($calendar_v1_calendars.IsSubscribed($currentCalendar.Id)) style="display:none" #end>$core_v2_language.GetResource('calendar_Subscribe_Off')</a>
    			</li>
    			<li class="navigation-list-item">
    				<a data-messagename="widget.${core_v2_widget.WrapperElementId}.calendarSubscribe" data-calendarid="$currentCalendar.Id" data-subscribed="true" href="#" #if(!$calendar_v1_calendars.IsSubscribed($currentCalendar.Id)) style="display:none" #end>$core_v2_language.GetResource('calendar_Subscribe_On')</a>
    			</li>
    
    			#registerEndOfPageHtml("widget.${core_v2_widget.WrapperElementId}.calendarSubscribe")
    				<script type="text/javascript">
    					jQuery(function(j){
    						function update(value, link) {
    							j.telligent.evolution.post({
    								url: '$core_v2_encoding.JavascriptEncode($core_v2_widget.GetExecutedFileUrl('subscribe.vm'))',
    								data: {
    									subscribe: value,
    									calendarId: link.data('calendarid')
    								},
    								dataType: 'json',
    								success: function(response) {
    									if (response.subscribe) {
    										link.closest('ul').find('a[data-subscribed="false"]').hide();
    										link.closest('ul').find('a[data-subscribed="true"]').show();
    									} else {
    										link.closest('ul').find('a[data-subscribed="false"]').show();
    										link.closest('ul').find('a[data-subscribed="true"]').hide();
    									}
    
    									if (response.warnings && response.warnings.length > 0) {
    										j.telligent.evolution.notifications.show(response.warnings[0], { type: 'warning' });
    									}
    								}
    							});
    						}
    						j.telligent.evolution.messaging.subscribe('widget.${core_v2_widget.WrapperElementId}.calendarSubscribe', function(data){
    							update(!j(data.target).data('subscribed'), j(data.target));
    						});
    					});
    				</script>
    			#end
    
    						#set($hasLinks = true)
    					#end
    				#end
    
    			#elseif($link == 'calendarEdit')
    				#if ($currentCalendar)
    					#if($calendar_v1_calendars.HasPermission($currentCalendar.Id,$calendar_v1_permissions.EditCalendar))
    						#set($url = $calendar_v1_urls.EditCalendar($currentCalendar.Id))
    						#if($url)
    							<li class="navigation-list-item">
    							  <a href="$core_v2_encoding.HtmlAttributeEncode($url)" class="internal-link edit-post">
    								<span></span>$core_v2_language.GetResource('calendar_CalendarLinks_Edit')
    							  </a>
    							</li>
    							#set($hasLinks = true)
    						#end
    					#end
    				#end
    			#end
    #afterall
    
    		#if($hasLinks)
    	  <li class="navigation-list-item">
    			<a href="#" data-more>$core_v2_language.GetResource('more')</a>
    		  </li>
    		  <li class="navigation-list-item">
    			<a href="#" data-cancel>$core_v2_language.GetResource('cancel')</a>
    		  </li>
    	#end
    
    	</ul>
    </div>
    
    #end
    
    #if($hasLinks == false)
      $core_v2_widget.Hide()
    #end
    
    	  ]]></contentScript>
    		<headerScript language="Velocity"><![CDATA[$core_v2_widget.ApplyTokens($core_v2_widget.GetStringValue('fragmentHeader', '${resource:Calendar_CalendarLinks_Title}'))]]></headerScript>
    		<configuration><![CDATA[
    	  <propertyGroup id="options" resourceName="Options">
    		  <property id="fragmentHeader" resourceName="CF_Title" dataType="string" defaultValue="${resource:Calendar_CalendarLinks_Title}" controlType="Telligent.Evolution.Controls.ContentFragmentTokenStringControl, Telligent.Evolution.Platform" />
    		  <property id="collapsed" labelResourceName="collapsed" defaultValue="false" dataType="Bool" />
    		  <property id="links" resourceName="calendar_Links" dataType="custom" defaultValue="Link=calendarSubscribe&amp;Link=calendarEdit&amp;Link=calendarRss" controlType="Telligent.Evolution.Controls.SortableListControl, Telligent.Evolution.Platform" height="300" key="Link" >
    		  <propertyValue value="calendarSubscribe" resourceName="calendar_CalendarLinks_Subscribe" />
    		  <propertyValue value="calendarEdit" resourceName="calendar_CalendarLinks_EditLink" />
    		  <propertyValue value="calendarRss" resourceName="calendar_CalendarLinks_RssLink" />
    		</property>
    	  </propertyGroup>
    	  ]]></configuration>
    		<languageResources><![CDATA[<language key="en-us">
      <resource name="calendar_CalendarLinks_Add">&lt;span&gt;&lt;/span&gt;Add Calendar</resource>
      <resource name="calendar_CalendarLinks_AddLink">Add Calendar</resource>
      <resource name="calendar_CalendarLinks_DeleteCalendar">&lt;span&gt;&lt;/span&gt;Delete Calendar</resource>
      <resource name="Calendar_CalendarLinks_DeleteCalendarConfirmation">Are you sure you want to delete this calendar?</resource>
      <resource name="Calendar_CalendarLinks_DeleteCalendarError">Unable to delete calendar, an error occurred.</resource>
      <resource name="calendar_CalendarLinks_DeleteLink">Delete Calendar</resource>
      <resource name="Calendar_CalendarLinks_Description">Displays a list of options related to a calendar</resource>
      <resource name="calendar_CalendarLinks_Edit">Manage Calendar</resource>
      <resource name="calendar_CalendarLinks_EditLink">Edit calendar</resource>
      <resource name="Calendar_CalendarLinks_Name">Event Calendar - Calendar Links</resource>
      <resource name="calendar_CalendarLinks_Rss">RSS</resource>
      <resource name="calendar_CalendarLinks_RssLink">Rss Subscription</resource>
      <resource name="calendar_CalendarLinks_Subscribe">Email Subscribe</resource>
      <resource name="Calendar_CalendarLinks_Title">Options</resource>
      <resource name="calendar_EventLinks_Add">Add a new event</resource>
      <resource name="calendar_EventLinks_AddLink">Add Event</resource>
      <resource name="calendar_Links">Select, rearrange, and enable the links to be displayed</resource>
      <resource name="calendar_Options_Description">Links for a calendar</resource>
      <resource name="calendar_Subscribe_Off">Turn Calendar notifications on</resource>
      <resource name="calendar_Subscribe_On">Turn Calendar notifications off</resource>
      <resource name="cancel">Cancel</resource>
      <resource name="CF_Title">Widget Title</resource>
      <resource name="collapsed">Collapsed</resource>
      <resource name="more">More</resource>
      <resource name="Options">Options</resource>
    </language>]]></languageResources>
    		<additionalCssScript language="Unknown" />
    		<files>
    			<file name="style.less">LmNvbnRlbnQtZnJhZ21lbnQuY2FsZW5kYXItbGlua3MgLm5hdmlnYXRpb24taXRlbSB7IGJvcmRlci1ib3R0b206IDFweCBkb3R0ZWQgI2NjYzsgcG9zaXRpb246IHJlbGF0aXZlOyB9DQouY29udGVudC1mcmFnbWVudC5jYWxlbmRhci1saW5rcyAubmF2aWdhdGlvbi1pdGVtIC5pbnRlcm5hbC1saW5rIHsgcGFkZGluZy1sZWZ0OiAxOXB4OyBwb3NpdGlvbjogcmVsYXRpdmU7IGRpc3BsYXk6IGJsb2NrOyB9DQouY29udGVudC1mcmFnbWVudC5jYWxlbmRhci1saW5rcyAubmF2aWdhdGlvbi1pdGVtIC5pbnRlcm5hbC1saW5rIHNwYW4geyBwb3NpdGlvbjogYWJzb2x1dGU7IHdpZHRoOiAxMHB4OyBoZWlnaHQ6IDEwcHg7IGxlZnQ6IDA7IHRvcDogM3B4OyB9DQo=</file>
    			<file name="subscribe.vm">77u/I3NldCgkdHlwZSA9ICRjb3JlX3YyX3BhZ2UuR2V0Rm9ybVZhbHVlKCd0eXBlJykpDQojc2V0KCRzdWJzY3JpYmUgPSAkY29yZV92Ml91dGlsaXR5LlBhcnNlQm9vbCgkY29yZV92Ml9wYWdlLkdldEZvcm1WYWx1ZSgnc3Vic2NyaWJlJykpKQ0KJGNvcmVfdjJfcGFnZS5TZXRDb250ZW50VHlwZSgnYXBwbGljYXRpb24vanNvbicpDQoNCiRjYWxlbmRhcl92MV9jYWxlbmRhcnMuU2V0U3Vic2NyaWJlZCgkY29yZV92Ml91dGlsaXR5LlBhcnNlSW50KCRjb3JlX3YyX3BhZ2UuR2V0Rm9ybVZhbHVlKCdjYWxlbmRhcklkJykpLCAkc3Vic2NyaWJlKQ0KeyJzdWJzY3JpYmUiOiNpZigkc3Vic2NyaWJlKSB0cnVlI2Vsc2UgZmFsc2UjZW5kfQ==</file>
    		</files>
    	</scriptedContentFragment>
    </scriptedContentFragments>