// turns off sharing links when editing
function editCurrent(url) {
window.location.href = url;
}
function deleteBlogEntry(blogid, blogentid, msgid) {
var link = '/aspx/blob2/admin/blogs/blogsdeleteBlogEntry.aspx?blogid=' + blogid + '&blogentid=' + blogentid + '&msgid=' + msgid;
location.href = link;
return;
}
function deleteBlog1Entry(blogid, blog1blogid, blogentid, msgid) {
var link = '/aspx/blob2/admin/blogs/blogsdeleteBlogEntry.aspx?provider=blog1&blogid=' + blogid + '&blog1blogid=' + blog1blogid + '&blogentid=' + blogentid + '&msgid=' + msgid;
location.href = link;
return;
}
function deleteBlogComment(blogid, blogcommentid) {
var result = confirm("Are you sure you want to delete this blog entry comment?");
if (result) {
$('#ctl19_ctl03_ctl00_hf_FormAction').attr("value", "DELCOM|" + blogid + "|" + blogcommentid);
doAsyncPostback();
}
return result;
}
function scrollToAnchor(aid) {
var aTag = $(aid);
$('html,body').stop().animate({ scrollTop: aTag.offset().top - 100 }, 2500, 'easeInOutExpo');
}
$(document).ready(function () {
$(window).resize();
var commentid = 0;
var blogentryid = '0';
if (blogentryid.length > 1) {
$('#liEditArticle').fadeIn('fast', function () {
$('#liRemoveArticle').fadeIn('fast');
});
if ('204462c6-6105-436e-89c7-169e5d1f3a1e' != '') {
setTimeout(function () {
getArticleViews();
}, 10);
}
}
else if ('204462c6-6105-436e-89c7-169e5d1f3a1e' != '') {
setTimeout(function () {
getArticleViews();
}, 10);
}
else {
//do nothing
}
setTimeout(function () {
if ($('#disqus_comments_script_wrapper').length > 0) {
$('body').append($('#disqus_comments_script_wrapper'));
}
}, 12);
//var blogEntryDetail = $('#blog-entry-detail').length;
//if (blogEntryDetail == 1) {
// // we are showing an article
// $('.blog-button-wrapper').show();
// //$('.blog-button-wrapper').css('display','block');
// $('a.btn-blog-action[data-target="edit"]').parent().show();
// $('a.btn-blog-action[data-target="remove"]').parent().show();
//}
//else {
// $('.blog-button-wrapper').show();
// //$('.blog-button-wrapper').css('display','block');
// $('a.btn-blog-action[data-target="edit"]').parents().closest('li').hide();
// $('a.btn-blog-action[data-target="remove"]').parents().closest('li').hide();
// alert('noshow');
//}
//var bview = getCurrentView();
//setTimeout(function () {
// switch (bview) {
// case "article": {
// $('.blog-button-wrapper').show();
// //$('.blog-button-wrapper').css('display','block');
// $('a.btn-blog-action[data-target="edit"]').parents().closest('li').show();
// $('a.btn-blog-action[data-target="remove"]').parents().closest('li').show();
// break;
// }
// default: {
// $('.blog-button-wrapper').show();
// //$('.blog-button-wrapper').css('display','block');
// $('a.btn-blog-action[data-target="edit"]').parents().closest('li').hide();
// $('a.btn-blog-action[data-target="remove"]').parents().closest('li').hide();
// }
// }
//}, 1000);
});// end doc.ready
$(window).resize(function () {
//setPageLayout();
setTimeout(function () {
// blog1 snippet...
if ($('body').find('#summary-masonry').length > 0) {
// this was a jquery method thats been lost or deprecated
// from unify that created the masonry view. since we're
// transitioning from Bootstrap3 to Bootrap4 before we update
// unify to b4 version...hide the masonry view.
// no one was using it on live but us.
//gridBoxesOnDemand();
}
}, 200);
});
$('body').on('click', '.blog-action', function (e) {
var target = $(this).attr('data-target')
switch (target) {
case "add": {
disableBackground("body", false, 0, 0, 0, 0)
break;
}
case "edit": {
disableBackground("body", false, 0, 0, 0, 0)
break;
}
}
});
$('body').on('click', 'a.blog1-tag', function (e) {
e.preventDefault();
e.stopPropagation();
doTagLookup($(this).text().trim());
});
$('body').on('click', 'a.blog1-category', function (e) {
e.preventDefault();
e.stopPropagation();
doCatLookup($(this).text().trim());
});
function doCatLookup(inval) {
try {
$.ajax({
type: 'POST',
url: '/aspx/Blob2/Blobs/BlobWebService.aspx/GetCatUrl',
data: '{"originalid":"27442","category":' + JSON.stringify(inval) + '}',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
async: false,
cache: false,
success: function (response) {
if (response.d.length > 0) {
window.location.assign(response.d);
}
else {
window.location.assign("/blog1/category/unknown");
}
},
failure: function (response) {
},
error: function (response) {
}
});
}
catch (err) {
}
}
function doTagLookup(inval) {
try {
$.ajax({
type: 'POST',
url: '/aspx/Blob2/Blobs/BlobWebService.aspx/GetTagUrl',
data: '{"originalid":"27442","tag":' + JSON.stringify(inval) + '}',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
async: false,
cache: false,
success: function (response) {
if (response.d.length > 0) {
window.location.assign(response.d);
}
else {
window.location.assign("/blog1/tag/unknown");
}
},
failure: function (response) {
},
error: function (response) {
}
});
}
catch (err) {
}
}
$(function () {
if ($('#anchor_FBStatus').length >= 1) {
$('#anchor_FBStatus').popover();
$('#anchor_TWStatus').popover();
$('#anchor_FBStatus').click(function (e) {
$('.popover-title').append('
');
$(this).popover();
});
$('#anchor_TWStatus').click(function (e) {
$('.popover-title').append('
');
$(this).popover();
});
$(document).click(function (e) {
if (e.target.id == "popovercloseid1") {
$('#anchor_FBStatus').popover('hide');
}
if (e.target.id == "popovercloseid2") {
$('#anchor_TWStatus').popover('hide');
}
});
}
});
function doAsyncPostback() {
//ff-bug #325 fix
setTimeout(function () {
__doPostBack("ctl19$ctl03$ctl00$lb_Async", "");
}, 1);
}
function getTempKey() {
return '2ab85c3e-cd44-405f-868f-945b54271aec';
}
function getTalkspotBlogId() {
return 197662;
}
function doAddArticle() {
//ff-bug #325 fix
setTimeout(function () {
__doPostBack("ctl19$ctl03$ctl00$btnAddArticle", "");
}, 1);
}
function doEditArticle() {
//ff-bug #325 fix
setTimeout(function () {
__doPostBack("ctl19$ctl03$ctl00$btnEditArticle", "");
}, 1);
}
function doRemoveArticle() {
$("#ctl19_ctl03_ctl00_btnDeleteArticle").click();
}
function getCurrentView() {
return $('#ctl19_ctl03_ctl00_hf_FormAction').val();
}
- 10/24/2016
- admin
- 786 views
After almost 2 years of virtual rest for the old girl, now time to get some heat back into the John Deere. After a good shake down with a 3 day circumnavigation around North & South Bruny Islands, she is ready for a serious fishing adventure around to the remote Port Davey, north of the SW Cape. This trip is with avid fisherman friends from Melbourne. John, Harry, Philip, & Manoli. Each year with our sons in Melbourne we spend a weekend making Salami. This year we entered our produce in the Me...
Read More
|
Hobart, Tasmania to Port Davey SW through the roaring 40's
|
var ctl19_ctl04_ctl00_ii = {"hoaid":27923,"blobid":28573826,"pictureUrl":"/uploads/27442/scratch/aviaryeditedimages/uploads/27442/blog1/28573826IMG_3897.JPG","version":"5","maxWidth":"","maxHeight":"","allowStretchHoriz":"","allowStretchVert":"","captionDir":"","heading":null,"caption":"Hobart, Tasmania to Port Davey SW through the roaring 40\u0027s","captionHorizPosition":"center","captionVertPosition":"bottom","talkspot_shaded":"","setLink":{"linkPrefix":"","linkSuffix":"","thumbpicurl":""},"modifiedDate":"1990-1-1-0-0-0","fullWidth":"false","capLogoSize":"100","logo":"","logoAlign":"","logoTag":"","widthAttr":"","heightAttr":"","altText":"Hobart, Tasmania to Port Davey SW through the roaring 40\u0027s","dataAttribute":"","jsToKillPadding":"","capColor":"#000000","capHeadingSize":"2","capCaptionSize":"1","imgTag":"\u003cimg id=\"ctl19_ctl04_ctl00_img\" src=\"/uploads/27442/scratch/aviaryeditedimages/uploads/27442/blog1/28573826IMG_3897.JPG?z=1990-1-1-0-0-0\" class=\"img-responsive img-fluid blob-simple-pic\" data-thumbnail=\"/uploads/27442/scratch/aviaryeditedimages/uploads/27442/blog1/28573826IMG_3897.JPG?version=5\" style=\"margin: 0px auto !important; ;\" alt=\"Hobart, Tasmania to Port Davey SW through the roaring 40\u0027s\" /\u003e","captionTag":"","captionAlign":"","captionTemplate":"","masterTemplate":"\u003cdiv class=\"container-fluid tsMdb \" style=\"padding-left: 0px; padding-right: 0px; overflow:hidden; \"\u003e\r\n \u003cdiv class=\"row\"\u003e\r\n \u003cdiv class=\"col-md-12\"\u003e\r\n \r\n \u003cdiv class=\"mx-auto\" style=\"\"\u003e\r\n \u003cimg id=\"ctl19_ctl04_ctl00_img\" src=\"/uploads/27442/scratch/aviaryeditedimages/uploads/27442/blog1/28573826IMG_3897.JPG?z=1990-1-1-0-0-0\" class=\"img-responsive img-fluid blob-simple-pic\" data-thumbnail=\"/uploads/27442/scratch/aviaryeditedimages/uploads/27442/blog1/28573826IMG_3897.JPG?version=5\" style=\"margin: 0px auto !important; ;\" alt=\"Hobart, Tasmania to Port Davey SW through the roaring 40\u0027s\" /\u003e\r\n \u003c/div\u003e\r\n \u003c/div\u003e\r\n \r\n \u003c/div\u003e\r\n \u003cdiv class=\"flex-center \"\u003e\r\n \u003cdiv class=\"d-inline-block mx-auto \"\u003e\r\n \r\n\u003c!-- captionVerticalCenter --\u003e\r\n\u003ctable style=\"width: 100%\"\u003e\r\n \u003ctr\u003e\r\n \u003ctd\u003e\r\n \u003cspan class=\"d-flex justify-content-center\"\u003e\r\n \r\n \u003c/span\u003e\r\n \u003c/td\u003e\r\n \u003c/tr\u003e\r\n \u003ctr\u003e\r\n \u003ctd\u003e\r\n \u003cspan class=\"d-flex justify-content-center\" style=\"font-size: 2vw; color: #000000;\"\u003e\u003c/span\u003e\r\n \u003cspan class=\"d-flex justify-content-center\" style=\"font-size: 1vw; color: #000000;\"\u003eHobart, Tasmania to Port Davey SW through the roaring 40\u0027s\u003c/span\u003e\r\n \u003c/td\u003e\r\n \u003c/tr\u003e\r\n\u003c/table\u003e\r\n\u003c!-- captionVerticalCenter --\u003e\r\n\r\n \u003c/div\u003e \r\n \u003c/div\u003e\r\n\u003c/div\u003e\r\n"};
|
Food, food, and more food.
|
var ctl19_ctl21_ctl00_ii = {"hoaid":27923,"blobid":29086714,"pictureUrl":"/uploads/27442/blog1/IMG_2503.JPG","version":"2","maxWidth":"","maxHeight":"","allowStretchHoriz":"","allowStretchVert":"","captionDir":"","heading":null,"caption":"Food, food, and more food.","captionHorizPosition":"center","captionVertPosition":"bottom","talkspot_shaded":"","setLink":{"linkPrefix":"","linkSuffix":"","thumbpicurl":""},"modifiedDate":"1990-1-1-0-0-0","fullWidth":"false","capLogoSize":"100","logo":"","logoAlign":"","logoTag":"","widthAttr":"","heightAttr":"","altText":"Food, food, and more food.","dataAttribute":"","jsToKillPadding":"","capColor":"#000000","capHeadingSize":"2","capCaptionSize":"1","imgTag":"\u003cimg id=\"ctl19_ctl21_ctl00_img\" src=\"/uploads/27442/blog1/IMG_2503.JPG?z=1990-1-1-0-0-0\" class=\"img-responsive img-fluid blob-simple-pic\" data-thumbnail=\"/uploads/27442/blog1/IMG_2503.JPG?version=2\" style=\"margin: 0px auto !important; ;\" alt=\"Food, food, and more food.\" /\u003e","captionTag":"","captionAlign":"","captionTemplate":"","masterTemplate":"\u003cdiv class=\"container-fluid tsMdb \" style=\"padding-left: 0px; padding-right: 0px; overflow:hidden; \"\u003e\r\n \u003cdiv class=\"row\"\u003e\r\n \u003cdiv class=\"col-md-12\"\u003e\r\n \r\n \u003cdiv class=\"mx-auto\" style=\"\"\u003e\r\n \u003cimg id=\"ctl19_ctl21_ctl00_img\" src=\"/uploads/27442/blog1/IMG_2503.JPG?z=1990-1-1-0-0-0\" class=\"img-responsive img-fluid blob-simple-pic\" data-thumbnail=\"/uploads/27442/blog1/IMG_2503.JPG?version=2\" style=\"margin: 0px auto !important; ;\" alt=\"Food, food, and more food.\" /\u003e\r\n \u003c/div\u003e\r\n \u003c/div\u003e\r\n \r\n \u003c/div\u003e\r\n \u003cdiv class=\"flex-center \"\u003e\r\n \u003cdiv class=\"d-inline-block mx-auto \"\u003e\r\n \r\n\u003c!-- captionVerticalCenter --\u003e\r\n\u003ctable style=\"width: 100%\"\u003e\r\n \u003ctr\u003e\r\n \u003ctd\u003e\r\n \u003cspan class=\"d-flex justify-content-center\"\u003e\r\n \r\n \u003c/span\u003e\r\n \u003c/td\u003e\r\n \u003c/tr\u003e\r\n \u003ctr\u003e\r\n \u003ctd\u003e\r\n \u003cspan class=\"d-flex justify-content-center\" style=\"font-size: 2vw; color: #000000;\"\u003e\u003c/span\u003e\r\n \u003cspan class=\"d-flex justify-content-center\" style=\"font-size: 1vw; color: #000000;\"\u003eFood, food, and more food.\u003c/span\u003e\r\n \u003c/td\u003e\r\n \u003c/tr\u003e\r\n\u003c/table\u003e\r\n\u003c!-- captionVerticalCenter --\u003e\r\n\r\n \u003c/div\u003e \r\n \u003c/div\u003e\r\n\u003c/div\u003e\r\n"};
|
Bramble Cove, Port Davey. World Heritage park SW Tasmania.
|
var ctl19_ctl23_ctl00_ii = {"hoaid":27923,"blobid":29086716,"pictureUrl":"/uploads/27442/blog1/IMG_2441.JPG","version":"2","maxWidth":"","maxHeight":"","allowStretchHoriz":"","allowStretchVert":"","captionDir":"","heading":null,"caption":"Bramble Cove, Port Davey. World Heritage park SW Tasmania.","captionHorizPosition":"center","captionVertPosition":"bottom","talkspot_shaded":"","setLink":{"linkPrefix":"","linkSuffix":"","thumbpicurl":""},"modifiedDate":"1990-1-1-0-0-0","fullWidth":"false","capLogoSize":"100","logo":"","logoAlign":"","logoTag":"","widthAttr":"","heightAttr":"","altText":"Bramble Cove, Port Davey. World Heritage park SW Tasmania.","dataAttribute":"","jsToKillPadding":"","capColor":"#000000","capHeadingSize":"2","capCaptionSize":"1","imgTag":"\u003cimg id=\"ctl19_ctl23_ctl00_img\" src=\"/uploads/27442/blog1/IMG_2441.JPG?z=1990-1-1-0-0-0\" class=\"img-responsive img-fluid blob-simple-pic\" data-thumbnail=\"/uploads/27442/blog1/IMG_2441.JPG?version=2\" style=\"margin: 0px auto !important; ;\" alt=\"Bramble Cove, Port Davey. World Heritage park SW Tasmania.\" /\u003e","captionTag":"","captionAlign":"","captionTemplate":"","masterTemplate":"\u003cdiv class=\"container-fluid tsMdb \" style=\"padding-left: 0px; padding-right: 0px; overflow:hidden; \"\u003e\r\n \u003cdiv class=\"row\"\u003e\r\n \u003cdiv class=\"col-md-12\"\u003e\r\n \r\n \u003cdiv class=\"mx-auto\" style=\"\"\u003e\r\n \u003cimg id=\"ctl19_ctl23_ctl00_img\" src=\"/uploads/27442/blog1/IMG_2441.JPG?z=1990-1-1-0-0-0\" class=\"img-responsive img-fluid blob-simple-pic\" data-thumbnail=\"/uploads/27442/blog1/IMG_2441.JPG?version=2\" style=\"margin: 0px auto !important; ;\" alt=\"Bramble Cove, Port Davey. World Heritage park SW Tasmania.\" /\u003e\r\n \u003c/div\u003e\r\n \u003c/div\u003e\r\n \r\n \u003c/div\u003e\r\n \u003cdiv class=\"flex-center \"\u003e\r\n \u003cdiv class=\"d-inline-block mx-auto \"\u003e\r\n \r\n\u003c!-- captionVerticalCenter --\u003e\r\n\u003ctable style=\"width: 100%\"\u003e\r\n \u003ctr\u003e\r\n \u003ctd\u003e\r\n \u003cspan class=\"d-flex justify-content-center\"\u003e\r\n \r\n \u003c/span\u003e\r\n \u003c/td\u003e\r\n \u003c/tr\u003e\r\n \u003ctr\u003e\r\n \u003ctd\u003e\r\n \u003cspan class=\"d-flex justify-content-center\" style=\"font-size: 2vw; color: #000000;\"\u003e\u003c/span\u003e\r\n \u003cspan class=\"d-flex justify-content-center\" style=\"font-size: 1vw; color: #000000;\"\u003eBramble Cove, Port Davey. World Heritage park SW Tasmania.\u003c/span\u003e\r\n \u003c/td\u003e\r\n \u003c/tr\u003e\r\n\u003c/table\u003e\r\n\u003c!-- captionVerticalCenter --\u003e\r\n\r\n \u003c/div\u003e \r\n \u003c/div\u003e\r\n\u003c/div\u003e\r\n"};