| 1 | /* |
|---|
| 2 | AdEngine |
|---|
| 3 | $Id$ |
|---|
| 4 | |
|---|
| 5 | Copyright (c) 2006, Six Apart, Ltd. |
|---|
| 6 | All rights reserved. |
|---|
| 7 | |
|---|
| 8 | Redistribution and use in source and binary forms, with or without |
|---|
| 9 | modification, are permitted provided that the following conditions are |
|---|
| 10 | met: |
|---|
| 11 | |
|---|
| 12 | * Redistributions of source code must retain the above copyright |
|---|
| 13 | notice, this list of conditions and the following disclaimer. |
|---|
| 14 | |
|---|
| 15 | * Redistributions in binary form must reproduce the above |
|---|
| 16 | copyright notice, this list of conditions and the following disclaimer |
|---|
| 17 | in the documentation and/or other materials provided with the |
|---|
| 18 | distribution. |
|---|
| 19 | |
|---|
| 20 | * Neither the name of "Six Apart" nor the names of its |
|---|
| 21 | contributors may be used to endorse or promote products derived from |
|---|
| 22 | this software without specific prior written permission. |
|---|
| 23 | |
|---|
| 24 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 25 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|---|
| 26 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|---|
| 27 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|---|
| 28 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|---|
| 29 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|---|
| 30 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|---|
| 31 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|---|
| 32 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|---|
| 33 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|---|
| 34 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 35 | */ |
|---|
| 36 | |
|---|
| 37 | AdEngine = { |
|---|
| 38 | |
|---|
| 39 | /* called from window.onload ONLY on the logged out blog side (view) */ |
|---|
| 40 | init: function() { |
|---|
| 41 | var es = document.getElementsByTagName( "script" ); |
|---|
| 42 | for ( var i = 0; i < es.length; i++ ) { |
|---|
| 43 | var ar = es[ i ].getAttribute( "defersrc" ); |
|---|
| 44 | if( !ar ) |
|---|
| 45 | continue; |
|---|
| 46 | |
|---|
| 47 | var cl = es[ i ].cloneNode( true ); |
|---|
| 48 | if ( !cl ) |
|---|
| 49 | continue; |
|---|
| 50 | |
|---|
| 51 | cl.setAttribute( "src", ar ); |
|---|
| 52 | cl.removeAttribute( "defersrc" ); |
|---|
| 53 | |
|---|
| 54 | /* replace new, old */ |
|---|
| 55 | try { |
|---|
| 56 | es[ i ].parentNode.replaceChild( cl, es[ i ] ); |
|---|
| 57 | } catch (e) {} |
|---|
| 58 | } |
|---|
| 59 | }, |
|---|
| 60 | |
|---|
| 61 | |
|---|
| 62 | insertAdResponse: function( params ) { |
|---|
| 63 | var e = document.getElementById( params.id ); |
|---|
| 64 | if( !e ) |
|---|
| 65 | return; |
|---|
| 66 | if( params.html ) { |
|---|
| 67 | var e2 = document.createElement( "div" ); |
|---|
| 68 | e2.innerHTML = params.html; |
|---|
| 69 | e.innerHTML = ""; // clear old content |
|---|
| 70 | e.appendChild( e2 ); |
|---|
| 71 | } |
|---|
| 72 | if( params.js ) |
|---|
| 73 | return eval( "(" + params.js + ")" ); |
|---|
| 74 | }, |
|---|
| 75 | |
|---|
| 76 | insertAdsMulti: function( params ) { |
|---|
| 77 | var i = 0; |
|---|
| 78 | for (i = 0; i < params.length; i++) { |
|---|
| 79 | AdEngine.insertAdResponse( params[i] ); |
|---|
| 80 | } |
|---|
| 81 | } |
|---|
| 82 | |
|---|
| 83 | }; |
|---|