diff options
Diffstat (limited to 'test/ import mapinfo_files')
22 files changed, 1355 insertions, 0 deletions
diff --git a/test/ import mapinfo_files/41o-vK6-8wL._SL70_.jpg b/test/ import mapinfo_files/41o-vK6-8wL._SL70_.jpg Binary files differnew file mode 100644 index 0000000..53b462d --- /dev/null +++ b/test/ import mapinfo_files/41o-vK6-8wL._SL70_.jpg diff --git a/test/ import mapinfo_files/51+ADVi+EdL._OU01_SL70_PI13-percent,BottomRight,0,0_CR0,0,57,70_.jpg b/test/ import mapinfo_files/51+ADVi+EdL._OU01_SL70_PI13-percent,BottomRight,0,0_CR0,0,57,70_.jpg Binary files differnew file mode 100644 index 0000000..7c9e020 --- /dev/null +++ b/test/ import mapinfo_files/51+ADVi+EdL._OU01_SL70_PI13-percent,BottomRight,0,0_CR0,0,57,70_.jpg diff --git a/test/ import mapinfo_files/51EL0wD7xHL._OU01_SL70_PI16-percent,BottomRight,0,0_CR0,0,56,70_.jpg b/test/ import mapinfo_files/51EL0wD7xHL._OU01_SL70_PI16-percent,BottomRight,0,0_CR0,0,56,70_.jpg Binary files differnew file mode 100644 index 0000000..ccd6e0b --- /dev/null +++ b/test/ import mapinfo_files/51EL0wD7xHL._OU01_SL70_PI16-percent,BottomRight,0,0_CR0,0,56,70_.jpg diff --git a/test/ import mapinfo_files/ads-common.js b/test/ import mapinfo_files/ads-common.js new file mode 100644 index 0000000..b065450 --- /dev/null +++ b/test/ import mapinfo_files/ads-common.js @@ -0,0 +1,538 @@ +// Color library + +// RGB object +function AmazonRGB(red, green, blue) +{ + // These are integers between 0 and 255 inclusive. + this.r = red; + this.g = green; + this.b = blue; +} + +// Accessor methods for the RGB components. +AmazonRGB.prototype.getR = function() { return this.r; }; +AmazonRGB.prototype.getG = function() { return this.g; }; +AmazonRGB.prototype.getB = function() { return this.b; }; + +// Defines and returns the 6-digit hex representation +// of this RGB color. +AmazonRGB.prototype.getHex = function() { + if (!this.hex) + { + var map = '0123456789ABCDEF'; + this.hex = '' + + map.substr(Math.floor(this.r / 16), 1) + + map.substr((this.r % 16), 1) + + map.substr(Math.floor(this.g / 16), 1) + + map.substr((this.g % 16), 1) + + map.substr(Math.floor(this.b / 16), 1) + + map.substr((this.b % 16), 1); + } + return this.hex; +}; + +// Returns the equivalent HSV object. +AmazonRGB.prototype.toHSV = function() { + // Normalize RGB values for color space transform. + var r = this.r / 255; + var g = this.g / 255; + var b = this.b / 255; + + // Helper values for color space transform. + var max = (r > g) ? r : g; + max = (max > b) ? max : b; + var min = (r < g) ? r : g; + min = (min < b) ? min : b; + + var delta = max - min; + + // Color space transform. + var v = max; + var s = 0; + + if (max > 0) { s = delta / max; } + + var h = 0; + + if (delta > 0) + { + if ((max == r) && (max != g)) + { + h += (g - b) / delta; + } + if ((max == g) && (max != b)) + { + h += (2 + (b - r) / delta); + } + if ((max == b) && (max != r)) + { + h += (4 + (r - g) / delta); + } + h = h * 60; + if (h < 0) { h += 360; } + } + + var result = new AmazonHSV(h, s, v); + return result; +}; + + +// HSV object +function AmazonHSV(hue, saturation, value) +{ + // These are real numbers between 0 and 1 inclusive. + this.h = hue; + this.s = saturation; + this.v = value; +} + +// Accessor methods for the HSV components. +AmazonHSV.prototype.getH = function() { return this.h; }; +AmazonHSV.prototype.getS = function() { return this.s; }; +AmazonHSV.prototype.getV = function() { return this.v; }; + +// Returns the equivalent RGB object. +AmazonHSV.prototype.toRGB = function() { + var sat_r; + var sat_g; + var sat_b; + + // Color space transform + if (this.h < 120) + { + sat_r = (120 - this.h) / 60; + sat_g = this.h / 60; + sat_b = 0; + } + else if (this.h < 240) + { + sat_r = 0; + sat_g = (240 - this.h) / 60; + sat_b = (this.h - 120) / 60; + } + else + { + sat_r = (this.h - 240) / 60; + sat_g = 0; + sat_b = (360 - this.h) / 60; + } + + if (sat_r > 1) { sat_r = 1; } + if (sat_g > 1) { sat_g = 1; } + if (sat_b > 1) { sat_b = 1; } + + var result = new AmazonRGB( + Math.round((1 - this.s + this.s * sat_r) * this.v * 255), + Math.round((1 - this.s + this.s * sat_g) * this.v * 255), + Math.round((1 - this.s + this.s * sat_b) * this.v * 255) + ); + + return result; +}; + + +/* Container object that holds an RGB object and an HSV object. + This is the catch-all type that gives you everything + you will need up front. With this object, you can create + a color from RGB values, HSV values, or a hex string. + + Upon object creation, you are not guaranteed that any of the + private properties exist yet (they are created as needed). + Therefore, you must use accessor methods to get each property + of this object. +*/ +function AmazonColor(type, a, b, c) +{ + if (type == 'rgb') + { + this.rgb = new AmazonRGB(a,b,c); + this.r = a; + this.g = b; + this.b = c; + } + else if (type == 'hsv') + { + this.hsv = new AmazonHSV(a,b,c); + this.h = a; + this.s = b; + this.v = c; + } + else if (type.match(/[0-9a-f]{6}/i)) + { + // 'type' argument was a hex color value + var map = '0123456789ABCDEF'; + this.r = map.indexOf(type.substr(0,1)) * 16 + map.indexOf(type.substr(1,1)); + this.g = map.indexOf(type.substr(2,1)) * 16 + map.indexOf(type.substr(3,1)); + this.b = map.indexOf(type.substr(4,1)) * 16 + map.indexOf(type.substr(5,1)); + this.rgb = new AmazonRGB(this.r, this.g, this.b); + this.hex = type; + } + else + { + // nothing to work with + return null; + } +} + +// Accessor methods for properties. +// Requested properties are calculated when first requested if necessary, +// then stored for later. +AmazonColor.prototype.getR = function() { + if (!this.r) + { + if (!this.rgb) { this.rgb = this.hsv.toRGB(); } + this.r = this.rgb.getR(); + } + return this.r; +}; + +AmazonColor.prototype.getG = function() { + if (!this.g) + { + if (!this.rgb) { this.rgb = this.hsv.toRGB(); } + this.g = this.rgb.getG(); + } + return this.g; +}; + +AmazonColor.prototype.getB = function() { + if (!this.b) + { + if (!this.rgb) { this.rgb = this.hsv.toRGB(); } + this.b = this.rgb.getB(); + } + return this.b; +}; + +AmazonColor.prototype.getH = function() { + if (!this.h) + { + if (!this.hsv) { this.hsv = this.rgb.toHSV(); } + this.h = this.hsv.getH(); + } + return this.h; +}; + +AmazonColor.prototype.getS = function() { + if (!this.s) + { + if (!this.hsv) { this.hsv = this.rgb.toHSV(); } + this.s = this.hsv.getS(); + } + return this.s; +}; + +AmazonColor.prototype.getV = function() { + if (!this.v) + { + if (!this.hsv) { this.hsv = this.rgb.toHSV(); } + this.v = this.hsv.getV(); + } + return this.v; +}; + +AmazonColor.prototype.getHex = function() { + if (!this.hex) + { + if (!this.rgb) { this.rgb = this.hsv.toRGB(); } + this.hex = this.rgb.getHex(); + } + return this.hex; +}; + +// Return a contrasting color of the same hue. +AmazonColor.prototype.getContrasting = function() { + var newH = this.getH(); + var newS = this.getS(); + var newV = this.getV(); + + if (newS == 0) + { + // Grayscale; don't change saturation + newV = (newV + 0.5) % 1; + } + else + { + newS = (newS + 0.5) % 1; + newV = (newV + 0.5) % 1; + + // Adjust color for better contrast if it's in the deep blue range. + if ((newH > 200) && (newH < 275)) + { + if ((newS >= 0.5) && (newV >= 0.5)) + { + // High saturation and value, decrease saturation + newS = newS / 2; + } + else if ((newS <= 0.5) && (newV <= 0.5)) + { + // Low saturation and value, increase value + newV = newV + 0.5; + } + } + } + + return new AmazonColor('hsv', newH, newS, newV); +}; + +// Return a similar color of the same hue. +AmazonColor.prototype.getSimilar = function() { + var newH = this.getH(); + var newS = this.getS(); + var newV = this.getV(); + + // Change it more for highly-saturated colors. + var tweak = (newS > 0.8) ? 0.1 : 0; + + if (newV > 0.6) { newV = newV - 0.2 - tweak; } + else if (newV < 0.4) { newV = newV + 0.2 + tweak; } + else { newV = newV - 0.3; } + + // Adjust color for better contrast if it's in the deep blue range. + if ((newH > 200) && (newH < 275)) + { + if (newS > 0.8) { newS = newS - 0.4; } + } + + return new AmazonColor('hsv', newH, newS, newV); +}; + +// Simple test to see if a color is "dark" or not. +AmazonColor.prototype.isDark = function() { + var rval = false; + var v = this.getV(); + + if (v < 0.6) + { + // Low value...it's dark. + rval = true; + } + else + { + var h = this.getH(); + var s = this.getS(); + + // A strongly-saturated blue or purple is considered "dark". + if ((h > 200) && (h < 275)) + { + if (s > 0.5) { rval = true; } + } + } + + return rval; +}; + + + +var oldErrorHandler = window.onerror; +window.onerror = amazon_error_handler; + +// Set our defaults. +if(!window.amazon_ad_width) { amazon_ad_width = 728; } +if(!window.amazon_ad_height) { amazon_ad_height = 90; } +if(!window.amazon_ad_tag) { amazon_ad_tag = ""; } +if(!window.amazon_ad_price) { amazon_ad_price = "all"; } +if(!window.amazon_ad_border) { amazon_ad_border = 'show'; } +if(!window.amazon_ad_logo) { amazon_ad_logo = 'show'; } +if(!window.amazon_ad_product_images) { amazon_ad_product_images = 'show'; } +if(!window.amazon_ad_link_target) { amazon_ad_link_target = "same"; } +if(!window.amazon_ad_referrer) { amazon_ad_referrer = "current"; } +if(!window.amazon_ad_discount) { amazon_ad_discount = "add"; } +if(!window.amazon_ad_linkcode) { amazon_ad_linkcode = "op1"; } + +amazon_pvid(); + +// Write the iframe +document.write('<ifr' + 'ame src="' + amazon_generate_url() + '" marginwidth="0" marginheight="0" width="' + amazon_ad_width + '" height="' + amazon_ad_height + '" border="0" frameborder="0" style="border:none;" scrolling="no"></iframe>'); + +// Flush parameters after render to restore defaults. +amazon_ad_width = null; +amazon_ad_height = null; +amazon_ad_price = null; +amazon_ad_border = null; +amazon_ad_logo = null; +amazon_ad_product_images = null; +amazon_ad_link_target = null; +amazon_ad_referrer = null; +amazon_ad_exclude = null; +amazon_ad_include = null; +amazon_ad_categories = null; +amazon_ad_discount = null; +amazon_ad_linkcode = null; +amazon_ad_title = null; + +window.onerror = oldErrorHandler; + +//------------- +// HELPER FUNCTIONS +//------------- +function amazon_generate_url() +{ + // Common stuff + var amazon_q = window.location.protocol + "//" + amazon_ad_rcm + "/e/cm?"; + amazon_q += "t=" + amazon_ad_tag; + amazon_q += "&o=" + amazon_ad_o; + amazon_q += "&p=" + amazon_p(amazon_ad_width,amazon_ad_height); + amazon_q += "&l=" + amazon_ad_linkcode; + amazon_q += "&pvid=" + amazon_ad_pvid; + + // Referring URL should be the parent location if the ad page is within an iframe. + amazon_q += "&ref-url=" + escape((amazon_iframe() || (amazon_ad_referrer == 'parent')) ? document.referrer : document.location); + amazon_q = amazon_q.replace(/\+/g,'%2B'); + + amazon_q += "&ref-title=" + escape(document.title); + + // get referrer of the page serving these ads, if we can + try{ + var referrer = top.document.referrer; + amazon_q += "&ref-ref=" + escape(referrer); + } + catch(e) + {} + + // Colors + amazon_q+="&bgc="+amazon_fix_color(window.amazon_color_background, "FFFFFF"); + amazon_q+="&bdc="+amazon_fix_color(window.amazon_color_border, "000000"); + amazon_q+="&pcc="+amazon_fix_color(window.amazon_color_price, "990000"); + amazon_q+="&tec="+amazon_fix_color(window.amazon_color_text, "000000"); + amazon_q+="&tic="+amazon_fix_color(window.amazon_color_link, "3399FF"); + amazon_q+="&ac=" +amazon_fix_color(window.amazon_color_logo, "CC6600"); + + var bgc = new AmazonColor(amazon_fix_color(window.amazon_color_background, "A1A1A1")); + var pvc = bgc.getSimilar(); + amazon_q+="&pvc="+pvc.getHex(); + + var bdc = new AmazonColor(amazon_fix_color(window.amazon_color_border, "000000")); + if (bdc.isDark()) { amazon_q+="&lgl=1"; } + + // Display options + if(amazon_ad_price=="all") {amazon_q+="&mp=1";} + if(amazon_ad_border=='hide') {amazon_q+="&hb=1";} + if(amazon_ad_logo=='hide') {amazon_q+="&hl=1";} + if(amazon_ad_product_images=='hide') {amazon_q+="&hp=1";} + if(amazon_ad_link_target=="new") {amazon_q+="&tg=_blank";} + if(amazon_ad_discount=="add") {amazon_q+="&dsc=1";} + + // Advanced options + if(window.amazon_ad_exclude) + { + amazon_q += '&exwords=' + filterKeywords(amazon_ad_exclude); + } + + if(window.amazon_ad_include) + { + amazon_q += '&inwords=' + filterKeywords(amazon_ad_include); + } + + if(window.amazon_ad_categories) {amazon_q+='&incats='+amazon_ad_categories;} + + if(window.amazon_ad_title) + { + // Change all characters to their numerical forms for inclusion in a URI + var codes = new Array; + for (var i = 0; i < amazon_ad_title.length; ++i) { codes.push(amazon_ad_title.charCodeAt(i)); } + var url_amazon_ad_title = codes.toString(); + amazon_q+='&title='+url_amazon_ad_title; + } + + amazon_q += '&f=ifr'; + var e = (document.characterSet) ? document.characterSet : document.charset; + if (e) { amazon_q += '&e='+e.toLowerCase(); } + + return amazon_q; +} + +//takes a string keywords argument and makes sure it only contains +//the allowed number of phrases +function filterKeywords(keywords) +{ + var keyword_limit = 5; + + var rtn_keywords; + if(keywords) + { + var items = keywords.split(/;/); + if (items.length > keyword_limit) + { + items = items.slice(0,keyword_limit); + rtn_keywords = items.join(';'); + } + else + { + rtn_keywords = keywords; + } + } + + return rtn_keywords; +} + +function amazon_p(w, h) +{ + var p = new Array(); + p["120x150"] = 6; + p["120x240"] = 8; + p["180x150"] = 9; + p["120x450"] = 10; + p["120x600"] = 11; + p["300x250"] = 12; + p["468x60"] = 13; + p["160x600"] = 14; + p["468x240"] = 15; + p["468x336"] = 16; + p["600x520"] = 36; + p["728x90"] = 48; + + return p[w + "x" + h]; +} + +function amazon_iframe() +{ + var rval = false; + if (document.body) + { + rval = ((document.referrer != '') && ((document.body.clientWidth < (1.5 * amazon_ad_width)) && (document.body.clientHeight < (1.5 * amazon_ad_height)))); + } + else if (document.documentElement) + { + rval = ((document.referrer != '') && ((document.documentElement.clientWidth < (1.5 * amazon_ad_width)) && (document.documentElement.clientHeight < (1.5 * amazon_ad_height)))); + } + return rval; +} + +function amazon_fix_color($color, $dflt) +{ + if(!$color) { return $dflt; } + if($color.length != 6) { return $dflt; } + $color = $color.toUpperCase(); + var $h2d = "0123456789ABCDEF"; + for(i = 0; i < 6; i++) + { + var $x = $color.charAt(i); + if($h2d.indexOf($x) == -1 ) + { + return $dflt; + } + } + return $color; +} + +function amazon_pvid() +{ + if(window.amazon_ad_pvid) + { + return amazon_ad_pvid; + } + + amazon_ad_pvid = ""; + + var $h2d = "0123456789ABCDEF"; + for(i = 0; i < 16; i++) + { + amazon_ad_pvid += $h2d.charAt(Math.floor( 16 * Math.random() )); + } +} + +function amazon_error_handler() +{ + return true; +} diff --git a/test/ import mapinfo_files/asw.js b/test/ import mapinfo_files/asw.js new file mode 100644 index 0000000..db94510 --- /dev/null +++ b/test/ import mapinfo_files/asw.js @@ -0,0 +1,4 @@ +amazon_ad_o = 1; +amazon_ad_linkcode = 'sb3'; +amazon_ad_rcm = "rcm.amazon.com"; +document.write("<scr"+"ipt src='"+window.location.protocol+"//www.assoc-amazon.com/s/ads-common.js' type='text/javascr"+"ipt'></scr"+"ipt>"); diff --git a/test/ import mapinfo_files/basic.css b/test/ import mapinfo_files/basic.css new file mode 100644 index 0000000..5ad10a7 --- /dev/null +++ b/test/ import mapinfo_files/basic.css @@ -0,0 +1,299 @@ +/* Presentation Stylesheet */
+
+/**#lselect h3, #lresources h3, #larchives h3 {
+ height: 23px;
+ width: 150px;
+ margin: 0;
+} **/
+
+@page {
+ size: 7.5in 9.5in;
+ margin: 16mm 16mm 16mm 16mm;
+ }
+
+ div.chapter, div.appendix {
+ page-break-after: always;
+ }
+
+.select{
+ z-index: 7;
+}
+
+.head {
+ color: #cdba91;
+ font: caption;
+ font-family: 'Georgia';
+ font-size: large;
+ font-style: normal;
+ font-variant: small-caps;
+ font-weight: bold;
+}
+
+.header_title { color:white;background-color:#003333;font-family: Georgia}
+
+
+#linkList{
+ position:absolute;
+ top:10px;
+ left:10px;
+ z-index:5;
+ width:150px;
+ /*background-image:url(images/zbg.gif);
+ background-position:0 -401px;*/
+ overflow:hidden;
+ padding-bottom:0px;
+}
+
+
+#linkList h3{
+ height:60px;
+ width:150px;
+ background-position:0 0;
+}
+
+/* --// lists --// */
+
+#linkList li {
+ background: #fefefe;
+ padding: 5px 7px;
+ border-bottom: 1px solid #DCD5B8;
+ text-transform: uppercase;
+ font-size: 9px;
+}
+#linkList li:hover { background: #DCD5B8; }
+
+/*#linkList2 { font: 10px Tahoma, Verdana, Arial, sans-serif; width: 220px;}
+#linkList p, #linkList li{ font: x-small/1.6em tahoma, verdana, sans-serif; text-indent: 0;}
+
+#linkList ul { list-style: none; margin: 0; padding: 0; }
+#linkList li { color: #fff; padding: 2px 0 0 17px; }
+#linkList li a { display: block; border: none; color: #98B974; text-decoration:none; font-weight: bold; margin-left: -12px; padding-left: 12px; background: url(images/nav_arrow.gif) no-repeat 0 2px;}
+#linkList li a:hover { color: #f4f0e6; background-position: 0 -48px; text-decoration:underline; }
+#linkList li a.c { display: inline; padding: 0; margin: 0; background: none; color: #4C4E39; font-weight: normal; }
+#linkList li a.c:hover { color: #f4f0e6; } */
+
+
+a {
+ color: maroon;
+ text-decoration: none;
+ border-bottom: 1px dotted maroon;
+ }
+
+ #more {
+ color: blue;
+ text-decoration: none;
+ }
+
+a:hover {
+ color: red;
+ text-decoration: none;
+ border-bottom: 1px solid red;
+ }
+
+a:visited {
+ color: dimgray;
+ text-decoration: none;
+ border-bottom:1px solid dimgray;
+ }
+
+ p {
+ margin:0;
+ padding:15px;
+ font-family: verdana, arial, helvetica;
+ line-height: 110%;
+ font-size: small;
+ }
+
+h4 {
+ margin:0;
+ padding: 5px 0;
+ }
+
+p:first-letter {
+ font-weight: bold;
+ color: maroon;
+ font-family: Georgia;
+ }
+
+#l-col {
+ margin: 0;
+ padding: 15px;
+ font-family: georgia, verdana, arial, helvetica;
+ line-height: 150%;
+ font-size: small;
+ text-align: left;
+ }
+
+#l-col h4 {
+ font-weight: bold;
+ font-size: small;
+ }
+
+#l-col a {
+ height: 25px;
+ }
+
+#cont {
+ margin: 0;
+ padding: 15px;
+ font-family: verdana, arial, helvetica;
+ }
+
+#cont h3 {
+ font-size: large;
+ color: maroon;
+ }
+
+#cont h4 {
+ font-size: small;
+ }
+
+#cont h6 {
+ color: silver;
+ font-weight: normal;
+ margin: 0px;
+ margin-bottom: 16px;
+ }
+
+#cont ul {
+ font-family: verdana, arial, helvetica;
+ line-height: 150%;
+ font-size: small;
+ }
+
+#cont ul li{
+ padding-bottom: 8px;
+ }
+
+#cont ol {
+ font-family: verdana, arial, helvetica;
+ line-height: 150%;
+ font-size: small;
+ }
+
+#cont ol li{
+ padding-bottom: 8px;
+ }
+
+#cont td {
+ font-family: verdana, arial, helvetica;
+ font-size: small;
+ }
+
+blockquote {
+ font-family: courier new, courier, fixed;
+ font-size: small;
+ color: darkblue;
+ background-color: gainsboro;
+ padding: 16px;
+ }
+
+#bar {
+ text-align: center;
+ font-family: verdana, arial, helvetica;
+ font-size: x-small;
+ }
+
+#ftr {
+ text-align: center;
+ font-family: verdana, arial, helvetica;
+ font-size: x-small;
+ }
+
+body {
+ color: #333333;
+ text-align:center;
+ font-family: verdana, arial, helvetica;
+ padding:0;
+ }
+
+.content {
+ color: #333333;
+ text-align:left;
+ font-size: small;
+ font-family: verdana, arial, helvetica;
+ padding:0;
+ }
+
+#outer {
+ text-align:center;
+ margin:auto;
+ }
+/**#5a7b9c #398EB5**/
+#hdr {
+ background-color: #333333;
+ color: #FFFFFF;
+ }
+
+#bar {
+ height:20px;
+ background: #660000;
+ color: white;
+ border:solid #000000;
+ border-width:0 0 0 0;
+ }
+
+#bar a{color: white}
+h1 {
+ font: bold large georgia;
+ letter-spacing: 1px;
+ margin-bottom: 0px;
+ color: #154349;
+ }
+
+h2 {
+ font: bold 110% verdana;
+ letter-spacing: 1px;
+ margin-bottom: 0px;
+ color: #006699;
+ }
+
+h3 {
+ font: italic normal 12pt georgia;
+ letter-spacing: 1px;
+ margin-bottom: 0px;
+ color: #154349;
+ }
+
+#bodyblock {
+ position:relative;
+ background: white;
+ color: white;
+ width:720px;
+ padding:0;
+ }
+
+body#forumbody #l-col {
+ width:0px;
+ }
+
+#l-col {
+ float:left;
+ background:white;
+ color: #333333;
+ width:165px;
+ text-align: left;
+ }
+
+#cont {
+ width:475px;
+ background:white;
+ color: #333333;
+ border:solid #000000;
+ border-width:0 0 0 0;
+ text-align:left;
+ }
+
+#ftr {
+ height:25px;
+ font-family: Georgia,Arial,Helvetica;
+ background:black;
+ color: white;
+ border:solid black;
+ border-width:1px 0 0 0;
+ margin:0;
+ }
+
+ table.comparison { font-family: arial ; font-size: 0.75em}
+ ul {font-family: arial ; font-size: 0.75em}
+
diff --git a/test/ import mapinfo_files/basic070802.css b/test/ import mapinfo_files/basic070802.css new file mode 100644 index 0000000..1688fa4 --- /dev/null +++ b/test/ import mapinfo_files/basic070802.css @@ -0,0 +1,297 @@ +/* Presentation Stylesheet */
+
+/**#lselect h3, #lresources h3, #larchives h3 {
+ height: 23px;
+ width: 150px;
+ margin: 0;
+} **/
+
+@page {
+ size: 7.5in 9.5in;
+ margin: 16mm 16mm 16mm 16mm;
+ }
+
+ div.chapter, div.appendix {
+ page-break-after: always;
+ }
+
+.select{
+ z-index: 7;
+}
+
+.head {
+ color: #cdba91;
+ font: caption;
+ font-family: 'Georgia';
+ font-size: large;
+ font-style: normal;
+ font-variant: small-caps;
+ font-weight: bold;
+}
+
+.header_title { color:white;background-color:#003333;font-family: Georgia}
+
+
+#linkList{
+ position:absolute;
+ top:10px;
+ left:10px;
+ z-index:5;
+ width:150px;
+ /*background-image:url(images/zbg.gif);
+ background-position:0 -401px;*/
+ overflow:hidden;
+ padding-bottom:0px;
+}
+
+
+#linkList h3{
+ height:60px;
+ width:150px;
+ background-position:0 0;
+}
+
+/* --// lists --// */
+
+#linkList li {
+ background: #fefefe;
+ padding: 5px 7px;
+ border-bottom: 1px solid #DCD5B8;
+ text-transform: uppercase;
+ font-size: 9px;
+}
+#linkList li:hover { background: #DCD5B8; }
+
+/*#linkList2 { font: 10px Tahoma, Verdana, Arial, sans-serif; width: 220px;}
+#linkList p, #linkList li{ font: x-small/1.6em tahoma, verdana, sans-serif; text-indent: 0;}
+
+#linkList ul { list-style: none; margin: 0; padding: 0; }
+#linkList li { color: #fff; padding: 2px 0 0 17px; }
+#linkList li a { display: block; border: none; color: #98B974; text-decoration:none; font-weight: bold; margin-left: -12px; padding-left: 12px; background: url(images/nav_arrow.gif) no-repeat 0 2px;}
+#linkList li a:hover { color: #f4f0e6; background-position: 0 -48px; text-decoration:underline; }
+#linkList li a.c { display: inline; padding: 0; margin: 0; background: none; color: #4C4E39; font-weight: normal; }
+#linkList li a.c:hover { color: #f4f0e6; } */
+
+
+a {
+ color: maroon;
+ text-decoration: none;
+ border-bottom: 1px dotted maroon;
+ }
+
+ #more {
+ color: blue;
+ text-decoration: none;
+ }
+
+a:hover {
+ color: red;
+ text-decoration: none;
+ border-bottom: 1px solid red;
+ }
+
+a:visited {
+ color: dimgray;
+ text-decoration: none;
+ border-bottom:1px solid dimgray;
+ }
+
+ p {
+ margin:0;
+ padding:15px;
+ font-family: verdana, arial, helvetica;
+ line-height: 110%;
+ font-size: small;
+ }
+
+h4 {
+ margin:0;
+ padding: 5px 0;
+ }
+
+p:first-letter {
+ font-weight: bold;
+ color: maroon;
+ font-family: Georgia;
+ }
+
+#l-col {
+ margin: 0;
+ padding: 15px;
+ font-family: georgia, verdana, arial, helvetica;
+ line-height: 150%;
+ font-size: small;
+ text-align: left;
+ }
+
+#l-col h4 {
+ font-weight: bold;
+ font-size: small;
+ }
+
+#l-col a {
+ height: 25px;
+ }
+
+#cont {
+ margin: 0;
+ padding: 15px;
+ font-family: verdana, arial, helvetica;
+ }
+
+#cont h3 {
+ font-size: large;
+ color: maroon;
+ }
+
+#cont h4 {
+ font-size: small;
+ }
+
+#cont h6 {
+ color: silver;
+ font-weight: normal;
+ margin: 0px;
+ margin-bottom: 16px;
+ }
+
+#cont ul {
+ font-family: verdana, arial, helvetica;
+ line-height: 150%;
+ font-size: small;
+ }
+
+#cont ul li{
+ padding-bottom: 8px;
+ }
+
+#cont ol {
+ font-family: verdana, arial, helvetica;
+ line-height: 150%;
+ font-size: small;
+ }
+
+#cont ol li{
+ padding-bottom: 8px;
+ }
+
+#cont td {
+ font-family: verdana, arial, helvetica;
+ font-size: small;
+ }
+
+blockquote {
+ font-family: courier new, courier, fixed;
+ font-size: small;
+ color: darkblue;
+ background-color: gainsboro;
+ padding: 16px;
+ }
+
+#bar {
+ text-align: center;
+ font-family: verdana, arial, helvetica;
+ font-size: x-small;
+ }
+
+#ftr {
+ text-align: center;
+ font-family: verdana, arial, helvetica;
+ font-size: x-small;
+ }
+
+body {
+ color: #333333;
+ text-align:center;
+ font-family: verdana, arial, helvetica;
+ padding:0;
+ }
+
+.content {
+ color: #333333;
+ text-align:left;
+ font-size: small;
+ font-family: verdana, arial, helvetica;
+ padding:0;
+ }
+
+#outer {
+ text-align:center;
+ margin:auto;
+ }
+/**#5a7b9c #398EB5**/
+#hdr {
+ background-color: #333333;
+ color: #FFFFFF;
+ }
+
+#bar {
+ height:20px;
+ background: #660000;
+ color: white;
+ border:solid #000000;
+ border-width:0 0 0 0;
+ }
+
+#bar a{color: white}
+h1 {
+ font: bold large georgia;
+ letter-spacing: 1px;
+ margin-bottom: 0px;
+ color: #154349;
+ }
+
+h2 {
+ font: bold 110% verdana;
+ letter-spacing: 1px;
+ margin-bottom: 0px;
+ color: #006699;
+ }
+
+h3 {
+ font: italic normal 12pt georgia;
+ letter-spacing: 1px;
+ margin-bottom: 0px;
+ color: #154349;
+ }
+
+#bodyblock {
+ position:relative;
+ background: white;
+ color: white;
+ width:720px;
+ padding:0;
+ }
+
+body#forumbody #l-col {
+ width:0px;
+ }
+
+#l-col {
+ float:left;
+ background:white;
+ color: #333333;
+ width:165px;
+ text-align: left;
+ }
+
+#cont {
+ width:475px;
+ background:white;
+ color: #333333;
+ border:solid #000000;
+ border-width:0 0 0 0;
+ text-align:left;
+ }
+
+#ftr {
+ height:25px;
+ font-family: Georgia,Arial,Helvetica;
+ background:black;
+ color: white;
+ border:solid black;
+ border-width:1px 0 0 0;
+ margin:0;
+ }
+
+
diff --git a/test/ import mapinfo_files/blinklistsm.gif b/test/ import mapinfo_files/blinklistsm.gif Binary files differnew file mode 100644 index 0000000..6c53ce8 --- /dev/null +++ b/test/ import mapinfo_files/blinklistsm.gif diff --git a/test/ import mapinfo_files/cm.html b/test/ import mapinfo_files/cm.html new file mode 100644 index 0000000..08b9a71 --- /dev/null +++ b/test/ import mapinfo_files/cm.html @@ -0,0 +1,3 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!-- saved from url=(0708)http://rcm.amazon.com/e/cm?t=bostongis-20&o=1&p=48&l=sb3&pvid=619D593A46C57573&ref-url=http%3A//www.bostongis.com/PrinterFriendly.aspx%3Fcontent_name%3Dogr_cheatsheet&ref-title=OGR2OGR%20Cheatsheet&ref-ref=http%3A//www.google.ie/url%3Fsa%3Dt%26rct%3Dj%26q%3Dlinux%2520mapinfo%2520import%26source%3Dweb%26cd%3D1%26ved%3D0CBwQFjAA%26url%3Dhttp%253A%252F%252Fwww.bostongis.com%252FPrinterFriendly.aspx%253Fcontent_name%253Dogr_cheatsheet%26ei%3DGGwVT6PMJsLKhAepyvmtAg%26usg%3DAFQjCNGN2RfX8ZrpPfD3QBMzBPki_fS2IA%26sig2%3Dr3NHY9hE4uRabt-zYJ4IvQ&bgc=FFFFFF&bdc=C80109&pcc=990000&tec=000000&tic=DC1D25&ac=FFFFFF&pvc=6E6E6E&mp=1&hl=1&dsc=1&title=66,111,115,116,111,110,32,71,73,83,32,83,116,111,114,101&f=ifr&e=utf-8 --> +<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <style type="text/css"> body { margin:0px; padding:0px; } div#amazoncontent { font-family:'Arial', sans-serif; font-size:10px; padding:0px; margin:0px; color:#000000; position:relative; width:726px; height:88px; border:1px solid #C80109; background-color:#FFFFFF; overflow:hidden; text-align:left; } div#amazoncontent * { margin:0px; padding:0px; } div#amazoncontent a { color:#DC1D25; text-decoration:none; } div#amazoncontent div#logo { background-color:#C80109; padding:0px; padding-left:5px; } div#amazoncontent div#logo img { border:none; position:relative; top:30px; } div#amazoncontent div#logo a { color:#FFFFFF; text-decoration:none; } div#amazoncontent table { border-collapse:collapse; width:720px; } div#amazoncontent td { vertical-align:top; width:33%; height:75px; padding-top:2px; padding-left:0px; } div#amazoncontent div.product { position:relative; margin:1px 1px; padding:0px; } div#amazoncontent p.details { position:relative; margin:0px; margin-left:74px; padding:0px; } div#amazoncontent img.productImage { position:absolute; visibility:hidden; top:0px; left:-76px; border:none; } div#amazoncontent span.title { text-decoration:underline; } div#amazoncontent span.author, div#amazoncontent span.loyalty, div#amazoncontent span.price, div#amazoncontent span.info { display:block; margin:0px 0px; padding:0px; color:#000000; } div#amazoncontent span.author { margin:3px 0px; } div#amazoncontent div#privacy { position:absolute; bottom:0px; right:0px; padding:2px; background-color:#FFFFFF ; z-index:1; } div#amazoncontent div#privacy a { color:#6E6E6E; } </style> <script type="text/javascript"> /*<![CDATA[*/ var l = new String(document.location); var m = l.match(/[&\?]o=(\d+)&/); var o = (m) ? 'OU' + ((m[1] < 10) ? '0'+m[1] : m[1]) + '_' : ''; function pad(image, n) { if (!n) { n = 0; } if (n > 5) { if (image.height == 1) { image.src = 'http://ecx.images-amazon.com/images/G/01/associates/2005/OM/NoImageAvailable_75x75.gif'; } return; } if (image.height > 1 && image.width > 1) { var w = image.width; var h = image.height; var l = Math.ceil( (76 - w) / 2); var r = Math.floor((76 - w) / 2); var t = Math.ceil( (70 - h) / 2); var b = Math.floor((70 - h) / 2); if (l > 0) { image.style.paddingLeft = l + 'px'; } if (r > 0) { image.style.paddingRight = r + 'px'; } if (t > 0) { image.style.paddingTop = t + 'px'; } if (b > 0) { image.style.paddingBottom = b + 'px'; } var size = (h > w) ? h : w; if (w < 30) { w = 30; } if (h < 30) { h = 30; } if (dsc[image.id]) { image.src = image.src.replace(/SL70/,o+'SL'+size+'_PI'+dsc[image.id]+'-percent,BottomRight,0,0_CR0,0,'+w+','+h); } } else { setTimeout(function() { pad(image, n++) }, 100); } } var dsc = { image_B003TFF1PM : 0, image_1935182269 : 16, image_1847197507 : 13 }; function doImgPadding() { var imgs = document.getElementsByTagName("img"); for (i = 0; i < imgs.length; i++) { var img = imgs[i]; if(img.className == "productImage") { pad(img); img.style.visibility = 'visible'; } } } /*]]>*/ </script> <title>Amazon.com</title> </head> <body onload="doImgPadding();" marginwidth="0" marginheight="0"> <div id="amazoncontent"> <div id="logo"> <a href="http://astore.amazon.com/bostongis-20" id="title" target="_top">Boston GIS Store</a> </div> <table> <tbody><tr> <td class="separator"> <div class="product"> <p class="details"><a href="http://astore.amazon.com/bostongis-20/detail/B003TFF1PM" target="_top"><img id="image_B003TFF1PM" class="productImage" src="41o-vK6-8wL._SL70_.jpg" alt="Amazon.com" style="padding-left: 16px; padding-right: 16px; visibility: visible; "><span class="title">Map projections--a working manual</span> <span class="author">John Parr Snyder</span> </a> </p> </div> </td> <td class="separator"> <div class="product"> <p class="details"><a href="http://astore.amazon.com/bostongis-20/detail/1935182269" target="_top"><img id="image_1935182269" class="productImage" src="51EL0wD7xHL._OU01_SL70_PI16-percent,BottomRight,0,0_CR0,0,56,70_.jpg" alt="Amazon.com" style="padding-left: 10px; padding-right: 10px; visibility: visible; "><span class="title">PostGIS in Action</span> <span class="author">Regina Obe, Leo Hs...</span> <span class="price">New $41.90</span> <span class="price">Best $34.95</span> </a> </p> </div> </td> <td> <div class="product"> <p class="details"><a href="http://astore.amazon.com/bostongis-20/detail/1847197507" target="_top"><img id="image_1847197507" class="productImage" src="51+ADVi+EdL._OU01_SL70_PI13-percent,BottomRight,0,0_CR0,0,57,70_.jpg" alt="Amazon.com" style="padding-left: 10px; padding-right: 9px; visibility: visible; "><span class="title">OpenStreetMap</span> <span class="author">Jonathan Bennett</span> <span class="price">New $34.71</span> <span class="price">Best $34.64</span> </a> </p> </div> </td> </tr> </tbody></table> <script type="text/javascript"> /*<![CDATA[*/ var codes = "66,111,115,116,111,110,32,71,73,83,32,83,116,111,114,101".split(','); var newTitle = ''; for (var i = 0; i < codes.length; ++i) { newTitle += String.fromCharCode(codes[i]); } var titleObj = document.getElementById('title'); titleObj.replaceChild(document.createTextNode(newTitle), titleObj.firstChild); /*]]>*/ </script> <div id="privacy"> <a href="http://www.amazon.com/gp/dra/info" target="_top">Privacy Information</a> </div> </div> <script> function encodeStr(b) { return b && encodeURIComponent(b).replace(/&/g, "&").replace(/"/g, """).replace(/</g, "<").replace(/>/g, ">"); } document.write("<iframe src='http://s.amazon-adsystem.com/iu3?d=assoc-amazon.com&rP=" + encodeStr( (window.location != window.parent.location) ? document.referrer : document.location ) + "&cB=" + Math.random() * 1E16 + "' width=1 height=1 frameborder=0 marginwidth=0 marginheight=0></iframe>"); </script><iframe src="iu3.html" width="1" height="1" frameborder="0" marginwidth="0" marginheight="0"></iframe> <script> function encodeStr(b) { return b && encodeURIComponent(b).replace(/&/g, "&").replace(/"/g, """).replace(/</g, "<").replace(/>/g, ">"); } function replaceTagUrls(allLinks) { var refRefurl = new RegExp("^http://.*(amazon|endless|myhabit|amazonwireless|javari|smallparts)\.(com|ca|co\.jp|de|fr|co\.uk|cn|it|es)/.*tag=.*linkcode=", "i"); var pageUrl = (window.location != window.parent.location) ? document.referrer: document.location; for (var i=0; i < allLinks.length; i++) { var href = new String(allLinks[i].href); var results; var tag_match; var newUrl; if (results = href.match(refRefurl)) { newUrl = href + "&ref-refURL=" + encodeStr(pageUrl); href = newUrl; allLinks[i].href = href; } } } function replaceAllURLs() { var allAHrefLinks = document.getElementsByTagName('a'); var allAreaHrefLinks = document.getElementsByTagName('area'); replaceTagUrls(allAHrefLinks); replaceTagUrls(allAreaHrefLinks); } replaceAllURLs(); </script> </body></html>
\ No newline at end of file diff --git a/test/ import mapinfo_files/delicioussm.gif b/test/ import mapinfo_files/delicioussm.gif Binary files differnew file mode 100644 index 0000000..4ec034f --- /dev/null +++ b/test/ import mapinfo_files/delicioussm.gif diff --git a/test/ import mapinfo_files/diggsm.gif b/test/ import mapinfo_files/diggsm.gif Binary files differnew file mode 100644 index 0000000..3dbc394 --- /dev/null +++ b/test/ import mapinfo_files/diggsm.gif diff --git a/test/ import mapinfo_files/furlsm.gif b/test/ import mapinfo_files/furlsm.gif Binary files differnew file mode 100644 index 0000000..4acabe5 --- /dev/null +++ b/test/ import mapinfo_files/furlsm.gif diff --git a/test/ import mapinfo_files/ga.js b/test/ import mapinfo_files/ga.js new file mode 100644 index 0000000..e092564 --- /dev/null +++ b/test/ import mapinfo_files/ga.js @@ -0,0 +1,51 @@ +(function(){var g=void 0,h=true,i=null,j=false,ba=encodeURIComponent,ca=Infinity,da=setTimeout,ea=decodeURIComponent,k=Math;function fa(a,b){return a.onload=b}function ga(a,b){return a.name=b}var m="push",ha="slice",ia="replace",ja="load",ka="floor",n="charAt",la="value",p="indexOf",ma="match",r="name",oa="host",t="toString",u="length",v="prototype",w="split",pa="stopPropagation",qa="scope",x="location",y="getString",z="substring",ra="navigator",A="join",C="toLowerCase",D;function sa(a,b){switch(b){case 0:return""+a;case 1:return a*1;case 2:return!!a;case 3:return a*1E3}return a}function E(a,b){return g==a||"-"==a&&!b||""==a}function ta(a){if(!a||""==a)return"";for(;a&&" \n\r\t"[p](a[n](0))>-1;)a=a[z](1);for(;a&&" \n\r\t"[p](a[n](a[u]-1))>-1;)a=a[z](0,a[u]-1);return a}function ua(a){var b=1,c=0,d;if(!E(a)){b=0;for(d=a[u]-1;d>=0;d--)c=a.charCodeAt(d),b=(b<<6&268435455)+c+(c<<14),c=b&266338304,b=c!=0?b^c>>21:b}return b} +function va(){return k.round(k.random()*2147483647)}function wa(){}function F(a,b){return ba instanceof Function?b?encodeURI(a):ba(a):(G(68),escape(a))}function H(a){a=a[w]("+")[A](" ");if(ea instanceof Function)try{return ea(a)}catch(b){G(17)}else G(68);return unescape(a)}var xa=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,!!d):a.attachEvent&&a.attachEvent("on"+b,c)},ya=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,!!d):a.detachEvent&&a.detachEvent("on"+b,c)}; +function I(a){return a&&a[u]>0?a[0]:""}function za(a){var b=a?a[u]:0;return b>0?a[b-1]:""}var Aa=function(){this.prefix="ga.";this.I={}};Aa[v].set=function(a,b){this.I[this.prefix+a]=b};Aa[v].get=function(a){return this.I[this.prefix+a]};Aa[v].contains=function(a){return this.get(a)!==g};function Ba(a){a[p]("www.")==0&&(a=a[z](4));return a[C]()}function Ca(a,b){var c,d={url:a,protocol:"http",host:"",path:"",c:new Aa,anchor:""};if(!a)return d;c=a[p]("://");if(c>=0)d.protocol=a[z](0,c),a=a[z](c+3);c=a.search("/|\\?|#");if(c>=0)d.host=a[z](0,c)[C](),a=a[z](c);else return d.host=a[C](),d;c=a[p]("#");if(c>=0)d.anchor=a[z](c+1),a=a[z](0,c);c=a[p]("?");c>=0&&(Da(d.c,a[z](c+1)),a=a[z](0,c));d.anchor&&b&&Da(d.c,d.anchor);a&&a[n](0)=="/"&&(a=a[z](1));d.path=a;return d} +function Da(a,b){function c(b,c){a.contains(b)||a.set(b,[]);a.get(b)[m](c)}for(var d=ta(b)[w]("&"),e=0;e<d[u];e++)if(d[e]){var f=d[e][p]("=");f<0?c(d[e],"1"):c(d[e][z](0,f),d[e][z](f+1))}}function Ea(a,b){if(E(a))return"-";if("["==a[n](0)&&"]"==a[n](a[u]-1))return"-";var c=J.domain;c+=b&&b!="/"?b:"";return a[p](c)==(a[p]("http://")==0?7:a[p]("https://")==0?8:0)?"0":a};function Fa(a,b,c){k.random()*100>=1||(a=["utmt=error","utmerr="+a,"utmwv=5.2.2","utmn="+va(),"utmsp=1"],b&&a[m]("api="+b),c&&a[m]("msg="+F(c[z](0,100))),K.q&&a[m]("aip=1"),Ga(a[A]("&")))};var Ha=0;function L(a){return(a?"_":"")+Ha++} +var Ia=L(),Ja=L(),Ka=L(),La=L(),Ma=L(),M=L(),N=L(),Na=L(),Oa=L(),Pa=L(),Qa=L(),Ra=L(),Sa=L(),Ta=L(),Ua=L(),Va=L(),Wa=L(),Xa=L(),Ya=L(),Za=L(),$a=L(),ab=L(),bb=L(),cb=L(),db=L(),eb=L(),fb=L(),gb=L(),hb=L(),ib=L(),jb=L(),kb=L(),lb=L(),mb=L(),nb=L(),O=L(h),ob=L(),pb=L(),qb=L(),rb=L(),sb=L(),tb=L(),ub=L(),vb=L(),wb=L(),xb=L(),P=L(h),yb=L(h),zb=L(h),Bb=L(h),Cb=L(h),Db=L(h),Eb=L(h),Fb=L(h),Gb=L(h),Hb=L(h),Ib=L(h),Q=L(h),Jb=L(h),Kb=L(h),Lb=L(h),Mb=L(h),Nb=L(h),Ob=L(h),Pb=L(h),Qb=L(h),Rb=L(h),Sb=L(h),Tb= +L(h),Ub=L(h),Vb=L(h),Wb=L(),Xb=L(),Yb=L();L();var Zb=L(),$b=L(),ac=L(),bc=L(),cc=L(),dc=L(),ec=L(),hc=L(),ic=L(),jc=L();L();var kc=L(),lc=L();var mc=function(){function a(a,c,d){R(S[v],a,c,d)}T("_getName",Ka,58);T("_getAccount",Ia,64);T("_visitCode",P,54);T("_getClientInfo",Ta,53,1);T("_getDetectTitle",Wa,56,1);T("_getDetectFlash",Ua,65,1);T("_getLocalGifPath",fb,57);T("_getServiceMode",gb,59);U("_setClientInfo",Ta,66,2);U("_setAccount",Ia,3);U("_setNamespace",Ja,48);U("_setAllowLinker",Qa,11,2);U("_setDetectFlash",Ua,61,2);U("_setDetectTitle",Wa,62,2);U("_setLocalGifPath",fb,46,0);U("_setLocalServerMode",gb,92,g,0);U("_setRemoteServerMode", +gb,63,g,1);U("_setLocalRemoteServerMode",gb,47,g,2);U("_setSampleRate",eb,45,1);U("_setCampaignTrack",Va,36,2);U("_setAllowAnchor",Ra,7,2);U("_setCampNameKey",Ya,41);U("_setCampContentKey",cb,38);U("_setCampIdKey",Xa,39);U("_setCampMediumKey",ab,40);U("_setCampNOKey",db,42);U("_setCampSourceKey",$a,43);U("_setCampTermKey",bb,44);U("_setCampCIdKey",Za,37);U("_setCookiePath",N,9,0);U("_setMaxCustomVariables",hb,0,1);U("_setVisitorCookieTimeout",Na,28,1);U("_setSessionCookieTimeout",Oa,26,1);U("_setCampaignCookieTimeout", +Pa,29,1);U("_setReferrerOverride",qb,49);U("_setSiteSpeedSampleRate",ic,132);a("_trackPageview",S[v].na,1);a("_trackEvent",S[v].v,4);a("_trackPageLoadTime",S[v].ma,100);a("_trackSocial",S[v].oa,104);a("_trackTrans",S[v].pa,18);a("_sendXEvent",S[v].u,78);a("_createEventTracker",S[v].V,74);a("_getVersion",S[v].$,60);a("_setDomainName",S[v].t,6);a("_setAllowHash",S[v].ea,8);a("_getLinkerUrl",S[v].Z,52);a("_link",S[v].link,101);a("_linkByPost",S[v].da,102);a("_setTrans",S[v].ha,20);a("_addTrans",S[v].O, +21);a("_addItem",S[v].M,19);a("_setTransactionDelim",S[v].ia,82);a("_setCustomVar",S[v].fa,10);a("_deleteCustomVar",S[v].X,35);a("_getVisitorCustomVar",S[v].aa,50);a("_setXKey",S[v].ka,83);a("_setXValue",S[v].la,84);a("_getXKey",S[v].ba,76);a("_getXValue",S[v].ca,77);a("_clearXKey",S[v].S,72);a("_clearXValue",S[v].T,73);a("_createXObj",S[v].W,75);a("_addIgnoredOrganic",S[v].K,15);a("_clearIgnoredOrganic",S[v].P,97);a("_addIgnoredRef",S[v].L,31);a("_clearIgnoredRef",S[v].Q,32);a("_addOrganic",S[v].N, +14);a("_clearOrganic",S[v].R,70);a("_cookiePathCopy",S[v].U,30);a("_get",S[v].Y,106);a("_set",S[v].ga,107);a("_addEventListener",S[v].addEventListener,108);a("_removeEventListener",S[v].removeEventListener,109);a("_initData",S[v].m,2);a("_setVar",S[v].ja,22);U("_setSessionTimeout",Oa,27,3);U("_setCookieTimeout",Pa,25,3);U("_setCookiePersistence",Na,24,1);a("_setAutoTrackOutbound",wa,79);a("_setTrackOutboundSubdomains",wa,81);a("_setHrefExamineLimit",wa,80)},R=function(a,b,c,d){a[b]=function(){try{return G(d), +c.apply(this,arguments)}catch(a){throw Fa("exc",b,a&&a[r]),a;}}},T=function(a,b,c,d){S[v][a]=function(){try{return G(c),sa(this.a.get(b),d)}catch(e){throw Fa("exc",a,e&&e[r]),e;}}},U=function(a,b,c,d,e){S[v][a]=function(f){try{G(c),e==g?this.a.set(b,sa(f,d)):this.a.set(b,e)}catch(l){throw Fa("exc",a,l&&l[r]),l;}}},nc=function(a,b){return{type:b,target:a,stopPropagation:function(){throw"aborted";}}};var oc=function(a,b){return b!=="/"?j:(a[p]("www.google.")==0||a[p](".google.")==0||a[p]("google.")==0)&&!(a[p]("google.org")>-1)?h:j},pc=function(a){var b=a.get(Ma),c=a[y](N,"/");oc(b,c)&&a[pa]()};var uc=function(){var a={},b={},c=new qc;this.g=function(a,b){c.add(a,b)};var d=new qc;this.d=function(a,b){d.add(a,b)};var e=j,f=j,l=h;this.J=function(){e=h};this.f=function(a){this[ja]();this.set(Wb,a,h);a=new rc(this);e=j;d.execute(this);e=h;b={};this.i();a.qa()};this.load=function(){e&&(e=j,this.sa(),sc(this),f||(f=h,c.execute(this),tc(this),sc(this)),e=h)};this.i=function(){if(e)if(f)e=j,tc(this),e=h;else this[ja]()};this.get=function(c){c&&c[n](0)=="_"&&this[ja]();return b[c]!==g?b[c]:a[c]}; +this.set=function(c,d,e){c&&c[n](0)=="_"&&this[ja]();e?b[c]=d:a[c]=d;c&&c[n](0)=="_"&&this.i()};this.n=function(b){a[b]=this.b(b,0)+1};this.b=function(a,b){var c=this.get(a);return c==g||c===""?b:c*1};this.getString=function(a,b){var c=this.get(a);return c==g?b:c+""};this.sa=function(){if(l){var b=this[y](Ma,""),c=this[y](N,"/");oc(b,c)||(a[M]=a[Sa]&&b!=""?ua(b):1,l=j)}}};uc[v].stopPropagation=function(){throw"aborted";}; +var rc=function(a){var b=this;this.j=0;var c=a.get(Xb);this.Aa=function(){b.j>0&&c&&(b.j--,b.j||c())};this.qa=function(){!b.j&&c&&da(c,0)};a.set(Yb,b,h)};function vc(a,b){for(var b=b||[],c=0;c<b[u];c++){var d=b[c];if(""+a==d||d[p](a+".")==0)return d}return"-"} +var xc=function(a,b,c){c=c?"":a[y](M,"1");b=b[w](".");if(b[u]!==6||wc(b[0],c))return j;var c=b[1]*1,d=b[2]*1,e=b[3]*1,f=b[4]*1,b=b[5]*1;if(!(c>=0&&d>0&&e>0&&f>0&&b>=0))return G(110),j;a.set(P,c);a.set(Cb,d);a.set(Db,e);a.set(Eb,f);a.set(Fb,b);return h},yc=function(a){var b=a.get(P),c=a.get(Cb),d=a.get(Db),e=a.get(Eb),f=a.b(Fb,1);b==g?G(113):b==NaN&&G(114);b>=0&&c>0&&d>0&&e>0&&f>=0||G(115);return[a.b(M,1),b!=g?b:"-",c||"-",d||"-",e||"-",f][A](".")},zc=function(a){return[a.b(M,1),a.b(Ib,0),a.b(Q,1), +a.b(Jb,0)][A](".")},Ac=function(a,b,c){var c=c?"":a[y](M,"1"),d=b[w](".");if(d[u]!==4||wc(d[0],c))d=i;a.set(Ib,d?d[1]*1:0);a.set(Q,d?d[2]*1:10);a.set(Jb,d?d[3]*1:a.get(La));return d!=i||!wc(b,c)},Bc=function(a,b){var c=F(a[y](zb,"")),d=[],e=a.get(O);if(!b&&e){for(var f=0;f<e[u];f++){var l=e[f];l&&l[qa]==1&&d[m](f+"="+F(l[r])+"="+F(l[la])+"=1")}d[u]>0&&(c+="|"+d[A](","))}return c?a.b(M,1)+"."+c:i},Cc=function(a,b,c){c=c?"":a[y](M,"1");b=b[w](".");if(b[u]<2||wc(b[0],c))return j;b=b[ha](1)[A](".")[w]("|"); +b[u]>0&&a.set(zb,H(b[0]));if(b[u]<=1)return h;for(var c=b[1][w](b[1][p](",")==-1?"^":","),d=0;d<c[u];d++){var e=c[d][w]("=");if(e[u]==4){var f={};ga(f,H(e[1]));f.value=H(e[2]);f.scope=1;a.get(O)[e[0]]=f}}b[1][p]("^")>=0&&G(125);return h},Ec=function(a,b){var c=Dc(a,b);return c?[a.b(M,1),a.b(Kb,0),a.b(Lb,1),a.b(Mb,1),c][A]("."):""},Dc=function(a){function b(b,e){if(!E(a.get(b))){var f=a[y](b,""),f=f[w](" ")[A]("%20"),f=f[w]("+")[A]("%20");c[m](e+"="+f)}}var c=[];b(Ob,"utmcid");b(Sb,"utmcsr");b(Qb, +"utmgclid");b(Rb,"utmdclid");b(Pb,"utmccn");b(Tb,"utmcmd");b(Ub,"utmctr");b(Vb,"utmcct");return c[A]("|")},Gc=function(a,b,c){c=c?"":a[y](M,"1");b=b[w](".");if(b[u]<5||wc(b[0],c))return a.set(Kb,g),a.set(Lb,g),a.set(Mb,g),a.set(Ob,g),a.set(Pb,g),a.set(Sb,g),a.set(Tb,g),a.set(Ub,g),a.set(Vb,g),a.set(Qb,g),a.set(Rb,g),j;a.set(Kb,b[1]*1);a.set(Lb,b[2]*1);a.set(Mb,b[3]*1);Fc(a,b[ha](4)[A]("."));return h},Fc=function(a,b){function c(a){return(a=b[ma](a+"=(.*?)(?:\\|utm|$)"))&&a[u]==2?a[1]:g}function d(b, +c){c&&(c=e?H(c):c[w]("%20")[A](" "),a.set(b,c))}b[p]("=")==-1&&(b=H(b));var e=c("utmcvr")=="2";d(Ob,c("utmcid"));d(Pb,c("utmccn"));d(Sb,c("utmcsr"));d(Tb,c("utmcmd"));d(Ub,c("utmctr"));d(Vb,c("utmcct"));d(Qb,c("utmgclid"));d(Rb,c("utmdclid"))},wc=function(a,b){return b?a!=b:!/^\d+$/.test(a)};var qc=function(){this.s=[]};qc[v].add=function(a,b){this.s[m]({name:a,Da:b})};qc[v].execute=function(a){try{for(var b=0;b<this.s[u];b++)this.s[b].Da.call(V,a)}catch(c){}};function Hc(a){a.get(eb)!=100&&a.get(P)%1E4>=a.get(eb)*100&&a[pa]()}function Ic(a){Jc()&&a[pa]()}function Kc(a){J[x].protocol=="file:"&&a[pa]()}function Lc(a){a.get(pb)||a.set(pb,J.title,h);a.get(ob)||a.set(ob,J[x].pathname+J[x].search,h)};var Mc=new function(){var a=[];this.set=function(b){a[b]=h};this.Ea=function(){for(var b=[],c=0;c<a[u];c++)a[c]&&(b[k[ka](c/6)]^=1<<c%6);for(c=0;c<b[u];c++)b[c]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"[n](b[c]||0);return b[A]("")+"~"}};function G(a){Mc.set(a)};var V=window,J=document,Jc=function(){var a=V._gaUserPrefs;return a&&a.ioo&&a.ioo()},Nc=function(a,b){da(a,b)},W=function(a){for(var b=[],c=J.cookie[w](";"),a=RegExp("^\\s*"+a+"=\\s*(.*?)\\s*$"),d=0;d<c[u];d++){var e=c[d][ma](a);e&&b[m](e[1])}return b},X=function(a,b,c,d,e){var f;f=Jc()?j:oc(d,c)?j:h;if(f){if(b&&V[ra].userAgent[p]("Firefox")>=0){b=b[ia](/\n|\r/g," ");f=0;for(var l=b[u];f<l;++f){var o=b.charCodeAt(f)&255;if(o==10||o==13)b=b[z](0,f)+"?"+b[z](f+1)}}b&&b[u]>2E3&&(b=b[z](0,2E3),G(69)); +a=a+"="+b+"; path="+c+"; ";e&&(a+="expires="+(new Date((new Date).getTime()+e)).toGMTString()+"; ");d&&(a+="domain="+d+";");J.cookie=a}};var Oc,Pc,Qc=function(){if(!Oc){var a={},b=V[ra],c=V.screen;a.H=c?c.width+"x"+c.height:"-";a.G=c?c.colorDepth+"-bit":"-";a.language=(b&&(b.language||b.browserLanguage)||"-")[C]();a.javaEnabled=b&&b.javaEnabled()?1:0;a.characterSet=J.characterSet||J.charset||"-";Oc=a}},Rc=function(){Qc();for(var a=Oc,b=V[ra],a=b.appName+b.version+a.language+b.platform+b.userAgent+a.javaEnabled+a.H+a.G+(J.cookie?J.cookie:"")+(J.referrer?J.referrer:""),b=a[u],c=V.history[u];c>0;)a+=c--^b++;return ua(a)},Sc=function(a){Qc(); +var b=Oc;a.set(sb,b.H);a.set(tb,b.G);a.set(wb,b.language);a.set(xb,b.characterSet);a.set(ub,b.javaEnabled);if(a.get(Ta)&&a.get(Ua)){if(!(b=Pc)){var c,d,e;d="ShockwaveFlash";if((b=(b=V[ra])?b.plugins:g)&&b[u]>0)for(c=0;c<b[u]&&!e;c++)d=b[c],d[r][p]("Shockwave Flash")>-1&&(e=d.description[w]("Shockwave Flash ")[1]);else{d=d+"."+d;try{c=new ActiveXObject(d+".7"),e=c.GetVariable("$version")}catch(f){}if(!e)try{c=new ActiveXObject(d+".6"),e="WIN 6,0,21,0",c.AllowScriptAccess="always",e=c.GetVariable("$version")}catch(l){}if(!e)try{c= +new ActiveXObject(d),e=c.GetVariable("$version")}catch(o){}e&&(e=e[w](" ")[1][w](","),e=e[0]+"."+e[1]+" r"+e[2])}b=e?e:"-"}Pc=b;a.set(vb,Pc)}else a.set(vb,"-")};var Y=function(){R(Y[v],"push",Y[v][m],5);R(Y[v],"_createAsyncTracker",Y[v].Ba,33);R(Y[v],"_getAsyncTracker",Y[v].Ca,34);this.r=0};Y[v].Ba=function(a,b){return K.l(a,b||"")};Y[v].Ca=function(a){return K.p(a)};Y[v].push=function(a){this.r>0&&G(105);this.r++;for(var b=arguments,c=0,d=0;d<b[u];d++)try{if(typeof b[d]==="function")b[d]();else{var e="",f=b[d][0],l=f.lastIndexOf(".");l>0&&(e=f[z](0,l),f=f[z](l+1));var o=e=="_gat"?K:e=="_gaq"?Tc:K.p(e);o[f].apply(o,b[d][ha](1))}}catch(q){c++}this.r--;return c};var Yc=function(){function a(a,b,c,d){g==f[a]&&(f[a]={});g==f[a][b]&&(f[a][b]=[]);f[a][b][c]=d}function b(a,b,c){if(g!=f[a]&&g!=f[a][b])return f[a][b][c]}function c(a,b){if(g!=f[a]&&g!=f[a][b]){f[a][b]=g;var c=h,d;for(d=0;d<l[u];d++)if(g!=f[a][l[d]]){c=j;break}c&&(f[a]=g)}}function d(a){var b="",c=j,d,e;for(d=0;d<l[u];d++)if(e=a[l[d]],g!=e){c&&(b+=l[d]);for(var c=[],f=g,$=g,$=0;$<e[u];$++)if(g!=e[$]){f="";$!=aa&&g==e[$-1]&&(f+=$[t]()+na);for(var Wc=e[$],Xc="",Ab=g,fc=g,gc=g,Ab=0;Ab<Wc[u];Ab++)fc= +Wc[n](Ab),gc=B[fc],Xc+=g!=gc?gc:fc;f+=Xc;c[m](f)}b+=o+c[A](s)+q;c=j}else c=h;return b}var e=this,f=[],l=["k","v"],o="(",q=")",s="*",na="!",B={"'":"'0"};B[q]="'1";B[s]="'2";B[na]="'3";var aa=1;e.va=function(a){return g!=f[a]};e.o=function(){for(var a="",b=0;b<f[u];b++)g!=f[b]&&(a+=b[t]()+d(f[b]));return a};e.ua=function(a){if(a==g)return e.o();for(var b=a.o(),c=0;c<f[u];c++)g!=f[c]&&!a.va(c)&&(b+=c[t]()+d(f[c]));return b};e.e=function(b,c,d){if(!Uc(d))return j;a(b,"k",c,d);return h};e.k=function(b, +c,d){if(!Vc(d))return j;a(b,"v",c,d[t]());return h};e.getKey=function(a,c){return b(a,"k",c)};e.C=function(a,c){return b(a,"v",c)};e.A=function(a){c(a,"k")};e.B=function(a){c(a,"v")};R(e,"_setKey",e.e,89);R(e,"_setValue",e.k,90);R(e,"_getKey",e.getKey,87);R(e,"_getValue",e.C,88);R(e,"_clearKey",e.A,85);R(e,"_clearValue",e.B,86)};function Uc(a){return typeof a=="string"}function Vc(a){return typeof a!="number"&&(g==Number||!(a instanceof Number))||k.round(a)!=a||a==NaN||a==ca?j:h};var Zc=function(a){var b=V.gaGlobal;a&&!b&&(V.gaGlobal=b={});return b},$c=function(){var a=Zc(h).hid;if(a==i)a=va(),Zc(h).hid=a;return a},ad=function(a){a.set(rb,$c());var b=Zc();if(b&&b.dh==a.get(M)){var c=b.sid;c&&(c=="0"&&G(112),a.set(Eb,c),a.get(yb)&&a.set(Db,c));b=b.vid;a.get(yb)&&b&&(b=b[w]("."),b[1]*1||G(112),a.set(P,b[0]*1),a.set(Cb,b[1]*1))}};var bd,cd=function(a,b,c){var d=a[y](Ma,""),e=a[y](N,"/"),a=a.b(Na,0);X(b,c,e,d,a)},tc=function(a){var b=a[y](Ma,"");a.b(M,1);var c=a[y](N,"/");X("__utma",yc(a),c,b,a.get(Na));X("__utmb",zc(a),c,b,a.get(Oa));X("__utmc",""+a.b(M,1),c,b);var d=Ec(a,h);d?X("__utmz",d,c,b,a.get(Pa)):X("__utmz","",c,b,-1);(d=Bc(a,j))?X("__utmv",d,c,b,a.get(Na)):X("__utmv","",c,b,-1)},sc=function(a){var b=a.b(M,1);if(!xc(a,vc(b,W("__utma"))))return a.set(Bb,h),j;var c=!Ac(a,vc(b,W("__utmb")));a.set(Hb,c);Gc(a,vc(b,W("__utmz"))); +Cc(a,vc(b,W("__utmv")));bd=!c;return h},dd=function(a){!bd&&!(W("__utmb")[u]>0)&&(X("__utmd","1",a[y](N,"/"),a[y](Ma,""),1E4),W("__utmd")[u]==0&&a[pa]())};var gd=function(a){a.get(P)==g?ed(a):a.get(Bb)&&!a.get(kc)?ed(a):a.get(Hb)&&fd(a)},hd=function(a){a.get(Nb)&&!a.get(Gb)&&(fd(a),a.set(Lb,a.get(Fb)))},ed=function(a){var b=a.get(La);a.set(yb,h);a.set(P,va()^Rc(a)&2147483647);a.set(zb,"");a.set(Cb,b);a.set(Db,b);a.set(Eb,b);a.set(Fb,1);a.set(Gb,h);a.set(Ib,0);a.set(Q,10);a.set(Jb,b);a.set(O,[]);a.set(Bb,j);a.set(Hb,j)},fd=function(a){a.set(Db,a.get(Eb));a.set(Eb,a.get(La));a.n(Fb);a.set(Gb,h);a.set(Ib,0);a.set(Q,10);a.set(Jb,a.get(La));a.set(Hb,j)};var id="daum:q,eniro:search_word,naver:query,pchome:q,images.google:q,google:q,yahoo:p,yahoo:q,msn:q,bing:q,aol:query,aol:q,lycos:query,ask:q,netscape:query,cnn:query,about:terms,mamma:q,voila:rdata,virgilio:qs,live:q,baidu:wd,alice:qs,yandex:text,najdi:q,seznam:q,search:q,wp:szukaj,onet:qt,szukacz:q,yam:k,kvasir:q,ozu:q,terra:query,rambler:query".split(","),od=function(a){if(a.get(Va)&&!a.get(kc)){for(var b=!E(a.get(Ob))||!E(a.get(Sb))||!E(a.get(Qb))||!E(a.get(Rb)),c={},d=0;d<jd[u];d++){var e=jd[d]; +c[e]=a.get(e)}d=Ca(J[x].href,a.get(Ra));if(!(za(d.c.get(a.get(db)))=="1"&&b)&&(d=kd(a,d)||ld(a),!d&&!b&&a.get(Gb)&&(md(a,g,"(direct)",g,g,"(direct)","(none)",g,g),d=h),d&&(a.set(Nb,nd(a,c)),b=a.get(Sb)=="(direct)"&&a.get(Pb)=="(direct)"&&a.get(Tb)=="(none)",a.get(Nb)||a.get(Gb)&&!b)))a.set(Kb,a.get(La)),a.set(Lb,a.get(Fb)),a.n(Mb)}},kd=function(a,b){function c(c,d){var d=d||"-",e=za(b.c.get(a.get(c)));return e&&e!="-"?H(e):d}var d=za(b.c.get(a.get(Xa)))||"-",e=za(b.c.get(a.get($a)))||"-",f=za(b.c.get(a.get(Za)))|| +"-",l=za(b.c.get("dclid"))||"-",o=c(Ya,"(not set)"),q=c(ab,"(not set)"),s=c(bb),na=c(cb);if(E(d)&&E(f)&&E(l)&&E(e))return j;if(E(s)){var B=Ea(a.get(qb),a.get(N)),B=Ca(B,h);(B=pd(a,B))&&!E(B[1]&&!B[2])&&(s=B[1])}md(a,d,e,f,l,o,q,s,na);return h},ld=function(a){var b=Ea(a.get(qb),a.get(N)),c=Ca(b,h);if(!(b!=g&&b!=i&&b!=""&&b!="0"&&b!="-"&&b[p]("://")>=0)||c&&c[oa][p]("google")>-1&&c.c.contains("q")&&c.path=="cse")return j;if((b=pd(a,c))&&!b[2])return md(a,g,b[0],g,g,"(organic)","organic",b[1],g),h;else if(b)return j; +if(a.get(Gb))a:{for(var b=a.get(kb),d=Ba(c[oa]),e=0;e<b[u];++e)if(d[p](b[e])>-1){a=j;break a}md(a,g,d,g,g,"(referral)","referral",g,"/"+c.path);a=h}else a=j;return a},pd=function(a,b){for(var c=a.get(ib),d=0;d<c[u];++d){var e=c[d][w](":");if(b[oa][p](e[0][C]())>-1){var f=b.c.get(e[1]);if(f&&(f=I(f),!f&&b[oa][p]("google.")>-1&&(f="(not provided)"),!e[3]||b.url[p](e[3])>-1)){a:{for(var c=f,d=a.get(jb),c=H(c)[C](),l=0;l<d[u];++l)if(c==d[l]){c=h;break a}c=j}return[e[2]||e[0],f,c]}}}return i},md=function(a, +b,c,d,e,f,l,o,q){a.set(Ob,b);a.set(Sb,c);a.set(Qb,d);a.set(Rb,e);a.set(Pb,f);a.set(Tb,l);a.set(Ub,o);a.set(Vb,q)},jd=[Pb,Ob,Qb,Rb,Sb,Tb,Ub,Vb],nd=function(a,b){function c(a){a=(""+a)[w]("+")[A]("%20");return a=a[w](" ")[A]("%20")}function d(c){var d=""+(a.get(c)||""),c=""+(b[c]||"");return d[u]>0&&d==c}if(d(Qb)||d(Rb))return G(131),j;for(var e=0;e<jd[u];e++){var f=jd[e],l=b[f]||"-",f=a.get(f)||"-";if(c(l)!=c(f))return h}return j};var rd=function(a){qd(a,J[x].href)?(a.set(kc,h),G(12)):a.set(kc,j)},qd=function(a,b){if(!a.get(Qa))return j;var c=Ca(b,a.get(Ra)),d=I(c.c.get("__utma")),e=I(c.c.get("__utmb")),f=I(c.c.get("__utmc")),l=I(c.c.get("__utmx")),o=I(c.c.get("__utmz")),q=I(c.c.get("__utmv")),c=I(c.c.get("__utmk"));if(ua(""+d+e+f+l+o+q)!=c){d=H(d);e=H(e);f=H(f);l=H(l);a:{for(var f=d+e+f+l,s=0;s<3;s++){for(var na=0;na<3;na++){if(c==ua(f+o+q)){G(127);c=[o,q];break a}var B=o[ia](/ /g,"%20"),aa=q[ia](/ /g,"%20");if(c==ua(f+B+ +aa)){G(128);c=[B,aa];break a}B=B[ia](/\+/g,"%20");aa=aa[ia](/\+/g,"%20");if(c==ua(f+B+aa)){G(129);c=[B,aa];break a}o=H(o)}q=H(q)}c=g}if(!c)return j;o=c[0];q=c[1]}if(!xc(a,d,h))return j;Ac(a,e,h);Gc(a,o,h);Cc(a,q,h);sd(a,l,h);return h},ud=function(a,b,c){var d;d=yc(a)||"-";var e=zc(a)||"-",f=""+a.b(M,1)||"-",l=td(a)||"-",o=Ec(a,j)||"-",a=Bc(a,j)||"-",q=ua(""+d+e+f+l+o+a),s=[];s[m]("__utma="+d);s[m]("__utmb="+e);s[m]("__utmc="+f);s[m]("__utmx="+l);s[m]("__utmz="+o);s[m]("__utmv="+a);s[m]("__utmk="+ +q);d=s[A]("&");if(!d)return b;e=b[p]("#");return c?e<0?b+"#"+d:b+"&"+d:(c="",f=b[p]("?"),e>0&&(c=b[z](e),b=b[z](0,e)),f<0?b+"?"+d+c:b+"&"+d+c)};var vd="|",xd=function(a,b,c,d,e,f,l,o,q){var s=wd(a,b);s||(s={},a.get(lb)[m](s));s.id_=b;s.affiliation_=c;s.total_=d;s.tax_=e;s.shipping_=f;s.city_=l;s.state_=o;s.country_=q;s.items_=s.items_||[];return s},yd=function(a,b,c,d,e,f,l){var a=wd(a,b)||xd(a,b,"",0,0,0,"","",""),o;a:{if(a&&a.items_){o=a.items_;for(var q=0;q<o[u];q++)if(o[q].sku_==c){o=o[q];break a}}o=i}q=o||{};q.transId_=b;q.sku_=c;q.name_=d;q.category_=e;q.price_=f;q.quantity_=l;o||a.items_[m](q);return q},wd=function(a,b){for(var c= +a.get(lb),d=0;d<c[u];d++)if(c[d].id_==b)return c[d];return i};var zd,Ad=function(a){var f;var e;if(!zd){var b;b=J[x].hash;var c=V[r],d=/^#?gaso=([^&]*)/;if(f=(e=(b=b&&b[ma](d)||c&&c[ma](d))?b[1]:I(W("GASO")),b=e)&&b[ma](/^(?:\|([-0-9a-z.]{1,40})\|)?([-.\w]{10,1200})$/i),c=f)if(cd(a,"GASO",""+b),K._gasoDomain=a.get(Ma),K._gasoCPath=a.get(N),b="https://"+((c[1]||"www")+".google.com")+"/analytics/reporting/overlay_js?gaso="+c[2]+"&"+va())a=J.createElement("script"),a.type="text/javascript",a.async=h,a.src=b,a.id="_gasojs",fa(a,g),b=J.getElementsByTagName("script")[0], +b.parentNode.insertBefore(a,b);zd=h}};var sd=function(a,b,c){c&&(b=H(b));c=a.b(M,1);b=b[w](".");!(b[u]<2)&&/^\d+$/.test(b[0])&&(b[0]=""+c,cd(a,"__utmx",b[A](".")))},td=function(a,b){var c=vc(a.get(M),W("__utmx"));c=="-"&&(c="");return b?F(c):c};var Fd=function(a,b){var c=k.min(a.b(ic,0),10);if(a.b(P,0)%100>=c)return j;c=Bd()||Cd();if(c==g)return j;var d=c[0];if(d==g||d==ca||isNaN(d))return j;d>0?Dd(c)?b(Ed(c)):b(Ed(c[ha](0,1))):xa(V,"load",function(){Fd(a,b)},j);return h},Dd=function(a){for(var b=1;b<a[u];b++)if(isNaN(a[b])||a[b]==ca||a[b]<0)return j;return h},Ed=function(a){for(var b=new Yc,c=0;c<a[u];c++)b.e(14,c+1,(isNaN(a[c])||a[c]<0?0:a[c]<5E3?k[ka](a[c]/10)*10:a[c]<45E4?k[ka](a[c]/100)*100:45E4)+""),b.k(14,c+1,a[c]);return b},Bd=function(){var a= +V.performance||V.webkitPerformance;if(a=a&&a.timing){var b=a.navigationStart;if(b==0)G(133);else return[a.loadEventStart-b,a.domainLookupEnd-a.domainLookupStart,a.connectEnd-a.connectStart,a.responseStart-a.requestStart,a.responseEnd-a.responseStart,a.fetchStart-b]}},Cd=function(){if(V.top==V){var a=V.external,b=a&&a.onloadT;a&&!a.isValidLoadTime&&(b=g);b>2147483648&&(b=g);b>0&&a.setPageReadyTime();return b==g?g:[b]}};var S=function(a,b,c){function d(a){return function(b){if((b=b.get(lc)[a])&&b[u])for(var c=nc(e,a),d=0;d<b[u];d++)b[d].call(e,c)}}var e=this;this.a=new uc;this.get=function(a){return this.a.get(a)};this.set=function(a,b,c){this.a.set(a,b,c)};this.set(Ia,b||"UA-XXXXX-X");this.set(Ka,a||"");this.set(Ja,c||"");this.set(La,k.round((new Date).getTime()/1E3));this.set(N,"/");this.set(Na,63072E6);this.set(Pa,15768E6);this.set(Oa,18E5);this.set(Qa,j);this.set(hb,50);this.set(Ra,j);this.set(Sa,h);this.set(Ta, +h);this.set(Ua,h);this.set(Va,h);this.set(Wa,h);this.set(Ya,"utm_campaign");this.set(Xa,"utm_id");this.set(Za,"gclid");this.set($a,"utm_source");this.set(ab,"utm_medium");this.set(bb,"utm_term");this.set(cb,"utm_content");this.set(db,"utm_nooverride");this.set(eb,100);this.set(ic,1);this.set(jc,j);this.set(fb,"/__utm.gif");this.set(gb,1);this.set(lb,[]);this.set(O,[]);this.set(ib,id[ha](0));this.set(jb,[]);this.set(kb,[]);this.t("auto");this.set(qb,this.ra());this.set(lc,{hit:[],load:[]});this.a.g("0", +rd);this.a.g("1",gd);this.a.g("2",od);this.a.g("3",hd);this.a.g("4",d("load"));this.a.g("5",Ad);this.a.d("A",Ic);this.a.d("B",Kc);this.a.d("C",gd);this.a.d("D",Hc);this.a.d("E",pc);this.a.d("F",Gd);this.a.d("G",dd);this.a.d("H",Lc);this.a.d("I",Sc);this.a.d("J",ad);this.a.d("K",d("hit"));this.a.d("L",Hd);this.a.d("M",Id);this.get(La)===0&&G(111);this.a.J();this.w=g};D=S[v];D.h=function(){var a=this.get(mb);a||(a=new Yc,this.set(mb,a));return a}; +D.ta=function(a){for(var b in a){var c=a[b];a.hasOwnProperty(b)&&typeof c!="function"&&this.set(b,c,h)}};D.z=function(a){if(this.get(jc))return j;var b=this,c=Fd(this.a,function(c){b.set(ob,a,h);b.u(c)});this.set(jc,c);return c};D.na=function(a){a&&a!=g&&(a.constructor+"")[p]("String")>-1?(G(13),this.set(ob,a,h)):typeof a==="object"&&a!==i&&this.ta(a);this.w=a=this.get(ob);this.a.f("page");this.z(a)}; +D.v=function(a,b,c,d,e){if(a==""||!Uc(a)||b==""||!Uc(b))return j;if(c!=g&&!Uc(c))return j;if(d!=g&&!Vc(d))return j;this.set($b,a,h);this.set(ac,b,h);this.set(bc,c,h);this.set(cc,d,h);this.set(Zb,!!e,h);this.a.f("event");return h};D.oa=function(a,b,c,d){if(!a||!b)return j;this.set(dc,a,h);this.set(ec,b,h);this.set(hc,c||J[x].href,h);d&&this.set(ob,d,h);this.a.f("social");return h};D.ma=function(){this.set(ic,10);this.z(this.w)};D.pa=function(){this.a.f("trans")};D.u=function(a){this.set(nb,a,h);this.a.f("event")}; +D.V=function(a){this.m();var b=this;return{_trackEvent:function(c,d,e){G(91);b.v(a,c,d,e)}}};D.Y=function(a){return this.get(a)};D.ga=function(a,b){if(a)if(a!=g&&(a.constructor+"")[p]("String")>-1)this.set(a,b);else if(typeof a=="object")for(var c in a)a.hasOwnProperty(c)&&this.set(c,a[c])};D.addEventListener=function(a,b){var c=this.get(lc)[a];c&&c[m](b)};D.removeEventListener=function(a,b){for(var c=this.get(lc)[a],d=0;c&&d<c[u];d++)if(c[d]==b){c.splice(d,1);break}};D.$=function(){return"5.2.2"}; +D.t=function(a){this.get(Sa);a=a=="auto"?Ba(J.domain):!a||a=="-"||a=="none"?"":a[C]();this.set(Ma,a)};D.ea=function(a){this.set(Sa,!!a)};D.Z=function(a,b){return ud(this.a,a,b)};D.link=function(a,b){if(this.a.get(Qa)&&a){var c=ud(this.a,a,b);J[x].href=c}};D.da=function(a,b){this.a.get(Qa)&&a&&a.action&&(a.action=ud(this.a,a.action,b))}; +D.ha=function(){this.m();var a=this.a,b=J.getElementById?J.getElementById("utmtrans"):J.utmform&&J.utmform.utmtrans?J.utmform.utmtrans:i;if(b&&b[la]){a.set(lb,[]);for(var b=b[la][w]("UTM:"),c=0;c<b[u];c++){b[c]=ta(b[c]);for(var d=b[c][w](vd),e=0;e<d[u];e++)d[e]=ta(d[e]);"T"==d[0]?xd(a,d[1],d[2],d[3],d[4],d[5],d[6],d[7],d[8]):"I"==d[0]&&yd(a,d[1],d[2],d[3],d[4],d[5],d[6])}}};D.O=function(a,b,c,d,e,f,l,o){return xd(this.a,a,b,c,d,e,f,l,o)};D.M=function(a,b,c,d,e,f){return yd(this.a,a,b,c,d,e,f)}; +D.ia=function(a){vd=a||"|"};D.fa=function(a,b,c,d){var e=this.a;if(a<=0||a>e.get(hb))a=j;else if(!b||!c||F(b)[u]+F(c)[u]>64)a=j;else{d!=1&&d!=2&&(d=3);var f={};ga(f,b);f.value=c;f.scope=d;e.get(O)[a]=f;a=h}a&&this.a.i();return a};D.X=function(a){this.a.get(O)[a]=g;this.a.i()};D.aa=function(a){return(a=this.a.get(O)[a])&&a[qa]==1?a[la]:g};D.ka=function(a,b,c){this.h().e(a,b,c)};D.la=function(a,b,c){this.h().k(a,b,c)};D.ba=function(a,b){return this.h().getKey(a,b)}; +D.ca=function(a,b){return this.h().C(a,b)};D.S=function(a){this.h().A(a)};D.T=function(a){this.h().B(a)};D.W=function(){return new Yc};D.K=function(a){a&&this.get(jb)[m](a[C]())};D.P=function(){this.set(jb,[])};D.L=function(a){a&&this.get(kb)[m](a[C]())};D.Q=function(){this.set(kb,[])};D.N=function(a,b,c,d,e){if(a&&b){a=[a,b[C]()][A](":");if(d||e)a=[a,d,e][A](":");d=this.get(ib);d.splice(c?0:d[u],0,a)}};D.R=function(){this.set(ib,[])}; +D.U=function(a){this.a[ja]();var b=this.get(N),c=td(this.a);this.set(N,a);this.a.i();sd(this.a,c);this.set(N,b)};D.ra=function(){return J.referrer};D.m=function(){this.a[ja]()};D.ja=function(a){a&&a!=""&&(this.set(zb,a),this.a.f("var"))};var Gd=function(a){a.get(Wb)!=="trans"&&a.b(Ib,0)>=500&&a[pa]();if(a.get(Wb)==="event"){var b=(new Date).getTime(),c=a.b(Jb,0),d=a.b(Eb,0),c=k[ka](0.2*((b-(c!=d?c:c*1E3))/1E3));c>0&&(a.set(Jb,b),a.set(Q,k.min(10,a.b(Q,0)+c)));a.b(Q,0)<=0&&a[pa]()}},Id=function(a){a.get(Wb)==="event"&&a.set(Q,k.max(0,a.b(Q,10)-1))};var Jd=function(){var a=[];this.add=function(b,c,d){d&&(c=F(""+c));a[m](b+"="+c)};this.toString=function(){return a[A]("&")}},Kd=function(a,b){(b||a.get(gb)!=2)&&a.n(Ib)},Ld=function(a,b){b.add("utmwv","5.2.2");b.add("utms",a.get(Ib));b.add("utmn",va());var c=J[x].hostname;E(c)||b.add("utmhn",c,h);c=a.get(eb);c!=100&&b.add("utmsp",c,h)},Nd=function(a,b){b.add("utmac",a.get(Ia));a.get(Zb)&&b.add("utmni",1);Md(a,b);K.q&&b.add("aip",1);b.add("utmu",Mc.Ea())},Md=function(a,b){function c(a,b){b&&d[m](a+ +"="+b+";")}var d=[];c("__utma",yc(a));c("__utmz",Ec(a,j));c("__utmv",Bc(a,h));c("__utmx",td(a));b.add("utmcc",d[A]("+"),h)},Od=function(a,b){a.get(Ta)&&(b.add("utmcs",a.get(xb),h),b.add("utmsr",a.get(sb)),b.add("utmsc",a.get(tb)),b.add("utmul",a.get(wb)),b.add("utmje",a.get(ub)),b.add("utmfl",a.get(vb),h))},Pd=function(a,b){a.get(Wa)&&a.get(pb)&&b.add("utmdt",a.get(pb),h);b.add("utmhid",a.get(rb));b.add("utmr",Ea(a.get(qb),a.get(N)),h);b.add("utmp",F(a.get(ob),h),h)},Qd=function(a,b){for(var c=a.get(mb), +d=a.get(nb),e=a.get(O)||[],f=0;f<e[u];f++){var l=e[f];l&&(c||(c=new Yc),c.e(8,f,l[r]),c.e(9,f,l[la]),l[qa]!=3&&c.e(11,f,""+l[qa]))}!E(a.get($b))&&!E(a.get(ac),h)&&(c||(c=new Yc),c.e(5,1,a.get($b)),c.e(5,2,a.get(ac)),e=a.get(bc),e!=g&&c.e(5,3,e),e=a.get(cc),e!=g&&c.k(5,1,e));c?b.add("utme",c.ua(d),h):d&&b.add("utme",d.o(),h)},Rd=function(a,b,c){var d=new Jd;Kd(a,c);Ld(a,d);d.add("utmt","tran");d.add("utmtid",b.id_,h);d.add("utmtst",b.affiliation_,h);d.add("utmtto",b.total_,h);d.add("utmttx",b.tax_, +h);d.add("utmtsp",b.shipping_,h);d.add("utmtci",b.city_,h);d.add("utmtrg",b.state_,h);d.add("utmtco",b.country_,h);!c&&Nd(a,d);return d[t]()},Sd=function(a,b,c){var d=new Jd;Kd(a,c);Ld(a,d);d.add("utmt","item");d.add("utmtid",b.transId_,h);d.add("utmipc",b.sku_,h);d.add("utmipn",b.name_,h);d.add("utmiva",b.category_,h);d.add("utmipr",b.price_,h);d.add("utmiqt",b.quantity_,h);!c&&Nd(a,d);return d[t]()},Td=function(a,b){var c=a.get(Wb);if(c=="page")c=new Jd,Kd(a,b),Ld(a,c),Qd(a,c),Od(a,c),Pd(a,c),b|| +Nd(a,c),c=[c[t]()];else if(c=="event")c=new Jd,Kd(a,b),Ld(a,c),c.add("utmt","event"),Qd(a,c),Od(a,c),Pd(a,c),!b&&Nd(a,c),c=[c[t]()];else if(c=="var")c=new Jd,Kd(a,b),Ld(a,c),c.add("utmt","var"),!b&&Nd(a,c),c=[c[t]()];else if(c=="trans")for(var c=[],d=a.get(lb),e=0;e<d[u];++e){c[m](Rd(a,d[e],b));for(var f=d[e].items_,l=0;l<f[u];++l)c[m](Sd(a,f[l],b))}else c=="social"?b?c=[]:(c=new Jd,Kd(a,b),Ld(a,c),c.add("utmt","social"),c.add("utmsn",a.get(dc),h),c.add("utmsa",a.get(ec),h),c.add("utmsid",a.get(hc), +h),Qd(a,c),Od(a,c),Pd(a,c),Nd(a,c),c=[c[t]()]):c=[];return c},Hd=function(a){var b,c=a.get(gb),d=a.get(Yb),e=d&&d.Aa,f=0;if(c==0||c==2){var l=a.get(fb)+"?";b=Td(a,h);for(var o=0,q=b[u];o<q;o++)Ga(b[o],e,l,h),f++}if(c==1||c==2){b=Td(a);o=0;for(q=b[u];o<q;o++)try{Ga(b[o],e),f++}catch(s){s&&Fa(s[r],g,s.message)}}if(d)d.j=f};var Ud="https:"==J[x].protocol?"https://ssl.google-analytics.com":"http://www.google-analytics.com",Vd=function(a){ga(this,"len");this.message=a+"-8192"},Wd=function(a){ga(this,"ff2post");this.message=a+"-2036"},Ga=function(a,b,c,d){b=b||wa;if(d||a[u]<=2036)Xd(a,b,c);else if(a[u]<=8192){if(V[ra].userAgent[p]("Firefox")>=0&&![].reduce)throw new Wd(a[u]);Yd(a,b)||Zd(a,b)}else throw new Vd(a[u]);},Xd=function(a,b,c){var c=c||Ud+"/__utm.gif?",d=new Image(1,1);d.src=c+a;fa(d,function(){fa(d,i);d.onerror= +i;b()});d.onerror=function(){fa(d,i);d.onerror=i;b()}},Yd=function(a,b){var c,d=Ud+"/p/__utm.gif",e=V.XDomainRequest;if(e)c=new e,c.open("POST",d);else if(e=V.XMLHttpRequest)e=new e,"withCredentials"in e&&(c=e,c.open("POST",d,h),c.setRequestHeader("Content-Type","text/plain"));if(c)return c.onreadystatechange=function(){c.readyState==4&&(b(),c=i)},c.send(a),h},Zd=function(a,b){if(J.body){a=ba(a);try{var c=J.createElement('<iframe name="'+a+'"></iframe>')}catch(d){c=J.createElement("iframe"),ga(c, +a)}c.height="0";c.width="0";c.style.display="none";c.style.visibility="hidden";var e=J[x],e=Ud+"/u/post_iframe.html#"+ba(e.protocol+"//"+e[oa]+"/favicon.ico"),f=function(){c.src="";c.parentNode&&c.parentNode.removeChild(c)};xa(V,"beforeunload",f);var l=j,o=0,q=function(){if(!l){try{if(o>9||c.contentWindow[x][oa]==J[x][oa]){l=h;f();ya(V,"beforeunload",f);b();return}}catch(a){}o++;da(q,200)}};xa(c,"load",q);J.body.appendChild(c);c.src=e}else Nc(function(){Zd(a,b)},100)};var Z=function(){this.q=j;this.D={};this.F=[];this.wa=0;this._gasoCPath=this._gasoDomain=g;R(Z[v],"_createTracker",Z[v].l,55);R(Z[v],"_getTracker",Z[v].ya,0);R(Z[v],"_getTrackerByName",Z[v].p,51);R(Z[v],"_getTrackers",Z[v].za,130);R(Z[v],"_anonymizeIp",Z[v].xa,16);mc()};D=Z[v];D.ya=function(a,b){return this.l(a,g,b)};D.l=function(a,b,c){b&&G(23);c&&G(67);b==g&&(b="~"+K.wa++);a=new S(b,a,c);K.D[b]=a;K.F[m](a);return a};D.p=function(a){a=a||"";return K.D[a]||K.l(g,a)};D.za=function(){return K.F[ha](0)}; +D.xa=function(){this.q=h};var $d=function(a){if(J.webkitVisibilityState=="prerender")return j;a();return h};var K=new Z;var ae=V._gat;ae&&typeof ae._getTracker=="function"?K=ae:V._gat=K;var Tc=new Y;(function(a){if(!$d(a)){G(123);var b=j,c=function(){!b&&$d(a)&&(G(124),b=h,ya(J,"webkitvisibilitychange",c))};xa(J,"webkitvisibilitychange",c)}})(function(){var a=V._gaq,b=j;if(a&&typeof a[m]=="function"&&(b=Object[v][t].call(Object(a))=="[object Array]",!b)){Tc=a;return}V._gaq=Tc;b&&Tc[m].apply(Tc,a)});})(); diff --git a/test/ import mapinfo_files/iu3.html b/test/ import mapinfo_files/iu3.html new file mode 100644 index 0000000..e1f51b9 --- /dev/null +++ b/test/ import mapinfo_files/iu3.html @@ -0,0 +1,4 @@ + +<!-- saved from url=(0161)http://s.amazon-adsystem.com/iu3?d=assoc-amazon.com&rP=http%3A%2F%2Fwww.bostongis.com%2FPrinterFriendly.aspx%3Fcontent_name%3Dogr_cheatsheet&cB=78163663856685.16 --> +<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></head><body style="background-color:transparent" marginwidth="0" marginheight="0"> +</body></html>
\ No newline at end of file diff --git a/test/ import mapinfo_files/jeditcode.css b/test/ import mapinfo_files/jeditcode.css new file mode 100644 index 0000000..7d8abe2 --- /dev/null +++ b/test/ import mapinfo_files/jeditcode.css @@ -0,0 +1,158 @@ +code {
+ background-color: #EFEFEF;
+ border-color: #003333;
+ display: block;
+ font-family: courier;
+ font-size: normal;
+ width:700px;
+}
+div.code {
+ width: 700px;overflow: auto;
+ background-color: #EFEFEF;
+ border-style: dotted;
+ border-width: thin;
+}
+
+@print div.code {
+ width: 700px;
+ background-color: #EFEFEF;
+ border-style: dotted;
+ border-width: thin;
+}
+
+.syntax0 {
+color: #000000;
+}
+.syntax1 {
+color: #009900;
+font-style: italic;
+}
+.syntax2 {
+color: #cccccc;
+font-style: italic;
+}
+.syntax3 {
+color: #6600cc;
+}
+.syntax4 {
+color: #cc6600;
+}
+.syntax5 {
+color: #009191;
+}
+.syntax6 {
+color: #000099;
+}
+.syntax7 {
+color: #ff0000;
+font-weight: bold;
+}
+.syntax8 {
+color: #0000ba;
+}
+.syntax9 {
+color: #990000;
+font-weight: bold;
+}
+.syntax10 {
+color: #0b5174;
+font-weight: bold;
+}
+.syntax11 {
+color: #006699;
+font-weight: bold;
+}
+.syntax12 {
+color: #990033;
+font-weight: bold;
+font-style: italic;
+}
+.syntax13 {
+color: #ee0009;
+font-style: italic;
+}
+.syntax14 {
+color: #ff6666;
+}
+.syntax15 {
+color: #9900cc;
+}
+.syntax16 {
+color: #6600cc;
+}
+.syntax17 {
+color: #990033;
+}
+.syntax18 {
+color: #000000;
+font-weight: bold;
+}
+
+
+.syntax-NULL {
+ color: #000000;
+}
+.syntax-COMMENT1 {
+ color: #009900;
+ font-style: italic;
+}
+.syntax-COMMENT2 {
+ color: #cccccc;
+ font-style: italic;
+}
+.syntax-COMMENT3 {
+ color: #3a6a60;
+}
+.syntax-COMMENT4 {
+ color: #3a6a60;
+}
+.syntax-DIGIT {
+ color: #009191;
+}
+.syntax-FUNCTION {
+ color: #000099;
+}
+.syntax-INVALID {
+ color: #ff0000;
+ font-weight: bold;
+}
+.syntax-KEYWORD1 {
+ color: #0000ba;
+}
+.syntax-KEYWORD2 {
+ color: #990000;
+ font-weight: bold;
+}
+.syntax-KEYWORD3 {
+ color: #0b5174;
+ font-weight: bold;
+}
+.syntax-KEYWORD4 {
+ color: #8b677f;
+ font-weight: bold;
+}
+.syntax-LABEL {
+ color: #990033;
+ font-weight: bold;
+ font-style: italic;
+}
+.syntax-LITERAL1 {
+ color: #ee0009;
+ font-style: italic;
+}
+.syntax-LITERAL2 {
+ color: #ff6666;
+}
+.syntax-LITERAL3 {
+ color: #af5992;
+}
+.syntax-LITERAL4 {
+ color: #000000;
+}
+.syntax-MARKUP {
+ color: #990033;
+}
+.syntax-OPERATOR {
+ color: #000000;
+ font-weight: bold;
+}
\ No newline at end of file diff --git a/test/ import mapinfo_files/mapserver_logo.gif b/test/ import mapinfo_files/mapserver_logo.gif Binary files differnew file mode 100644 index 0000000..7a24576 --- /dev/null +++ b/test/ import mapinfo_files/mapserver_logo.gif diff --git a/test/ import mapinfo_files/postgisinaction_small.jpg b/test/ import mapinfo_files/postgisinaction_small.jpg Binary files differnew file mode 100644 index 0000000..fb1740c --- /dev/null +++ b/test/ import mapinfo_files/postgisinaction_small.jpg diff --git a/test/ import mapinfo_files/postgresql95x51_4.gif b/test/ import mapinfo_files/postgresql95x51_4.gif Binary files differnew file mode 100644 index 0000000..cec74d9 --- /dev/null +++ b/test/ import mapinfo_files/postgresql95x51_4.gif diff --git a/test/ import mapinfo_files/printer.css b/test/ import mapinfo_files/printer.css new file mode 100644 index 0000000..5c16d43 --- /dev/null +++ b/test/ import mapinfo_files/printer.css @@ -0,0 +1 @@ +@media print { .screen_only {display:none}}
diff --git a/test/ import mapinfo_files/redditsm.gif b/test/ import mapinfo_files/redditsm.gif Binary files differnew file mode 100644 index 0000000..37d87c5 --- /dev/null +++ b/test/ import mapinfo_files/redditsm.gif diff --git a/test/ import mapinfo_files/rss.png b/test/ import mapinfo_files/rss.png Binary files differnew file mode 100644 index 0000000..31e15b1 --- /dev/null +++ b/test/ import mapinfo_files/rss.png diff --git a/test/ import mapinfo_files/stock_elephant_060_rev.gif b/test/ import mapinfo_files/stock_elephant_060_rev.gif Binary files differnew file mode 100644 index 0000000..70a8c43 --- /dev/null +++ b/test/ import mapinfo_files/stock_elephant_060_rev.gif |
