<?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[Calendar help - won't post]]></title><description><![CDATA[<p dir="auto">I have been reading posts and trying to figure this out but still haven’t. I also put my config.js into jsHint site but couldn’t figure out the problem. Errors:<br />
17	Label ‘modules’ on [ statement.<br />
82	Expected an assignment or function call and instead saw an expression.<br />
82	Missing semicolon.<br />
82	Unrecoverable syntax error. (97% scanned).</p>
<p dir="auto">I also tried the npm run config:check - got the following response:<br />
“Your configuration file don’t containt syntax error :)”</p>
<p dir="auto">Do I edit my config.js in the config folder or do I edit the calendar.js in the calendar module folder?</p>
]]></description><link>https://forum.magicmirror.builders/topic/5607/calendar-help-won-t-post</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Jul 2026 07:46:19 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/5607.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 29 Nov 2017 21:05:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Calendar help - won't post on Thu, 30 Nov 2017 00:21:18 GMT]]></title><description><![CDATA[<p dir="auto">Thank you. I appreciate the checking. I ended up re-running the install script and it worked. I have no idea but am very happy. Now that I know not to mess with the modules, it is much easier.</p>
]]></description><link>https://forum.magicmirror.builders/post/31773</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31773</guid><dc:creator><![CDATA[elwarriner]]></dc:creator><pubDate>Thu, 30 Nov 2017 00:21:18 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar help - won't post on Wed, 29 Nov 2017 22:35:23 GMT]]></title><description><![CDATA[<p dir="auto">Ok, so what is the problem. I just used that config and it fired right up. Only Christmas shows on one of your calendars but the config loads without error.</p>
<p dir="auto">The only other thing I would suggest is changing the <code>rotateInterval</code> in the config for your newsfeed. The news items change before they fully scroll across your screen. Set it to about 30 seconds so you see the entire item before it goes to the next</p>
]]></description><link>https://forum.magicmirror.builders/post/31770</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31770</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Wed, 29 Nov 2017 22:35:23 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar help - won't post on Wed, 29 Nov 2017 22:28:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/elwarriner" aria-label="Profile: elwarriner">@<bdi>elwarriner</bdi></a> said in <a href="/post/31767">Calendar help - won’t post</a>:</p>
<blockquote>
<p dir="auto">I need to first go back to see how to post it in the code block. In the meantime, where do I find an original calendar.js since that might be my problem. I did edit it.</p>
</blockquote>
<p dir="auto"><a href="https://github.com/MichMich/MagicMirror/blob/master/modules/default/calendar/calendar.js" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/MichMich/MagicMirror/blob/master/modules/default/calendar/calendar.js</a></p>
<p dir="auto"><strong>Checking your config now</strong></p>
]]></description><link>https://forum.magicmirror.builders/post/31769</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31769</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Wed, 29 Nov 2017 22:28:36 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar help - won't post on Wed, 29 Nov 2017 22:19:00 GMT]]></title><description><![CDATA[<pre><code class="language-modules:">		{
			module: "alert",
		},
		{
			module: "updatenotification",
			position: "top_bar"
		},
		{
			module: "clock",
			position: "top_left"
		},
		{
			module: "calendar",
			header: "calendar",
			position: "top_left",
			config: {
        calendars: [
            {
                url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
            },
            {
                url: 'https://calendar.google.com/calendar/ical/myinfo%40gmail.com/private-fd97576a307b857ca2b82727302938f7/basic.ics'
            },

        ],
    }
		},
		{
			module: "compliments",
			position: "lower_third"
		},
		{
			module: "currentweather",
			position: "top_right",
			config: {
				location: "New York",
				locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
				appid: "YOUR_OPENWEATHER_API_KEY"
			}
		},
		{
			module: "weatherforecast",
			position: "top_right",
			header: "Weather Forecast",
			config: {
				location: "New York",
				locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
				appid: "YOUR_OPENWEATHER_API_KEY"
			}
		},
		{
			module: "newsfeed",
			position: "bottom_bar",
			config: {
				feeds: [
					{
						title: "New York Times",
						url: "http://www.nytimes.com/services/xml/rss/nyt/Technology.xml"
					}
				],
				showSourceTitle: true,
				showPublishDate: true
			}
		},
	]

};```</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/31768</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31768</guid><dc:creator><![CDATA[elwarriner]]></dc:creator><pubDate>Wed, 29 Nov 2017 22:19:00 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar help - won't post on Wed, 29 Nov 2017 22:30:40 GMT]]></title><description><![CDATA[<p dir="auto">I need to first go back to see how to post it in the code block. In the meantime, where do I find an original calendar.js since that might be my problem. I did edit it. Edited to add - I cut and pasted the calendar.js from: <a href="https://github.com/MichMich/MagicMirror/tree/master/modules/default/calendar" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/MichMich/MagicMirror/tree/master/modules/default/calendar</a><br />
Still not fixed.</p>
]]></description><link>https://forum.magicmirror.builders/post/31767</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31767</guid><dc:creator><![CDATA[elwarriner]]></dc:creator><pubDate>Wed, 29 Nov 2017 22:30:40 GMT</pubDate></item><item><title><![CDATA[Reply to Calendar help - won't post on Wed, 29 Nov 2017 21:34:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/elwarriner" aria-label="Profile: elwarriner">@<bdi>elwarriner</bdi></a> said in <a href="/post/31761">Calendar help - won’t post</a>:</p>
<blockquote>
<p dir="auto">Do I edit my config.js in the config folder or do I edit the calendar.js in the calendar module folder?</p>
</blockquote>
<p dir="auto">You edit the config.js file. It’s not recommended that you edit the calendar.js file… Can you post your config.js file here (in a code block) so we can take a look at it</p>
]]></description><link>https://forum.magicmirror.builders/post/31762</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/31762</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Wed, 29 Nov 2017 21:34:09 GMT</pubDate></item></channel></rss>