diff options
author | Stefan Breunig <stefan@mathphys.fsk.uni-heidelberg.de> | 2012-10-23 17:23:18 +0200 |
---|---|---|
committer | Stefan Breunig <stefan@mathphys.fsk.uni-heidelberg.de> | 2012-10-23 17:23:18 +0200 |
commit | cfff8cbe83eaaf4523123b50c8bfd14e97744214 (patch) | |
tree | 4b56c0d6bcaed16f728f525dfe85ed8e01ec353c /send2cgeo | |
parent | afa156a6d407e7280b58268bec5ae11a3a43873a (diff) | |
download | cgeo-cfff8cbe83eaaf4523123b50c8bfd14e97744214.zip cgeo-cfff8cbe83eaaf4523123b50c8bfd14e97744214.tar.gz cgeo-cfff8cbe83eaaf4523123b50c8bfd14e97744214.tar.bz2 |
modernizes the send2cgeo userscript (see #2109).
* uses modern overlay popup instead of new tab. Which means
- it doesn’t have to be closed manually
- it works better with single window and "don't allow new tab/window" modes
* in map view, the link may be middle clicked
Diffstat (limited to 'send2cgeo')
-rw-r--r-- | send2cgeo/send2cgeo.user.js | 95 |
1 files changed, 68 insertions, 27 deletions
diff --git a/send2cgeo/send2cgeo.user.js b/send2cgeo/send2cgeo.user.js index bb07ef4..2b7fc30 100644 --- a/send2cgeo/send2cgeo.user.js +++ b/send2cgeo/send2cgeo.user.js @@ -4,44 +4,85 @@ // @description Add Send to c:geo button to geocaching.com // @include http://www.geocaching.com/seek/cache_details* // @include http://www.geocaching.com/map/* -// @version 0.25 +// @updateURL http://send2.cgeo.org/send2cgeo.user.js +// @version 0.26 // ==/UserScript== -// Inserts javascript that will be called by the s2cgeo button +// Inserts javascript that will be called by the s2cgeo button. The closure +// look strange, but avoids having to escape the code. Almost everything +// is put into that script element so that geocaching.com's jQuery may be +// accessed. + var s = document.createElement('script'); s.type = 'text/javascript'; -s.innerHTML = 'function s2cgeo(code) {' - + 'window.open(\'http://send2.cgeo.org/add.html?cache=\'+code,' - + '\'cgeo\',\'height=50,width=50\'); }'; -document.getElementsByTagName("head")[0].appendChild(s); +s.textContent = '(' + function() { + // function that handles the actual sending ////////////////////////////////// + + window.s2geo = function(code) { + // show the box and the "please wait" text + $('#send2cgeo, #send2cgeo div').fadeIn(); + // hide iframe for now and wait for page to be loaded + $('#send2cgeo iframe') + .hide() + .unbind('load') + .attr('src', 'http://send2.cgeo.org/add.html?cache='+code) + .load(function() { + // hide "please wait text" and show iframe + $('#send2cgeo div').hide(); + // hide box after 3 seconds + $(this).show().parent().delay(3000).fadeOut(); + }); + } + + + // Defines the elements to insert into the page ////////////////////////////// + var boxWidth = 20, + boxHeight = 7; + + var boxStyle = 'display:none; background:#1D1D1D; z-index:1000; left:50%;' + + 'box-shadow:0 0 0.5em #000; padding:0; border:0; ' + + 'position:fixed; top:0.5em; text-align:center; ' + + 'margin-left:-'+(boxWidth/2)+'em; line-height:'+boxHeight+'em;' + + 'width:'+boxWidth+'em; height:'+boxHeight+'em; color: #fff'; + var waitStyle = 'width: '+boxWidth+'em; color: #fff'; + var iframeStyle = 'border:0; width:'+boxWidth+'em; height: '+boxHeight+'em'; + + $('body').append('<div id="send2cgeo" style="'+boxStyle+'">' + + '<div style="'+waitStyle+'">Please wait…</div>' + + '<iframe style="'+iframeStyle+'"></iframe>' + + '</div>'); -var map = document.getElementById('cacheDetailsTemplate'); -if( map != null ) -{ + // Append to send2cgeo links/buttons ///////////////////////////////////////// + var map = document.getElementById('cacheDetailsTemplate'); + + if(map !== null) { + // geocaching.com map view var html = 'Log Visit</span></a> <br /> ' - + '<a class="lnk ui-block-b" href="javascript:s2cgeo(\'{{=gc}}\');" ' + + '<a class="lnk ui-block-b" ' + + 'href="http://send2.cgeo.org/add.html?cache={{=gc}}" ' + + 'onclick="window.s2geo(\'{{=gc}}\'); return false;" ' + 'class="lnk">' + '<img src="/images/sendtogps/sendtogps_icon.png" ' + 'align="absmiddle" border="0"> ' + '<span>Send to c:geo</span>'; - + map.innerHTML = map.innerHTML.replace('Log Visit</span>', html); -} -else -{ - var d = document.getElementById('Download'); - var m = d.children; - var last = m.item(m.length-1); - var GCElement = document.getElementById('ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoCode'); - var GCCode = GCElement.innerHTML; - - var html = '| <input type="button" ' - + 'name="ctl00$ContentBody$btnSendTocgeo" ' + } else { + // geocaching.com cache detail page + var GCCode = $('#ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoCode') + .html(); + + var html = ' | <input type="button" ' + 'value="Send to c:geo" ' - + 'onclick="s2cgeo(\''+GCCode+'\'); ' + + 'onclick="window.s2geo(\''+GCCode+'\'); ' + 'return false;" ' - + 'id="ctl00_ContentBody_btnSendTocgeo" />'; - - last.innerHTML = last.innerHTML + html; -}
\ No newline at end of file + + '/>'; + + $('#Download p:last').append(html); + } +} + ')();' + +// Inject Script. Can’t use jQuery yet, because the page is not +// accessible from Tampermonkey +document.getElementsByTagName("head")[0].appendChild(s); |