FogBugz rewrites the iframes that you paste into the wiki for security reasons. However, we can use a BugMonkey script to get around this behavior and have our calendar show up (similar to what we do in Can I embed a Google Doc into a FogBugz wiki page). Here's the finished result:

To start, you want to go into your gmail calendar's settings and take note of the embed code:


The only thing we're interested in is the URL inside the embed code, like so:
http://www.google.com/calendar/embed?src=test%40example.com&ctz=America/New_York
Take the URL and add it as a link to any wiki page where you want the calendar to show up. Then add the following BugMonkey customization (My Settings > Customizations) to your FogBugz installation and enable it for all users:
name: Embed Google Calendar
description: Allows you to embed a Google Calendar into a FogBugz wiki
author: Ben McCormack
version: 1.0.0.0
minApi: 1.0
js:
$(document).ready(function(){
//make sure we're on the view wiki page, not editing
if ($('a#idViewArticle.selected').length === 0) {
return;
}
var toMatch = /\bhttp:\/\/www\.google\.com\/calendar\/embed\?[^ ]*\b/i;
var matches = $('a[href*="http://www.google.com/calendar/embed"]').filter(function(){
return $(this).attr('href').match(toMatch);
});
$(matches).each(function() {
var href = $(this).attr('href');
var iframe = '<iframe src="' + href + '"width="715" height="600" frameborder="0" scrolling="no" style="border: 0"></iframe>';
var replaceWith = $(this).replaceWith(iframe);
});
});
css:
/* body { background-color: red !important; } */
The above customization will look for Google Calendar embed links within wiki pages and replace them with the actual embedded calendar.