Changeset 6400 for extensions/rv_gmaps


Ignore:
Timestamp:
May 27, 2010, 10:10:39 PM (14 years ago)
Author:
rvelices
Message:

rv_sitemap compatible with 2.1rv_gmaps compatibility with 2.1.0

Location:
extensions/rv_gmaps/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/rv_gmaps/trunk/admin/admin_sync.tpl

    r3447 r6400  
    22
    33{if isset($metadata_result)}
    4 <h3>{'update_result_metadata'|@translate}</h3>
     4<h3>{'Metadata synchronization results'|@translate}</h3>
    55<ul>
    6         <li>{$metadata_result.NB_ELEMENTS_DONE} {'update_nb_elements_metadata_sync'|@translate}</li>
    7         <li>{$metadata_result.NB_ELEMENTS_CANDIDATES} {'update_nb_elements_metadata_available'|@translate}</li>
    8         <li>{$metadata_result.NB_ERRORS} {'update_nb_errors'|@translate}</li>
     6        <li>{$metadata_result.NB_ELEMENTS_DONE} {'elements updated in the database'|@translate}</li>
     7        <li>{$metadata_result.NB_ELEMENTS_CANDIDATES} {'images candidates for metadata synchronization'|@translate}</li>
     8        <li>{$metadata_result.NB_ERRORS} {'errors during synchronization'|@translate}</li>
    99</ul>
    1010{/if}
    1111
    1212{if not empty($sync_errors)}
    13 <h3>{'update_error_list_title'|@translate}</h3>
     13<h3>{'Error list'|@translate}</h3>
    1414<div class="errors">
    1515<ul>
     
    2626    <legend>synchronization options</legend>
    2727    <ul>
    28       <li><label><input type="checkbox" name="simulate" value="1" checked="checked" {$TAG_INPUT_ENABLED} /> {'update_simulate'|@translate}</label></li>
     28      <li><label><input type="checkbox" name="simulate" value="1" checked="checked" {$TAG_INPUT_ENABLED} /> {'only perform a simulation (no change in database will be made)'|@translate}</label></li>
    2929    </ul>
    3030  </fieldset>
    3131
    3232  <fieldset id="catSubset">
    33     <legend>{'update_cats_subset'|@translate}</legend>
     33    <legend>{'reduce to single existing categories'|@translate}</legend>
    3434    <ul>
    3535    <li>
     
    3939    </li>
    4040
    41     <li><label><input type="checkbox" name="subcats_included" value="1" {$SUBCATS_INCLUDED_CHECKED} /> {'search_subcats_included'|@translate}</label></li>
     41    <li><label><input type="checkbox" name="subcats_included" value="1" {$SUBCATS_INCLUDED_CHECKED} /> {'Search in subcategories'|@translate}</label></li>
    4242    </ul>
    4343  </fieldset>
  • extensions/rv_gmaps/trunk/changelog.txt

    r5018 r6400  
     12.1.a
     2- compatibility with piwigo 2.1
     3- rolled back dirty fix in previos version (google corrected the issue)
     4       
    152.0.d
    26  - hungarian translation thanks to external contributors
  • extensions/rv_gmaps/trunk/main.inc.php

    r5018 r6400  
    11<?php /*
    22Plugin Name: RV Maps&Earth
    3 Version: 2.0.d
     3Version: 2.1.a
    44Description: Extend your gallery with Google Maps and Google Earth ...
    55Plugin URI: http://piwigo.org/ext/extension_view.php?eid=122
     
    77Author URI: http://www.modusoptimus.com/
    88*/
    9 define( 'RVM_PLUGIN_VERSION', '2.0.d');
     9define( 'RVM_PLUGIN_VERSION', '2.1.a');
    1010if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
    1111
  • extensions/rv_gmaps/trunk/template/data_loader.js

    r6245 r6400  
    7878
    7979        // BEGIN BUG in maps api 2.185 up to "today" 2.193 - when map wraps horizontally more than 360 deg - the getBounds is wrong
    80         if ( this._map.getZoom() <= 2 || this._map.getZoom() == 3 && this._map.getSize().width > 1000 )
     80        /*if ( this._map.getZoom() <= 2 || this._map.getZoom() == 3 && this._map.getSize().width > 1000 )
    8181        {
    8282                bounds = new GLatLngBounds(
     
    8484                                new GLatLng( bounds.getNorthEast().lat(),  180 )
    8585                        );
    86         }
     86        }*/
    8787        // END BUG
    8888        var latRange = bounds.toSpan().lat();
Note: See TracChangeset for help on using the changeset viewer.