Plugin Directory

Changeset 342628


Ignore:
Timestamp:
02/08/2011 08:07:18 PM (15 years ago)
Author:
dschuesae
Message:

-Replaced ' with ' - due to HTML 4 compatibility
-Heart Rate chart settings won't be saved on settings page

Location:
xml-google-maps/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • xml-google-maps/trunk/readme.txt

    r254414 r342628  
    44Requires at least: 2.1
    55Tested up to: 3.0
    6 Stable tag: 1.12.1
     6Stable tag: 1.12.2
    77Donate link: http://www.matusz.ch/donate_xmlgooglemapswpplugin.htm
    88
     
    5959
    6060== Changes ==
     61Version 1.12.2
     62<ul>
     63<li>Replaced &apos; with &#39; - due to HTML 4 compatibility</li>
     64<li>Heart Rate chart settings won't be saved on settings page</li>
     65</ul>
     66
    6167Version 1.12.1
    6268<ul>
     
    153159Version 1.7
    154160<ul>
    155 <li>Enumeration displayurlmode supports &apos;nomap&apos; for disabling the specified URL.</li>
     161<li>Enumeration displayurlmode supports &#39;nomap&#39; for disabling the specified URL.</li>
    156162<li>xmlgm supports now other links that are supported from the Google Maps API GeoXML Object - simply use it with [xmlgm {http://www.test.com/dynamic.php?output=kml} maptype=G_NORMAL_MAP]!</li>
    157163</ul>
     
    275281<ul>
    276282<li>Option Pane for Google Maps API Key and Dimension of the showing Google Maps</li>
    277 <li>GPX and KML files don&apos;t need to be added to wp_check_filetypes anymore</li>
     283<li>GPX and KML files don&#39;t need to be added to wp_check_filetypes anymore</li>
    278284</ul>
    279285
    280286Version 0.4
    281287<ul>
    282 <li>Internet Explorer didn&apos;t show Overlay&apos;s</li>
     288<li>Internet Explorer didn&#39;t show Overlay&#39;s</li>
    283289<li>Performance optimazation for Polylines with man points</li>
    284290</ul>
     
    288294<li>Use of Parameters: maptype, gpxinterval, gpxcolor, gpxlinewidth, gpxlineopacity, gpxview, maxlat, maxlon, minlat, minlon and urldisplaymode</li>
    289295<li>"My Maps - KML"-Links also get converted</li>
    290 <li>Georg&apos;s Solution for show.php</li>
     296<li>Georg&#39;s Solution for show.php</li>
    291297<li>Tracks and Routes get displayed</li>
    292298</ul>
  • xml-google-maps/trunk/xmlgooglemaps.php

    r148666 r342628  
    55 Feed URI: http://www.matusz.ch/blog/tags/xml-google-maps-wp-plugin/feed/
    66 Description: This plugin allows you to easily insert Google Map or Google Earth Plugin Maps into your blog. Supports KML, KMZ, GPX, geoRSS filelinks. Supports Default, Satellite, Hybrid, Physical and Google Earth Plugin Maptypes
    7  Version: 1.12.1
     7 Version: 1.12.2
    88 Author: Patrick Matusz
    99 Author URI: http://www.matusz.ch/blog/
     
    1313
    1414//Versionsinformationen
    15 define("XML_GOOGLE_MAPS_VERSION","1.12.1",true);
     15define("XML_GOOGLE_MAPS_VERSION","1.12.2",true);
    1616define("XML_GOOGLE_MAPS_DB_VERSION",2,true);
    1717
  • xml-google-maps/trunk/xmlgooglemaps_helper.php

    r152506 r342628  
    8686        $lon = ($lon - $value3) * 100;
    8787        $value4 = floor($lon);
    88         return $h." ".$value1."&deg; ".str_pad($value2,2,"0",STR_PAD_LEFT)."&apos; ".str_pad($value3,2,"0",STR_PAD_LEFT).".".str_pad($value4,2,"0",STR_PAD_LEFT)."&quot;";
     88        return $h." ".$value1."&deg; ".str_pad($value2,2,"0",STR_PAD_LEFT)."&#39; ".str_pad($value3,2,"0",STR_PAD_LEFT).".".str_pad($value4,2,"0",STR_PAD_LEFT)."&quot;";
    8989    }
    9090
     
    9999        $lat = ($lat - $value3) * 100;
    100100        $value4 = floor($lat);
    101         return $h." ".$value1."&deg; ".str_pad($value2,2,"0",STR_PAD_LEFT)."&apos; ".str_pad($value3,2,"0",STR_PAD_LEFT).".".str_pad($value4,2,"0",STR_PAD_LEFT)."&quot;";
     101        return $h." ".$value1."&deg; ".str_pad($value2,2,"0",STR_PAD_LEFT)."&#39; ".str_pad($value3,2,"0",STR_PAD_LEFT).".".str_pad($value4,2,"0",STR_PAD_LEFT)."&quot;";
    102102    }
    103103
  • xml-google-maps/trunk/xmlgooglemaps_optionspage.php

    r146734 r342628  
    8989        $xmlgm_heartratechart = $_POST[key_xmlgm_heartratechart];
    9090        if ($xmlgm_heartratechart == '')
    91         $xmlgm_heartratechart = xmlgm_heartratechart_default;
     91            $xmlgm_heartratechart = xmlgm_heartratechart_default;
    9292        update_option(key_xmlgm_heartratechart, $xmlgm_heartratechart);
    9393
     
    127127        $xmlgm_speedheight = xmlgm_speedheight_default;
    128128        update_option(key_xmlgm_speedheight, $xmlgm_speedheight);
    129 
     129       
    130130        //Speed Height
    131131        $xmlgm_heartrateheight = intval($_POST[key_xmlgm_heartrateheight]);
     
    417417        $tipps[] = "Did you know that the <b>NextGEN</b> Parameters can be used more than once to show multiple galleries or pictures? [xmlgml ngg_gallery=1; ngg_gallery=2] will show the first and second gallery images on the map!";
    418418    }
    419     $tipps[] = "This plugin can handle <b><a href='http://www.umapper.com' target='_blank'>umapper.com</a></b> KML links. Try this [xmlgm {&lt;link to the umapper kml file&gt;}] or &lt;a href=&apos;http://www.umapper.com/download/maps/kml/xxx.kml&apos&gt;Testmap&lt;/a&gt;!";
     419    $tipps[] = "This plugin can handle <b><a href='http://www.umapper.com' target='_blank'>umapper.com</a></b> KML links. Try this [xmlgm {&lt;link to the umapper kml file&gt;}] or &lt;a href=&#39;http://www.umapper.com/download/maps/kml/xxx.kml&apos&gt;Testmap&lt;/a&gt;!";
    420420    $tipps[] = "There are a lot of <b>samples</b> how to use this plugin. Have a look at the <a href='http://www.matusz.ch/blog/projekte/xml-google-maps-wordpress-plugin-en/samples/' target='_blank'>English</a> or <a href='http://www.matusz.ch/blog/projekte/xml-google-maps-wordpress-plugin/beispiele/' target='_blank'>German</a> Sample Page!";
    421421    $tipps[] = "Did you know that a <b>GeoRSS</b> Feed can be converted into a map with this plugin? Try this [xmlgm {&lt;link to the georss feed&gt;}]!";
    422     $tipps[] = "Try the <b>Google Earth Browser Plugin</b> in the Google Maps API - this rocks! Set the Default Map Type &apos;Google Earth Plugin&apos;!";
     422    $tipps[] = "Try the <b>Google Earth Browser Plugin</b> in the Google Maps API - this rocks! Set the Default Map Type &#39;Google Earth Plugin&#39;!";
    423423    $tipps[] = "Have a look at the Checkpoint Table feature if you're using a GPX file. This feature will extract additional data out of your GPX tracks (Average Speed, Moving Speed, Max Speed, Climbing up, Climbing down, Distances, Moving Time, Time)!"; 
    424424    $tipps[] = "This plugin supports metric, imperial and nautical measurement types!";
     
    427427    $tipps[] = "Did you ever doubleclicked on a GPX Waypoint Marker that has a Link Element? Yes, this plugin will directly open the specified URL in a new window! You want to open the URL by one click or disable this function, no problem: simply set the specific option or parameter to the specific value!";
    428428    $tipps[] = "Enable caching now within this plugin!";
    429     $tipps[] = "To clear cache, simply click button &apos;Save Changes&apos; here on this page!";
     429    $tipps[] = "To clear cache, simply click button &#39;Save Changes&#39; here on this page!";
    430430    $tipps[] = "Your GPS records your heart rate? Export to GPX and show a heart rate profile!";
    431431    $tipps[] = "DIV, IFRAME and IMG-Tags generated from this plugin have a CSS Class now!";
     
    532532        echo "value='".get_option(key_xmlgm_cache)."' />\n";
    533533        ?>
    534         <p style="margin: 5px 10px;">Enter the cache duration in minutes (-1 = disabled / 0 = infinite). Cache get cleared by clicking the &apos;Save Changes&apos; Button here on this page!</p>
     534        <p style="margin: 5px 10px;">Enter the cache duration in minutes (-1 = disabled / 0 = infinite). Cache get cleared by clicking the &#39;Save Changes&#39; Button here on this page!</p>
    535535        </td>
    536536    </tr>
     
    607607        ?>
    608608        <p style="margin: 5px 10px;">Specifies how to tranform the added Link.
    609         If you want to completely remove it then select &apos;Map only&apos;.
    610         If you want to remove only the parameters, then select &apos;Map, URL
    611         Title without Parameters&apos;. Orelse if you want to show the whole
    612         link as you typed it in then select &apos;Map, URL Title and
    613         Parameters&apos;. If you wan't to disable the plugin by default,
    614         select &apos;URL Title without Paramaters and without Map&apos;!</p>
     609        If you want to completely remove it then select &#39;Map only&#39;.
     610        If you want to remove only the parameters, then select &#39;Map, URL
     611        Title without Parameters&#39;. Orelse if you want to show the whole
     612        link as you typed it in then select &#39;Map, URL Title and
     613        Parameters&#39;. If you wan't to disable the plugin by default,
     614        select &#39;URL Title without Paramaters and without Map&#39;!</p>
    615615        </td>
    616616    </tr>
     
    13271327        <td width="50%"><?php
    13281328        echo "<select ";
    1329         echo "name='".key_xmlgm_heartretechart."' ";
     1329        echo "name='".key_xmlgm_heartratechart."' ";
    13301330        echo "id='".key_xmlgm_heartratechart."'>";
    13311331        switch (get_option(key_xmlgm_heartratechart))
  • xml-google-maps/trunk/xmlgooglemaps_show.php

    r148320 r342628  
    9898                }
    9999            } else {
    100                 $error .= "Your PHP installation on your webserver doesn&apos;t support EXIF functions. This plugin needs these functions to read the coordinates from the image file. Please consult <a href=\"http://ch2.php.net/manual/en/book.exif.php\" target=\"_blank\">http://ch2.php.net/manual/en/book.exif.php</a> for more information!<br />";
     100                $error .= "Your PHP installation on your webserver doesn&#39;t support EXIF functions. This plugin needs these functions to read the coordinates from the image file. Please consult <a href=\"http://ch2.php.net/manual/en/book.exif.php\" target=\"_blank\">http://ch2.php.net/manual/en/book.exif.php</a> for more information!<br />";
    101101            }
    102102        } else {
Note: See TracChangeset for help on using the changeset viewer.