<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Two questions regarding MMM-CalendarExt2]]></title><description><![CDATA[<p dir="auto">I’m sure the answer is in the documentation somewhere. Anyway, local community center wants to display upcoming Gym rental and free times. So the two things I need (which I can’t figure out) is to display the next 4 weeks showing days the way they appear in the month view, and how to include the ending time or the duration. Thanks in advance.</p>
<pre><code>/* Magic Mirror Config Sample
 *
 * By Michael Teeuw http://michaelteeuw.nl
 * MIT Licensed.
 *
 * For more information how you can configurate this file
 * See https://github.com/MichMich/MagicMirror#configuration
 *
 */

var config = {
	address: "localhost", // Address to listen on, can be:
	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
	                      // - another specific IPv4/6 to listen on a specific interface
	                      // - "", "0.0.0.0", "::" to listen on any interface
	                      // Default, when address config is left out, is "localhost"
	port: 8080,
	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
	                                                       // or add a specific IPv4 of 192.168.1.5 :
	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
	                                                       // or IPv4 range of 192.168.3.0 --&gt; 192.168.3.15 use CIDR format :
	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],

	language: "en",
	timeFormat: 24,
	units: "metric",

	modules: [
		{
			module: 'MMM-CalendarExt2',
			  config: {
				calendars : [
				
				  { 
					name: "BNC Rentals", 
					url: "https://calendar.google.com/calendar/ical/bncrentals185%40gmail.com/public/basic.ics",
				  },
				],
				views: [
				{
					Name: "Rentals",
					title: "Gym Rentals",
					mode: "month",			
					position: "fullscreen_above",
					calendars: ["BNC Rentals"],
					dateformat: "HH:mm",
					timeformat: "HH:mm",
				
				
				}
				],
				scenes: [
				  {
					name: "DEFAULT",
					views: [],
				  },
				],
			  },
		}
	]

};

/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/11048/two-questions-regarding-mmm-calendarext2</link><generator>RSS for Node</generator><lastBuildDate>Fri, 11 Sep 2026 05:01:07 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/11048.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 27 Aug 2019 01:35:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Two questions regarding MMM-CalendarExt2 on Wed, 28 Aug 2019 02:52:33 GMT]]></title><description><![CDATA[<p dir="auto">@Sean  Thanks! I could suggest to staff to make duration part of the description. That will work.</p>
<p dir="auto">I can display ‘Gym Rentals’ on the left side of the calendar. Is there anyway to display the month of the current week on the right side?</p>
<p dir="auto"><a href="https://imgur.com/kcPfvub" target="_blank" rel="noopener noreferrer nofollow ugc">https://imgur.com/kcPfvub</a></p>
]]></description><link>https://forum.magicmirror.builders/post/60452</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/60452</guid><dc:creator><![CDATA[CliffordW]]></dc:creator><pubDate>Wed, 28 Aug 2019 02:52:33 GMT</pubDate></item><item><title><![CDATA[Reply to Two questions regarding MMM-CalendarExt2 on Tue, 27 Aug 2019 22:06:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cliffordw" aria-label="Profile: CliffordW">@<bdi>CliffordW</bdi></a></p>
<ol>
<li><code>mode:"week",</code></li>
<li>events of week/month views are too narrow to display end-time or duration. (informations themselves are hidden in event elements but not revealed. I don’t recommend show them.)</li>
</ol>
]]></description><link>https://forum.magicmirror.builders/post/60447</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/60447</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Tue, 27 Aug 2019 22:06:16 GMT</pubDate></item></channel></rss>