Cape Breton Deaths MARCH 28, 2023 TUESDAY (2023)

Home Messages Hashtags

Likes

(Video) CBC News: The National | Election interference, TikTok safety, Sleep and health

" ); } else { wrap = '

(Video) APTN National News April 28, 2023 – More than 130 ghost babies in Quebec, Investigation

Attachments:

    '; count = 0; for (i = 0; i < response.length; i++) { if (response[i].Inline == false) { wrap += '
  • ' + response[i].Name + ' (' + response[i].HumanSize + ')
  • "; count++; } } wrap += '

'; if (count > 0) { $('#attachments' + id).replaceWith(wrap); } else { $('#attachments' + id).replaceWith( "

" ); } } }); } var modTimeoutId; function modOnFormChange(id, draftid, groupurl, csrf) { clearTimeout(modTimeoutId); if (modSaving == true) { modTimeoutId = setTimeout(function () { // Runs 1 second (1000 ms) after the last change modOnFormChange(id, draftid, groupurl, csrf); }, 1000); return; } modTimeoutId = setTimeout(function () { // Runs 1 second (1000 ms) after the last change modSaveDraft(id, draftid, groupurl, csrf, false); }, 1000); } var modSaving = false; // modSaveDraft saves the current form state in the draft. function modSaveDraft(id, draftid, groupurl, csrf, onLeave) { if (draftid == 0) { console.log("DraftID 0, not modSaving"); return; } console.log("DELETEDDRAFT IS:", modDeletedDraft); console.log("DESTROYEDEDITOR IS:", modDestroyedEditor); if (modDeletedDraft == true) { console.log('NOT SAVING BECAUSE OF DELETED'); return; } if (modDestroyedEditor == true) { console.log('NOT SAVING BECAUSE OF DESTROYED'); return; } modSaving = true; console.log('modSaving'); var fromval = $('#from' + id).val(); var subject = $('#subject' + id).val(); var body = $('#editor' + id).val(); var bodytype = $('#bodytype' + id).val(); var private = $('#isprivate' + id).val(); var special = '0'; if ($('#special').prop('checked') == true) { special = '1'; } var bccme = '0'; if ($('#bccme').prop('checked') == true) { bccme = '1'; } var bccall = '0'; if ($('#bccall').prop('checked') == true) { bccall = '1'; } var saveval = '1'; if (onLeave == true) { saveval = '2'; } var hashtags = $('#hashtags').val(); upload = { draftid: draftid, csrf: csrf, from: fromval, subject: subject, body: body, bodytype: bodytype, special: special, private: private, bccme: bccme, bccall: bccall, hashtags: JSON.stringify(hashtags), mid: id, save: saveval }; let opts = { url: groupurl + '/draftop', cache: false, data: upload, method: 'POST', xhrFields: { withCredentials: true }, dataType: 'json' }; if (modUnloading == false) { // if we are unloading we don't want to retry, because sometimes // that can result in a spurious error, esp on Firefox opts.retryCount = 5; opts.retryVerify = modRetryVerify; } $.ajax(opts).done(function (response) { // Do something with the request console.log('saved'); modSaving = false; }); } // called to see if we need to continue retrying function modRetryVerify() { if (modDeletedDraft == true || modDestroyedEditor == true) { return false; } return true; } // stop modSaving drafts when we do a submit var postVar = null; // Code to find and return a selected piece of HTML. function modGetSelection(id) { var flag = 0; var sel = document.getSelection(); var selText = ''; id = 'msgbody' + id; var forkfork = document.getElementById(id); if (sel.rangeCount > 0) { var range = sel.getRangeAt(0); var test = range.cloneContents(); var clonedSelection = ''; if (typeof test.getElementByID != 'undefined') { clonedSelection = range.cloneContents().getElementById(id); } if (clonedSelection) { selText = clonedSelection.innerHTML; } else { clonedSelection = range.cloneContents(); var startNode = sel.getRangeAt(0).startContainer.parentNode; //console.log(modIsChild(startNode, forkfork)); if (modIsChild(startNode, forkfork)) { var div = document.createElement('div'); div.appendChild(clonedSelection); selText = div.innerHTML; } } } return selText.toString(); } function modIsChild(child, parent) { if (child === parent) return true; var current = child; while (current) { if (current === parent) return true; current = current.parentNode; } return false; } return { InitEditor: function ( id, bodyType, draftid, groupurl, csrf, handleAttachments, noFontChanges, isReply, isWiki, body, sig, onInitFunc ) { if (typeof onInitFunc === 'undefined') { onInitFunc = null; } //document.getElementById("editor" + id).addEventListener("gio:destroy", modDestroyAllEditors); document.body.addEventListener("gio:destroy", modDestroyAllEditors); modDeletedDraft = false; modDestroyedEditor = false; modUnloading = false; $('#preview' + id).hide(); $('#addattachments' + id).hide(); $('#return' + id).hide(); $('#markdownlink' + id).hide(); if (bodyType == 'html') { if (sig != '') { $('#editor' + id).val(sig); //tinyMCE.get('editor'+id).setContent(sig); } editor.initHTMLEditor( id, draftid, groupurl, csrf, handleAttachments, noFontChanges, isReply, isWiki, body, sig, onInitFunc ); } else { if (sig != '') { $('#editor' + id).val(sig); } editor.initPlainEditor(id, bodyType, groupurl, handleAttachments, sig); } }, initHTMLEditor: function ( id, draftid, groupurl, csrf, handleAttachments, noFontChanges, isReply, isWiki, body, sig, onInitFunc ) { if (typeof onInitFunc === 'undefined') { onInitFunc = null; } // extras: print, emoticons, image, insert, media, print /* All plugins: 'advlist autolink lists link image print preview hr anchor pagebreak', 'searchreplace wordcount visualblocks visualchars code fullscreen', 'insertdatetime media nonbreaking save table contextmenu directionality', 'emoticons template paste textcolor colorpicker textpattern imagetools codesample toc' */ modDeletedDraft = false; modDestroyedEditor = false; modUnloading = false; let attachments = ''; if (handleAttachments == 0 || handleAttachments == 3) { attachments = ' addPictures addAttachments'; } let fontchanges = ''; if (noFontChanges == false) { fontchanges = ' fontselect fontsizeselect forecolor backcolor'; } let fontawesome = ' charmap'; let forceRootBlock = false; if (isWiki == true) { attachments += ' addWikiImage addWikiLink addWikiTOC'; fontawesome = ' fontawesome'; // BORK fontawesome = ''; forceRootBlock = 'p'; } let toolbar1 = 'styleselect bold italic bullist numlist link blockquote alignleft aligncenter alignright' + attachments + ' advancedToolbar'; let toolbar2 = 'strikethrough underline hr alignjustify' + fontchanges + ' removeformat' + fontawesome + ' outdent indent undo redo preview code'; let small_toolbar1 = 'bold italic link blockquote' + attachments + ' advancedToolbar'; let small_toolbar2 = 'strikethrough underline hr alignjustify removeformat outdent indent'; let tm_fonts = 'Arial=arial,helvetica,sans-serif;' + 'Arial Black=arial black,avant garde;' + 'Comic Sans MS=comic sans ms;' + 'Courier Neue=courier_newregular,courier;' + 'Helvetica Neue=helvetica neue;' + 'Helvetica=helvetica;' + 'Impact=impactregular,chicago;' + 'Lucida Grande=lucida grande;' + 'Tahoma=tahoma,arial,helvetica,sans-serif;' + 'Times New Roman=times new roman,times;' + 'Verdana=verdana,geneva'; let plugins = [ 'SplitBlockquote', 'advlist autolink lists link image preview hr anchor', 'code fullscreen', 'nonbreaking table charmap', 'textcolor colorpicker imagetools noneditable' ]; let css = fixupURL('/bootstrap/3.3.6/css/bootstrap.min.css') + ',' + fixupURL('/bootstrap/3.3.6/css/bootstrap-theme.min.css') + ',' + fixupURL('/css/groupsio.css') + ',' + fixupURL('/css/tinymce.css') + ',' + fixupURL('/fontawesome/5.9.0/css/all.min.css'); let fontsizes = '8pt 10pt 11pt 12pt 14pt 18pt 24pt 36pt'; let codesample_languages = [ { text: 'C', value: 'c' }, { text: 'C#', value: 'csharp' }, { text: 'C++', value: 'cpp' }, { text: 'CSS', value: 'css' }, { text: 'Go', value: 'go' }, { text: 'HTML/XML', value: 'markup' }, { text: 'Java', value: 'java' }, { text: 'JavaScript', value: 'javascript' }, { text: 'PHP', value: 'php' }, { text: 'Python', value: 'python' }, { text: 'Ruby', value: 'ruby' } ]; let style_formats = [ { title: 'Paragraph', block: 'p' }, { title: 'Header 1', block: 'h1' }, { title: 'Header 2', block: 'h2' }, { title: 'Header 3', block: 'h3' }, { title: 'Header 4', block: 'h4' }, { title: 'Header 5', block: 'h5' }, { title: 'Header 6', block: 'h6' } ]; if (isReply == true) { toolbar1 = 'quoteMessage ' + toolbar1; small_toolbar1 = 'quoteMessage ' + small_toolbar1; } if (document.documentElement.clientWidth > 1000) { tinymce.init({ noneditable_noneditable_class: 'fa', extended_valid_elements: 'span[*]', branding: false, link_context_toolbar: true, default_link_target: '_blank', link_assume_external_targets: true, elementpath: false, forced_root_block: forceRootBlock, content_css: css, relative_urls: false, remove_script_host: false, menubar: false, statusbar: true, plugins: plugins, toolbar1: toolbar1, toolbar2: toolbar2, font_formats: tm_fonts, browser_spellcheck: true, contextmenu: false, selector: '#editor' + id, resize: true, fontsize_formats: fontsizes, style_formats: style_formats, setup: function (teditor) { teditor.on('Init', function (e) { // see if any text is selected toquote = modGetSelection(id); if (toquote != '') { console.log('id=' + id); editor.ShowMessageHistory(id, groupurl, 'html', toquote, sig, true); } else { if (body != "") { console.log("body setContent"); teditor.setContent(body); } else if (sig != "") { console.log("sig setContent " + sig); teditor.setContent(sig); } } if (onInitFunc != null) { onInitFunc(e); } }); teditor.on('BeforeRenderUI', function (e) { teditor.theme.panel .find('toolbar') .slice(1) .hide(); }); teditor.addButton('advancedToolbar', { tooltip: 'Show advanced toolbar', icon: 'fa fa-bars', onclick: function () { if (!this.active()) { this.active(true); teditor.theme.panel .find('toolbar') .slice(1) .show(); } else { this.active(false); teditor.theme.panel .find('toolbar') .slice(1) .hide(); } } }); teditor.addButton('addPictures', { tooltip: 'Add pictures', icon: 'fa fa-image', onclick: function () { modUploaderPrompt("pictures", id, draftid, groupurl, csrf); } }); teditor.addButton('addAttachments', { tooltip: 'Add attachments', icon: 'fa fa-paperclip', onclick: function () { modUploaderPrompt("attachments", id, draftid, groupurl, csrf); } }); if (groupurl != '') { teditor.addButton('quoteMessage', { tooltip: 'Quote post', icon: 'fa fa-comment', onclick: function () { editor.ShowMessageHistory(id, groupurl, 'html', '', sig, false); } }); } if (draftid != '' && draftid != '0' && draftid != 0) { teditor.on('NodeChange', function () { //tinymce.triggerSave(); if (tinymce.activeEditor != null) { let markupStr = tinymce.activeEditor.getContent(); $('#editor' + id).val(markupStr); modOnFormChange(id, draftid, groupurl, csrf); } }); teditor.on('keyup', function () { //tinymce.triggerSave(); let markupStr = tinymce.activeEditor.getContent(); $('#editor' + id).val(markupStr); modOnFormChange(id, draftid, groupurl, csrf); }); } if (isWiki == true) { // special wiki buttons teditor.addButton('addWikiImage', { tooltip: 'Insert image', icon: 'fa fa-image', onclick: function () { $('#ImageModal').modal({}); } }); teditor.addButton('addWikiLink', { tooltip: 'Insert link to wiki page', icon: 'fa fa-book', onclick: function () { $('#LinkModal').modal({}); } }); teditor.addButton('addWikiTOC', { tooltip: 'Insert table of contents', icon: 'fa fa-list-alt', onclick: function () { $('#TOCModal').modal({}); } }); } } }); } else { tinymce.init({ branding: false, link_context_toolbar: true, default_link_target: '_blank', link_assume_external_targets: true, elementpath: false, forced_root_block: forceRootBlock, content_css: css, relative_urls: false, remove_script_host: false, menubar: false, statusbar: true, plugins: plugins, toolbar1: small_toolbar1, toolbar2: small_toolbar2, font_formats: tm_fonts, browser_spellcheck: true, contextmenu: false, selector: '#editor' + id, resize: true, fontsize_formats: fontsizes, style_formats: style_formats, setup: function (teditor) { teditor.on('Init', function (e) { // see if any text is selected toquote = modGetSelection(id); if (toquote != '') { console.log('id=' + id); editor.ShowMessageHistory(id, groupurl, 'html', toquote, sig, true); } else { if (body != "") { console.log("body setContent"); teditor.setContent(body); } else if (sig != "") { console.log("sig setContent" + sig); teditor.setContent(sig); } } if (onInitFunc != null) { onInitFunc(e); } }); teditor.on('BeforeRenderUI', function (e) { teditor.theme.panel .find('toolbar') .slice(1) .hide(); }); teditor.addButton('advancedToolbar', { tooltip: 'Show advanced toolbar', icon: 'fa fa-bars', onclick: function () { if (!this.active()) { this.active(true); teditor.theme.panel .find('toolbar') .slice(1) .show(); } else { this.active(false); teditor.theme.panel .find('toolbar') .slice(1) .hide(); } } }); teditor.addButton('addPictures', { tooltip: 'Add pictures', icon: 'fa fa-image', onclick: function () { modUploaderPrompt("pictures", id, draftid, groupurl, csrf); } }); teditor.addButton('addAttachments', { tooltip: 'Add attachments', icon: 'fa fa-paperclip', onclick: function () { modUploaderPrompt("attachments", id, draftid, groupurl, csrf); } }); if (groupurl != '') { teditor.addButton('quoteMessage', { tooltip: 'Quote post', icon: 'fa fa-comment', onclick: function () { editor.ShowMessageHistory(id, groupurl, 'html', '', sig, false); } }); } if (draftid != '' && draftid != '0' && draftid != 0) { teditor.on('NodeChange', function () { if (tinymce.activeEditor != null) { //tinymce.triggerSave(); let markupStr = tinymce.activeEditor.getContent(); $('#editor' + id).val(markupStr); modOnFormChange(id, draftid, groupurl, csrf); } }); teditor.on('keyup', function () { //tinymce.triggerSave(); let markupStr = tinymce.activeEditor.getContent(); $('#editor' + id).val(markupStr); modOnFormChange(id, draftid, groupurl, csrf); }); } // special wiki buttons teditor.addButton('addWikiImage', { tooltip: 'Add Image', icon: 'fa fa-image', onclick: function () { $('#ImageModal').modal({}); } }); teditor.addButton('addWikiLink', { tooltip: 'Add Link', icon: 'fa fa-book', onclick: function () { $('#LinkModal').modal({}); } }); teditor.addButton('addWikiTOC', { tooltip: 'Table of Contents', icon: 'fa fa-list-alt', onclick: function () { $('#TOCModal').modal({}); } }); } }); // disable tooltips because they require double taps on mobile $('.note-editor *').tooltip('disable'); } }, initPlainEditor: function (id, bodyType, groupurl, handleAttachments, sig) { $('#addattachments').show(); if (bodyType == 'plain') { $('#bodytype' + id).val('plain'); $('#preview' + id).hide(); $('#return' + id).hide(); $('#preview' + id).hide(); $('#markdownlink' + id).hide(); } else { $('#bodytype' + id).val('markdown'); $('#markdownbuttons' + id).show(); $('#preview' + id).show(); $('#return' + id).hide(); $('#previewWindow' + id).hide(); $('#markdownlink' + id).show(); } toquote = modGetSelection(id); if (toquote != '') { editor.ShowMessageHistory(id, groupurl, 'plain', toquote, sig, true); //$('#editor' + id).val(toquote); } }, InitPostDraft: function (id, draftid, csrf, groupurl) { // save the draft when leaving the page. $(window).on('beforeunload', function () { modUnloading = true; modSaveDraft(id, draftid, groupurl, csrf, true); }); // save the draft 1 second after a change $('form input, form textarea').on('input propertychange change', function () { modOnFormChange(id, draftid, groupurl, csrf); }); modUpdateAttachments(id, draftid, csrf, groupurl); if (typeof Capacitor !== 'undefined') { modInitDeviceUploader(id, draftid, csrf, groupurl); } else { modInitWebUploader(id, draftid, csrf, groupurl); } }, // InitReplyDraft creates a new draft, assumes a hidden form input called #draftidmid, and then calls initWindow(). InitReplyDraft: function ( id, bodytype, draftid, groupurl, csrf, handleAttachments, noFontChanges, isReply, isWiki, body, sig, onInitFunc ) { console.log('in InitReplyDraft draftid=' + draftid); modDeletedDraft = false; modDestroyedEditor = false; modUnloading = false; if (draftid == 0) { // create a new draft console.log('generating new draft' + groupurl); console.log('id=' + id); upload = { mid: id, csrf: csrf, body: sig }; $.ajax({ url: fixupURL(groupurl + '/reply'), cache: false, method: 'POST', data: upload, xhrFields: { withCredentials: true }, dataType: 'json', error: function (xhr, ajaxOptions, thrownError) { if (modDeletedDraft == false && modDestroyedEditor == false) { createAlert("There was an error saving the draft. Please reload the page.", true, false) } } }).done(function (response) { console.log('reply draft created'); console.log('draftid:' + response.DraftID); draftid = response.DraftID; $('#draftid' + id).val(response.DraftID); editor.InitEditor( id, bodytype, draftid, groupurl, csrf, handleAttachments, noFontChanges, true, false, body, sig, onInitFunc ); editor.InitPostDraft(id, draftid, csrf, groupurl); console.log('id=' + id); $('#bodytype' + id).val(bodytype); $('#cancel-' + id).attr( 'onclick', 'editor.discardReplyDraft("' + id + '", "' + draftid + '","' + bodytype + '","' + csrf + '","' + groupurl + '");' ); return; }); return; } editor.InitEditor( id, bodytype, draftid, groupurl, csrf, handleAttachments, noFontChanges, true, false, body, sig, onInitFunc ); editor.InitPostDraft(id, draftid, csrf, groupurl); $('#bodytype' + id).val(bodytype); $('#cancel-' + id).attr( 'onclick', 'editor.discardReplyDraft("' + id + '", "' + draftid + '","' + bodytype + '","' + csrf + '","' + groupurl + '");' ); console.log('DONE'); }, // discardReplyDraft deletes the draft and any attachments and returns the user to the previous page. discardReplyDraft: function (id, draftid, bodytype, csrf, groupurl) { console.log('editor delete reply draft'); upload = { draftid: draftid, csrf: csrf, jsondelete: '1' }; $.ajax({ url: groupurl + '/draftop', cache: false, data: upload, method: 'POST', xhrFields: { withCredentials: true }, dataType: 'json' }).done(function (response) { // Do something with the request console.log("success delete reply draft"); $('#draftid' + id).val(''); if (bodytype == 'html') { tinymce.get('editor' + id).remove(); } $('#subject' + id).val($('#origsubject' + id).val()); $('#editor' + id).val(''); modDeletedDraft = true; modDestroyedEditor = true; }); }, PreviewMarkdown: function (id, groupurl) { let markdown = $('#editor' + id).val(); upload = { md: markdown }; $.ajax({ url: fixupURL(groupurl + '/previewmd'), cache: false, data: upload, method: 'POST', xhrFields: { withCredentials: true }, dataType: 'json' }).done(function (response) { // Do something with the request console.log(response.markdown); wrap = '

' + response.markdown + '

(Video) March 1, 2023 Budget Committee

'; $('#editwindow' + id).hide(); $('#previewWindow' + id).replaceWith(wrap); $('#previewWindow' + id).show(); }); $('#preview' + id).hide(); $('#return' + id).show(); }, ReturnMarkdown: function (id) { $('#preview' + id).show(); $('#return' + id).hide(); $('#previewWindow' + id).hide(); $('#editwindow' + id).show(); }, // groupReplyto is groupsio.ReplyTo // toggle=0 is group // toggle=1 is sender // toggle=2 is mods TogglePrivate: function (id, groupReplyto, toggle) { console.log("in TogglePrivate"); if (groupReplyto == 2) { // Reply To Moderators if (toggle == 1) { $('#replytype' + id).val('sender'); $('#isprivate' + id).val('1'); $('#replybutton' + id).html(' Reply to Sender'); $('#replybutton' + id).removeClass('btn-success').removeClass('btn-info').addClass('btn-primary'); $('#private' + id).removeClass('btn-default').addClass('btn-primary'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 2);return false;"); $('#grouptoggle' + id).removeClass('btn-success').addClass('btn-default'); $('#grouptoggle' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 1);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val('Private: ' + subj); $('#bccme' + id).show(); } else if (toggle == 2) { $('#replytype' + id).val('mods'); $('#isprivate' + id).val(''); $('#replybutton' + id).html(' Reply to Mods'); $('#replybutton' + id).removeClass('btn-success').removeClass('btn-primary').addClass('btn-info'); $('#grouptoggle' + id).removeClass('btn-success').addClass('btn-default'); $('#grouptoggle' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 0);return false;"); $('#private' + id).removeClass('btn-primary').addClass('btn-default'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 1);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val(subj.replace('Private: ', '')); $('#bccme' + id).show(); } else { $('#replytype' + id).val('group'); $('#isprivate' + id).val(''); $('#replybutton' + id).html(' Reply to Group'); $('#replybutton' + id).removeClass('btn-primary').removeClass('btn-info').addClass('btn-success'); $('#private' + id).removeClass('btn-primary').addClass('btn-default'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 2);return false;"); $('#grouptoggle' + id).removeClass('btn-default').addClass('btn-success'); $('#grouptoggle' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 2);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val(subj.replace('Private: ', '')); $('#bccme' + id).hide(); } } else if (groupReplyto == 1) { // Reply To Sender if (toggle == 1) { $('#replytype' + id).val('sender'); $('#isprivate' + id).val('1'); $('#replybutton' + id).html(' Reply to Sender'); $('#replybutton' + id).removeClass('btn-success').addClass('btn-primary'); $('#private' + id).removeClass('btn-success').addClass('btn-default'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 0);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val('Private: ' + subj); $('#bccme' + id).show(); } else { $('#replytype' + id).val('group'); $('#isprivate' + id).val(''); $('#replybutton' + id).html(' Reply to Group'); $('#replybutton' + id).removeClass('btn-primary').addClass('btn-success'); $('#private' + id).removeClass('btn-default').addClass('btn-success'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 1);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val(subj.replace('Private: ', '')); $('#bccme' + id).hide(); } } else if (groupReplyto == 3) { // Reply To Group And Sender if (toggle == 1) { $('#replytype' + id).val('sender'); $('#isprivate' + id).val('1'); $('#replybutton' + id).html(' Reply to Sender'); $('#replybutton' + id).removeClass('btn-success').addClass('btn-primary'); $('#private' + id).removeClass('btn-default').addClass('btn-primary'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 0);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val('Private: ' + subj); $('#bccme' + id).show(); } else { $('#replytype' + id).val('group'); $('#isprivate' + id).val(''); $('#replybutton' + id).html(' Reply to Group & Sender'); $('#replybutton' + id).removeClass('btn-primary').addClass('btn-success'); $('#private' + id).removeClass('btn-primary').addClass('btn-default'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 1);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val(subj.replace('Private: ', '')); $('#bccme' + id).hide(); } } else if (groupReplyto == 5) { // Reply To Followers Only if (toggle == 1) { $('#replytype' + id).val('sender'); $('#isprivate' + id).val('1'); $('#replybutton' + id).html(' Reply to Sender'); $('#replybutton' + id).removeClass('btn-success').addClass('btn-primary'); $('#private' + id).removeClass('btn-default').addClass('btn-primary'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 0);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val('Private: ' + subj); $('#bccme' + id).show(); } else { $('#replytype' + id).val('group'); $('#isprivate' + id).val(''); $('#replybutton' + id).html(' Reply to Topic Followers Only'); $('#replybutton' + id).removeClass('btn-primary').addClass('btn-success'); $('#private' + id).removeClass('btn-primary').addClass('btn-default'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 1);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val(subj.replace('Private: ', '')); $('#bccme' + id).hide(); } } else { if (toggle == 1) { $('#replytype' + id).val('sender'); $('#isprivate' + id).val('1'); $('#replybutton' + id).html(' Reply to Sender'); $('#replybutton' + id).removeClass('btn-success').addClass('btn-primary'); $('#private' + id).removeClass('btn-default').addClass('btn-primary'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 0);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val('Private: ' + subj); $('#bccme' + id).show(); } else { $('#replytype' + id).val('group'); $('#isprivate' + id).val(''); $('#replybutton' + id).html(' Reply to Group'); $('#replybutton' + id).removeClass('btn-primary').addClass('btn-success'); $('#private' + id).removeClass('btn-primary').addClass('btn-default'); $('#private' + id).attr('onclick', "editor.TogglePrivate('" + id + "','" + groupReplyto + "', 1);return false;"); subj = $('#subject' + id).val(); $('#subject' + id).val(subj.replace('Private: ', '')); $('#bccme' + id).hide(); } } tinyMCE.get('editor' + id).focus(); }, ClearTimeout: function() { clearTimeout(modTimeoutId); }, ShowMessageHistory: function( id, groupurl, bodytype, selectedText, sig, firstTime ) { console.log('URL ' + groupurl); console.log('ID ' + id); if (bodytype == 'html' && firstTime == false) { existingmsg = tinyMCE.get('editor' + id).getContent(); } else { existingmsg = $('#editor' + id).val(); } if (selectedText == '') { upload = { preview: bodytype, id: id }; } else { upload = { preview: bodytype, id: id, text: selectedText }; if (firstTime == true) { existingmsg = sig; } } $.ajax({ url: fixupURL(groupurl + '/previewmd'), cache: false, data: upload, method: 'POST', xhrFields: { withCredentials: true }, dataType: 'json' }).done(function (response) { $('#editor' + id).val(response.reply + existingmsg); if (bodytype == 'html') { console.log('SETTING ' + response.reply + existingmsg); tinyMCE.get('editor' + id).setContent(response.reply + existingmsg); tinyMCE.get('editor' + id).selection.select(tinyMCE.get('editor' + id).getBody(), true); tinyMCE.get('editor' + id).selection.collapse(false); console.log('DONE'); } }); $('#editor' + id).focus(); } /* $('form').submit(function(e) { clearTimeout(modTimeoutId); if (postVar != null) { postVar.abort(); } console.log("SETTING DELETED TO TRUE"); console.log("EVENT:", e); modDeletedDraft = true; if ($(this).hasClass('form-submitted')) { e.preventDefault(); return; } $(this).addClass('form-submitted'); }); */ };}());

  1. Cape-Breton-genealogy@groups.io
  2. Messages
  3. Cape Breton Deaths MARCH 28, 2023 TUESDAY

Search

(Video) Hiking Wilkie Sugarloaf Mountain In Winter Cape Breton Island
  • previous page
  • #1335
  • next page

Cape Breton Deaths MARCH 28, 2023 TUESDAY

Carol MacLean

#1335


The Cape Breton Deaths courtesy of CAPE BRETON GENEALOGY & HISTORICAL ASSOCIATION

VISIT OUR WEBSITE -<> NEW MEMBERS WELCOME

Cape Breton Deaths MARCH 28, 2023 TUESDAY

There were 7 obituaries published today

JOAN PATRICIA “PAT” (KING) GILLIS - 85 YRS

MARY “BUBBA” MACDONALD - 64 YRS

BERTHA HELENA (MUSIAL) MACDONALD - 93 YRS

PATRICIA “PATSY” (MCGEAN) MACDOUGALL -

JOSEPH F “SONNY” MCINTYRE - 90 YRS

JOHN JOSEPH “JOEY” PEINSZNSKI - 65 YRS

JEFFREY FREDERICK SMITH - 59 YRS

JOAN PATRICIA “PAT” (KING) GILLIS - 85 YRS

It is with sadness that we announce the passing of Patricia “Pat” Gillis, age 85, on Sunday, March 26, 2023, in MacGillivray Guest Home, Sydney. Born in Glace Bay, Patricia was the daughter of the late Sylvester “Syl” & Anastasia (Hickey) King. She was employed at Carroll’s Drug Store as well as Lighter’s Jewelry Store in Glace Bay for many years. Patricia was an amazing woman with a great sense of humor. Patricia is survived by special cousins, Wayne & Barb Hickey, 905-767-2805, Ajax, Ont., Bernie & Donna Hickey, Coxheath, Patsy & Kenny King, Tower Road and her sister-in-law, Elva King, P.E.I. She was predeceased by her husband, Walter Gillis and a brother, Bud. Cremation has taken place under the direction of V.J. McGillivray Funeral Home, Glace Bay. Burial will be held in Glace Bay at a later date. As an expression of sympathy for Patricia, memorial donations in her memory may be made to a charity of one’s choice. Online condolences to the family can be expressed at:www.vjmcgillivray.ca

MARY “BUBBA” MACDONALD - 64 YRS

It is with great sadness that we announce the passing of Mary “Bubba” MacDonald age 64, on Saturday March 25, 2023, in Northside General Hospital with her loving family by her side. Born in North Sydney, September 23, 1958, Mary was a daughter of the late Harvey and Peggy (Ivey) MacDonald. She worked for a number of years as a teacher’s assistant and recent years as a labourer for Local Union #92 in western Canada. Mary “Bubba” is survived by her partner, Fred Jabalee; and his daughter Carla; a brother, Tom (Geraldine Boland) MacDonald; sisters, Ann Stevenson and Thelma MacNeil (Rollie Morrison); nephews, Clayton, John Joseph (Kim), Dylan (Alyson), Kyle (Stevie); nieces, Amber and Katie, Layla and Adalynn. Also surviving her aunts, Thelma Scott, Betty Marsh, Mary (Joe) Skinner, Linda (Lorne) Skinner, Bertha Ivey, Louise Ivey, Mary Boyd; uncles, Russell Ivey, Terry (Marilyn) Ivey and Kevin (Shirley) MacDonald. Besides her parents, Harvey and Peggy MacDonald; Mary was predeceased by her brothers, Peter and Victor MacDonald; by a nephew, Matthew Stevenson. The family would like to thank Dr. Kang, Dr. Poulos, Dr Khodadad, Eleanor, Dr. Burns, Julia, the Cancer Unit at Cape Breton Regional Hospital, the VON, Dr. Alex Wawer and staff of 4 west at the Northside General Hospital and her friends and family who were there for her. A special thank you to Tommy Walsh, security staff at the Northside General Hospital. Through her diagnosis and battle with cancer thirteen months ago, one of her biggest inspirations and supporter was her very dear cousin and best friend Monica Grandy who remained by her side to the very end. Visitation for Mary will be held 7-9 p.m. Wednesday in the W.J. Dooley Funeral Home, 107 Pleasant Street, North Sydney. A Funeral Mass will be celebrated 2 p.m. Thursday at St. Joseph Church with Rev. Doug MacDonald officiating. Burial to take place at Holy Cross Cemetery at a later date. Online condolences may be left for the family by leaving a message on the tribute wall of the obituary at:www.wjdooley.com

BERTHA HELENA (MUSIAL) MACDONALD - 93 YRS

A visitation for Bertha Helena MacDonald will take place today on Tuesday, March 28, from 5 - 8 p.m. in McLellan Funeral Home, 3183 Plummer Ave New Waterford.www.mclellanfuneralhome.com

JULY 16, 1929 - MARCH 21, 2023. Bertha MacDonald, 93 of Gardiner Mines - It is with broken hearts that we, the family of Bertha Helena (Musial) MacDonald, announce that she passed peacefully on Tuesday, March 21, 2023 surrounded by her family. She was born in New Waterford, July 16, 1929, to Michael and Bertha (Boutilier) Musial. Bertha 'Mom' is perhaps best known to many as a skilled, reliable self-taught seamstress. Throughout the years many people from all over the Island came to her sewing room in her home where she made countless wedding gowns, bridesmaid dresses, figure skating costumes, and hemmed and altered pants, suits and other clothing items (and only ever charging “two dollars” it seemed). As if she wasn’t busy enough with sewing for everyone, she also spent hours proudly quilting many quilts, often with the helpful hands of her loyal Quilting Club friends who would gather weekly at each other’s homes. One of her proudest achievements was completing a quilt for each of her children and passing on her sewing creations to her grandchildren and great grandchildren alike. Those closest to her know that Mom, Nanny, Nan, loved to play a good game of cards, and hated to lose! She could always be called upon for her homemade bread and baked treats. Halloween was one of her favourite times of year, and she would spend hours late into the night creating and sewing a new costume each year for herself. She loved going from house to house in the neighborhood, hoping no one could figure out who she was beneath the costume and scaring her grandchildren. She also loved to ice skate and often told stories of all of the time she and her family and friends would spend skating on the frozen Lingan Bay. When she 'retired' from sewing for the final time , she tried to retire for many years, she spent her newly acquired free time in her flower gardens, and doing other casual things like, say like getting her driver’s license! She was a devoted Catholic and church goer and loyal member of the St. James Parish choir and Catechism programs. Mom, Nan, Nanny, 'Nanny Two Fingers' was a woman of many talents and much dedication and determination. We can only hope that these qualities will continue to be passed down to her children, grandchildren, great grandchildren and generations to come. Bertha is survived by her sons, Ernie (Verna), Paul (Cathy, deceased), Archie (Linda), Greg (Mary), Perry (Vicki); daughters, Isabell (Tommy) Attwood and Edwenna (Travis) Campbell. She is also survived by 13 grandchildren, 18 great-grandchildren and sister Isabell Musial (Dominion) and sister-in-law, Peggy Beaton (Truro). She was predeceased by her husband, Archie in August, 2019, a son and daughter in infancy, as well as her brothers Charlie, Michael, Greg, Conrad, Paul and her sisters Toni, Rena and Leonora. We would like to thank the staff of Harbourstone Enhanced Care for the care Mom received the past few years. Donations may be made to the Hospice Cape Breton or the Alzheimer Society of Nova Scotia. The family will receive visitors on Tuesday, March 28, in McLellan Funeral Home from 5 to 8 p.m. The funeral mass will be held in the Parish of Saint Leonard Church, Mount Carmel Avenue, on Wednesday, March 29, at 10 a.m. with Fr. Godwin Obike officiating. Interment will be in St. James Cemetery, Gardiner Mines. A reception is to follow at the Knights Of Columbus Hall, New Waterford. You may visit the Tribute Wall to share words of comfort and sympathy directly to the family.

PATRICIA “PATSY” (MCGEAN) MACDOUGALL -

Passed away peacefully at Valley Park Lodge, Niagara Falls, on Friday, March 24, 2023. Beloved wife of the late David (1984). Loving Mother to Katrina, Leigh-Ann and the late David (2019). Cherished Nana to David, Kayla, Brittany, Kathleen, and Chelsey and many great-grandchildren. She will be dearly missed by her siblings, Brian (Wanda) McGean, Michelle (Bruce) Pahl, Paul (Cyndi) McGean, Marylou (Jimmy) Edwards, and Gary (Marie) McGean as well as many nieces, nephews, extended family members and friends. Patsy was an outdoors enthusiast who was born in Sydney Mines, Cape Breton, Nova Scotia. With her background of being out east came the love for fishing, walking, and spending time with her family. She had a passion for crafts and was always creating something new. The holidays will not be the same without her making sure that everyone had their holiday colours on no matter the holiday. Patsy will be terribly missed by all who knew her. The family would like to express their heartfelt thanks to all the amazing staff at Valley Park Lodge for their care and support. In accordance with her wishes, cremation has taken place. Arrangements are entrusted to Essentials Cremation and Burial Services. A Celebration of Life for Patsy will be held at a later date in Cape Breton. In lieu of flowers, donations can be made to Valley Park Lodge in Patsy's memory. Online condolences may be shared on Patsy’s tribute page found atEssentialsNiagara.com.

JOSEPH F “SONNY” MCINTYRE - 90 YRS

Age 90. It is with deep heartache, that we the family of Sonny McIntyre, announce his passing in Cape Breton Regional Hospital, Sydney on Thursday, March 23, 2023. Sonny was a son of the late Helen (Nearing) and William McIntyre. Sonny was a Coal Miner for 39 years and a member of Dominion Fire Department. When he was younger, Sonny coached baseball for numerous years. Dad loved sports, especially the Toronto Blue Jays, and Toronto Maple Leaf’s. Sonny was very social in his younger years; and always had a quick wit and sense of humour, this wittiness lasted right up until his final days. Surviving Sonny is his wife, Cecilia McIntyre of 67 years; three sons, Paul (Mary Ann) McIntyre, Ross (Sheri) McIntyre, and Sean (Tanya) McIntyre; five daughters, Gail Aucoin (Glenn), Helen (Wes) Truckair, Chery Buchanan (Jerome), Lori McIntyre (Ted), and Karen McIntyre (Robert); daughter in law: Shawna McIntyre. Special mention to Omar MacPherson, a long-time friend of Da. Sonny is also survived by a brother, Michael McIntyre, Boston; three sisters, Eileen McNeil, Pat McCarthy, and Betty Zillich; as well as several grandchildren, great-grandchildren, and extended family. Along with his parents, Sonny was predeceased by his loving son, Gary McIntyre; brothers, Charles, John, and William; sisters, Millie and Cloe. We would like to express our sincere appreciation and thank you to all staff at Taigh Na Mara Nursing Facility for the care and compassion shown to my husband, and to our dad during his time there. Cremation has taken place. Visitation will be held on Wednesday, March 29, from 1-3 p.m., and a Celebration of Life to follow at 3 p.m., with Fr. Daniel Boudreau presiding, all in T.J. Tracey Cremation and Burial Specialists, 370 Reserve St., Glace Bay, N.S. 902.849.4199. In lieu of flowers, donations may be made to the Canadian Lung Association. Words of comfort may be expressed to the family by visiting:www.tjtracey.com

JOHN JOSEPH “JOEY” PEINSZNSKI - 65 YRS

The family of John Joseph ‘Joey’ Peinsznski regret to announce his passing on Wednesday, March 22, 2023, in the palliative care unit in Cape Breton Regional Hospital, Sydney. Born on April 1, 1957, in Glace Bay, Joey was the son of the late June and Paul Peinsznski. Joey is survived by his loving wife, Nancy; children, Marc (Jodi), Chris (Sheri) and Jolene; grandchildren, Ryan, Joshua, Isabella, Gracie and Laurel; brother, Junior (Heather); as well as many nieces, nephews, aunts, cousins and many close friends he considered family. Joey had many hobbies including fishing, Belgian Horses, wood working, four wheeling, tinkering in the garage, and helping people. His interests include Nascar racing (favorite driver number 48 Jimmie Johnson) and the Toronto Maple Leafs. Up until the end Joey worked as an equipment operator and truck driver. A special thank you to Dr. Abboud, Dr. McCarville, Dr. Anne Francis D'Intino, Dr. Ritter, and all the amazing nursing staff of palliative care unit at the Cape Breton Regional Hospital who were there for Joey in his time of need. Visitation for the late Joey Peinsznski will be held at the Pier Community Funeral Home, Whitney Pier, 1092 Victoria Rd. (entrance on Church Street) from 6-9 p.m. on Wednesday, March 29. A Celebration of Joey’s Life will be held in the funeral home, All Faith Chapel on Thursday, March 30, at 11 a.m. with Rev. Sheldon Chant officiating. Private interment will take place at a later date. In lieu of flowers, donations in memory of Joey may be made to Hospice Palliative Care, Cape Breton. Funeral arrangements are entrusted to the care and direction of Pier Community Funeral Home. Online condolences can be forwarded to the family at:www.pierfuneralhome.com

JEFFREY FREDERICK SMITH - 59 YRS

It is with broken hearts that we, the family of the late Jeffrey Frederick Smith, announce his sudden passing at home in Millville, age 59. Born August 21, 1963, in Mount Denson, Nova Scotia. Jeff (Jippy) was the loving son of the late Percy Frederick Smith and Muriel Margaret Smith (Moore). Jeff was a good ol’ Valley Boy with many amazing traits, talents, and passions. Jeff spent many years alongside his father and brother-in-law Howard (a true brother to Jeff) undercoating cars in their own backyard. His prized possessions were most definitely his corvette blue, 1972 Chevelle, and his Yamaha Venture tour bike, always with Ben on the back. At the age of 17, Jeff began work at Avon Foods and moved on to Avon Valley Greenhouses, where he worked Maintenance alongside Howard, as well as delivering flowers all over the province. Jeff moved on to New Brunswick, where he drove truck and eventually became an Instructor for D.W Driver Training. He was also a volunteer Fire Fighter with the Pennfield Fire Department, a job he truly loved! Although a Welder by trade, his true calling was as an Electrician. He was employed by Galpin Electric for many years. After he moved on from Galpin, Paul, Iggy & Jeff coined the phrase - WWJD (What would Jeff do?) He was a top-shelf Electrician and known for his re-wires, he loved the challenge. Jeff had a genuine sense of Community, whether he was lending a hand to his neighbors and friends, or just hanging out at Ralph’s Garage with “the boys,” he was so very content in Millville. An adventurer, Jeff loved the outdoors, whether he was in the woods, four-wheeling, on the water kayaking, or just sitting around a fire with family and friends. He and his loving wife, Robin took great pride in grooming their beautiful five-acre property, which was truly his happy place. Jeff is survived by the Love of his Life of 14 years, Robin, his only son Benjamin Smith (Erin), three daughters – Jennifer Smith Chandler (Devin), Shawna Smith (Tyler), and Angela Bigelow – niece who he considered a daughter (Chris), one sister Cindy Simpson (Howard). Five beautiful grandchildren – Brayden, Brea, Bentley, Louis (Lou-man) and Amya. mother-in-law, Loretta Dawe, father-in-law, Gordon Dawe, sister-in-law, Cathy Rudderham, Brothers-in-law, Stuart Rudderham (Emmaline), Dean Rudderham (Ethel), Robert Rudderham - and his adored fur Baby Tigger. Besides his parents, Jeff was predeceased by his grandparents Tom and Lavinia (Gillott) Moore and Burpee and Bertha (Swinimer) Smith Jeff will be greatly missed by all who knew him, he touched lives, and will live on in our hearts. His Legacy lives on in his children…Sleep with Angels, my Love. Family and friends are all welcome to attend Jeff’s Celebration of Life, held at Jobes Funeral Home, Sydney Mines Saturday, April 1st, from 1-3 p.m. Words of comfort may be forwarded to his family atwww.jmjobesfuneralhome.com

(Video) Mar. 5, 2020 - House of Assembly Proceedings

Videos

1. Feb. 27, 2020 - House of Assembly Proceedings
(Nova Scotia Legislature)
2. Hundreds of boats speeding in VB area prior to whale death, Oceana confirms
(WAVY TV 10)
3. GGC - 32 - World Famous Cabot Trail on Cape Breton Island, Nova Scotia
(Back To Reality)
4. CTV National News | Thursday, March 30, 2023
(CTV News)
5. Mar. 20, 2018 - House of Assembly Proceedings
(Nova Scotia Legislature)
6. House of Assembly Proceedings - April 28, 2017
(Legislative Television)

References

Top Articles
Latest Posts
Article information

Author: Zonia Mosciski DO

Last Updated: 09/16/2023

Views: 6294

Rating: 4 / 5 (51 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Zonia Mosciski DO

Birthday: 1996-05-16

Address: Suite 228 919 Deana Ford, Lake Meridithberg, NE 60017-4257

Phone: +2613987384138

Job: Chief Retail Officer

Hobby: Tai chi, Dowsing, Poi, Letterboxing, Watching movies, Video gaming, Singing

Introduction: My name is Zonia Mosciski DO, I am a enchanting, joyous, lovely, successful, hilarious, tender, outstanding person who loves writing and wants to share my knowledge and understanding with you.