Changeset 6400 for extensions/rv_gmaps/trunk
- Timestamp:
- May 27, 2010, 10:10:39 PM (15 years ago)
- Location:
- extensions/rv_gmaps/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/rv_gmaps/trunk/admin/admin_sync.tpl
r3447 r6400 2 2 3 3 {if isset($metadata_result)} 4 <h3>{' update_result_metadata'|@translate}</h3>4 <h3>{'Metadata synchronization results'|@translate}</h3> 5 5 <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> 9 9 </ul> 10 10 {/if} 11 11 12 12 {if not empty($sync_errors)} 13 <h3>{' update_error_list_title'|@translate}</h3>13 <h3>{'Error list'|@translate}</h3> 14 14 <div class="errors"> 15 15 <ul> … … 26 26 <legend>synchronization options</legend> 27 27 <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> 29 29 </ul> 30 30 </fieldset> 31 31 32 32 <fieldset id="catSubset"> 33 <legend>{' update_cats_subset'|@translate}</legend>33 <legend>{'reduce to single existing categories'|@translate}</legend> 34 34 <ul> 35 35 <li> … … 39 39 </li> 40 40 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> 42 42 </ul> 43 43 </fieldset> -
extensions/rv_gmaps/trunk/changelog.txt
r5018 r6400 1 2.1.a 2 - compatibility with piwigo 2.1 3 - rolled back dirty fix in previos version (google corrected the issue) 4 1 5 2.0.d 2 6 - hungarian translation thanks to external contributors -
extensions/rv_gmaps/trunk/main.inc.php
r5018 r6400 1 1 <?php /* 2 2 Plugin Name: RV Maps&Earth 3 Version: 2. 0.d3 Version: 2.1.a 4 4 Description: Extend your gallery with Google Maps and Google Earth ... 5 5 Plugin URI: http://piwigo.org/ext/extension_view.php?eid=122 … … 7 7 Author URI: http://www.modusoptimus.com/ 8 8 */ 9 define( 'RVM_PLUGIN_VERSION', '2. 0.d');9 define( 'RVM_PLUGIN_VERSION', '2.1.a'); 10 10 if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); 11 11 -
extensions/rv_gmaps/trunk/template/data_loader.js
r6245 r6400 78 78 79 79 // 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 ) 81 81 { 82 82 bounds = new GLatLngBounds( … … 84 84 new GLatLng( bounds.getNorthEast().lat(), 180 ) 85 85 ); 86 } 86 }*/ 87 87 // END BUG 88 88 var latRange = bounds.toSpan().lat();
Note: See TracChangeset
for help on using the changeset viewer.