Changeset 139920
- Timestamp:
- 07/28/2009 12:01:52 AM (16 years ago)
- Location:
- great-real-estate/trunk
- Files:
-
- 2 added
- 9 edited
-
admin/about.php (modified) (1 diff)
-
admin/admin.css (modified) (1 diff)
-
great-real-estate.php (modified) (6 diffs)
-
greatrealestate-es_AR.mo (added)
-
greatrealestate-es_AR.po (added)
-
greatrealestate-es_ES.mo (modified) (previous)
-
greatrealestate-es_ES.po (modified) (9 diffs)
-
interfaces/interface-nggallery.php (modified) (2 diffs)
-
interfaces/interface-wpdownloadmanager.php (modified) (3 diffs)
-
knownissues.txt (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
great-real-estate/trunk/admin/about.php
r80054 r139920 8 8 <h2>About Great Real Estate</h2> 9 9 <h3 class="tablenav">Great Real Estate Development</h3> 10 <p>This WordPress plugin is developed, supported, and updated by <a href="http://www.RogerTheriault.com/agents/">Roger Theriault</a>.</p> 11 <p>Translations: Italian (v1.0) by Rodney Tommasi (Split), French (v1.2) by Patrice "plwm" ROMEVO, http://www.creaweb64.com</p> 10 <p>This WordPress plugin is developed, supported, and updated by <a href="http://RogerTheriault.com/agents/">Roger Theriault</a>.</p> 11 <p>Translations:</p> 12 <ul> 13 <li>Italian (v1.0) by Rodney Tommasi (Split)</li> 14 <li>French (v1.2) by Patrice "plwm" ROMEVO, http://www.creaweb64.com</li> 15 <li>Russian (v1.3) by Yaroslaw Dorogyy</li> 16 <li>German (v1.3) by Helge Siems</li> 17 <li>Spanish - Europe(ES) or Latin America(AR) (v1.3) by Hernan Quiroga (Argentina) and Fernando Jose Orihuela Simon (Spain)</li> 18 </ul> 19 12 20 <p><!-- Contributions from Joan Soler (v1.2): Add New Listing link, Quick GMap Geocoding - coming in the next release, need some tweaks/testing --></p> 13 21 <h3 class="tablenav">Documentation</h3> -
great-real-estate/trunk/admin/admin.css
r51436 r139920 57 57 #gre-dashboard-main { 58 58 float: left; 59 width: 700px;59 min-width: 500px; 60 60 margin: 0px; 61 61 padding: 0px; -
great-real-estate/trunk/great-real-estate.php
r80564 r139920 4 4 Plugin URI: http://www.rogertheriault.com/agents/plugins/great-real-estate-plugin/ 5 5 Description: The Real Estate plugin for Wordpress 6 Version: 1. 2.16 Version: 1.3.0 7 7 Author: Roger Theriault 8 8 Author URI: http://RogerTheriault.com/agents/ … … 32 32 * changelog 33 33 * 34 * version 1.2.1 35 * [2008-12-16] Added compatibility with NextGen Gallery version 1.0+ 36 * version 1.2 37 * [2008-12-14] After WP 2.6, get default WP supplied jQuery ui and tabs 38 * [2008-08-02] included widget file; widget now installed automatically and no longer has a separate (confusing) entry in the plugins list 39 * Version 1.1 40 * [2008-07-27] updated for WP2.6 41 * added localization (correctly) 42 * Version 1.01 43 * [2008-06-27] added shortcode handler for featured listings block 44 * Version 1.0 (original) 34 * see readme.txt 45 35 * 46 36 */ … … 78 68 define( 'IS_WP26', version_compare( $wp_version, '2.6', '>=' ) ); 79 69 define( 'IS_WP27', version_compare( $wp_version, '2.7', '>=' ) ); 70 define( 'IS_WP28', version_compare( $wp_version, '2.8', '>=' ) ); 80 71 81 72 … … 144 135 if ( $googlekey ) { 145 136 $googlepath = "http://www.google.com/jsapi?key=" . $googlekey; 146 wp_enqueue_script( 'google', $googlepath, FALSE ); 147 wp_enqueue_script( 'google-gre', GRE_URLPATH . 'js/google.gre.js', array( 'google' ), '0.1.0' ); 148 } 149 if (! IS_WP26) { // pre-2.6 jquery includes 150 wp_enqueue_script( 'jquery-ui', GRE_URLPATH . 'js/ui.core.js', array( 'jquery' ) ); 151 wp_enqueue_script( 'jquery-ui-tabs', GRE_URLPATH . 'js/ui.tabs.js', array( 'jquery' ) ); 152 } else { 153 wp_enqueue_script( 'jquery-ui-core' ); 137 wp_enqueue_script( 'google', $googlepath, FALSE, false, true ); 138 wp_enqueue_script( 'google-gre', GRE_URLPATH . 'js/google.gre.js', array( 'google','jquery','jquery-ui-core','jquery-ui-tabs' ), '0.1.0', true ); 139 } 140 else { 154 141 wp_enqueue_script( 'jquery-ui-tabs' ); 155 142 } 156 143 157 144 } 158 add_action( 'wp_ print_scripts', 'greatrealestate_add_javascript' );145 add_action( 'wp_enqueue_scripts', 'greatrealestate_add_javascript' ); 159 146 160 147 … … 175 162 // the timeout gives the browser a few seconds to start displaying 176 163 // the map, otherwise GMaps will not receive its "kick" 164 } 165 add_action( 'wp_head', 'greatrealestate_add_headerincludes', 90 ); 166 167 function greatrealestate_add_footerjs() { 168 echo "\n<!-- great-real-estate -->\n"; 177 169 ?> 178 170 <script type="text/javascript"> 179 171 /* <![CDATA[ */ 180 172 jQuery(document).ready(function() { 181 jQuery('#listing-container > ul').tabs();173 jQuery('#listing-container').tabs(); 182 174 jQuery('a[href=#map]').bind('click',fixMap); 183 175 … … 190 182 </script> 191 183 <?php 192 echo "\n<!-- end great-real-estate -->\n"; 193 } 194 add_action( 'wp_head', 'greatrealestate_add_headerincludes', 90 ); 184 } 185 add_action( 'wp_footer', 'greatrealestate_add_footerjs', 90 ); 195 186 196 187 /********************************************************************* -
great-real-estate/trunk/greatrealestate-es_ES.po
r118551 r139920 5 5 "POT-Creation-Date: 2008-07-27 16:08-0500\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Hernan <altosierra@gmail.com>\n"7 "Last-Translator: Roger Theriault <roger@rogertheriault.com>\n" 8 8 "Language-Team: ita\n" 9 9 "MIME-Version: 1.0\n" … … 124 124 #: privatefunctions.php:152 125 125 msgid " Acres" 126 msgstr "Hectareas i"126 msgstr "Hectareas" 127 127 128 128 #: privatefunctions.php:153 … … 200 200 #: templatefunctions.php:73 201 201 msgid "$" 202 msgstr " $"202 msgstr "€" 203 203 204 204 #: templatefunctions.php:306 … … 463 463 #: admin/main.php:90 464 464 msgid "NextGen Gallery" 465 msgstr "Galleria d iNextGen"465 msgstr "Galleria de NextGen" 466 466 467 467 #: admin/editpage.php:172 … … 523 523 #: admin/editpage.php:217 524 524 msgid "Longitude (eg: -80.123456)" 525 msgstr "Longitud (Ej: -80.123 )"525 msgstr "Longitud (Ej: -80.123456)" 526 526 527 527 #: admin/editpage.php:224 … … 535 535 #: admin/listings.php:15 536 536 msgid "Manage Listings" 537 msgstr "Gesti nar listado"537 msgstr "Gestionar listado" 538 538 539 539 #: admin/listings.php:16 … … 600 600 #: admin/main.php:70 601 601 msgid "Unknown - please check your settings" 602 msgstr "Desconocido o- Por favor revise su selección"602 msgstr "Desconocido - Por favor revise su selección" 603 603 604 604 #: admin/main.php:73 … … 668 668 #: admin/main.php:123 669 669 msgid "widget not activated" 670 msgstr "Widget des cativado"670 msgstr "Widget desactivado" 671 671 672 672 #: admin/main.php:126 … … 789 789 #: admin/settings.php:103 790 790 msgid "e.g.: John Smith Listings, John Smith Homes For Sale, etc." 791 msgstr "por ejemplo: Listados de Swits, Swits propiedades ien venta, etc"791 msgstr "por ejemplo: Listados de Swits, Swits propiedades en venta, etc" 792 792 793 793 #: admin/settings.php:112 -
great-real-estate/trunk/interfaces/interface-nggallery.php
r80564 r139920 12 12 */ 13 13 14 if (! (class_exists('nggallery') || class_exists('nggGallery'))) return;14 if (! (class_exists('nggallery') || class_exists('nggGallery')) ) return; 15 15 16 16 // USE THESE FUNCTIONS … … 59 59 if ($picturelist) { 60 60 $pid = $picturelist[0]->pid; 61 if ( method_exists('nggGallery','get_thumbnail_url')) {61 if (is_callable(array('nggGallery','get_thumbnail_url'))) { 62 62 // new NextGen 1.0+ 63 63 $out = '<img alt="' . __('property photo') . '" src="' . nggGallery::get_thumbnail_url($pid) . '" ' . $myclass . ' />'; -
great-real-estate/trunk/interfaces/interface-wpdownloadmanager.php
r51436 r139920 2 2 3 3 # check for plugin wp-downloadmanager 4 if (!function_exists(' showdownload_embedded')) return;4 if (!function_exists('download_shortcode')) return; 5 5 6 6 // CALL THESE … … 29 29 $cat_sel = " AND file_category = '" . intval($cat) . "' "; 30 30 } 31 $files = $wpdb->get_results("SELECT * FROM $wpdb->downloads WHERE file_permission != - 1${cat_sel} ORDER BY 'file_name' ASC ");31 $files = $wpdb->get_results("SELECT * FROM $wpdb->downloads WHERE file_permission != -2 ${cat_sel} ORDER BY 'file_name' ASC "); 32 32 if($files) { 33 33 foreach($files as $file) { … … 41 41 function downloadmanager_showdownloadlink($id = '0') { 42 42 if ($id == '0') return; 43 $ids = explode(',', $id); 44 if (is_array($ids)) { 45 return download_embedded($ids, 'both'); 46 } else { 47 return download_embedded($id, 'both'); 48 } 43 return download_shortcode( array('id' => $id, 'display' => 'both') ); 49 44 } 50 45 -
great-real-estate/trunk/knownissues.txt
r80054 r139920 2 2 3 3 4 Known Issues (version 1. 2)4 Known Issues (version 1.3) 5 5 6 [2007-07-16] the tabbed interface may ca ouse navigation oddities when combined with paged thumbnails in the gallery. To avoid this, you can disable the paging in the gallery (ie display all thumbnails on one page). A future release will allow disabling of the tabs.7 [2007-07-16] form validation of fractional fields complains about decimals without a leading zero. (eg: .25 acres) 6 [2007-07-16] the tabbed interface may cause navigation oddities when combined with paged thumbnails in the gallery. To avoid this, you can disable the paging in the gallery (ie display all thumbnails on one page). A future release will allow disabling of the tabs. 7 [2007-07-16] form validation of fractional fields complains about decimals without a leading zero. (eg: .25 acres) - use 0.25 instead 8 8 [2008-06-25] the Inline Google Maps plugin conflicts with this plugin. Symptoms include the map marker not displaying. 9 9 - UPDATE/INSERT code needs to be more robust … … 13 13 - detect user templates and redirect first before using filters 14 14 15 FEATURES COMING SO ON15 FEATURES COMING SOME DAY 16 16 - additional choices and options for featured homes widget 17 17 - shortcodes and editor insert button for featured homes … … 26 26 - icons to show map, download, gallery, video, panorama on the Listings admin 27 27 - allow user customization of widget code 28 - paginate the listings index page 28 29 29 30 REPORT BUGS and FEATURE REQUESTS at http://rogertheriault.com/forums/ -
great-real-estate/trunk/readme.txt
r80564 r139920 3 3 Donate link: http://www.rogertheriault.com/agents/plugins/great-real-estate-plugin/ 4 4 Tags: real estate,ajax,listings,real,estate,homes 5 Requires at least: 2. 56 Tested up to: 2. 77 Stable tag: 1. 2.15 Requires at least: 2.8 6 Tested up to: 2.8.2 7 Stable tag: 1.3.0 8 8 9 9 Great Real Estate provides functionality to turn your WordPress installation into a content managed real estate website. … … 61 61 62 62 Great Real Estate - The Real Estate plugin for WordPress 63 Copyright (C) 2008 Roger Theriault63 Copyright (C) 2008, 2009 Roger Theriault 64 64 65 65 This program is free software: you can redistribute it and/or modify … … 77 77 78 78 79 == Changelog == 80 81 = 1.3.0 = 82 * [2009-07-27] support for WP 2.8 (requires WordPress 2.8) 83 * moved the JS scripts to the page footer 84 * changed invocation of tabs to conform to jQuery 1.3.x (target the parent div instead of > ul) 85 * changed checking for NextGen version to be more compatible with PHP 5.0.x 86 * additional localizations: German, Spanish, French, Italian, and Russian supported now 87 * support WP Download Manager version 1.5 (Files with permission "Everyone" were hidden) 88 89 = 1.2.1 = 90 * [2008-12-16] Added compatibility with NextGen Gallery version 1.0+ 91 92 = 1.2 = 93 * [2008-12-14] After WP 2.6, get default WP supplied jQuery ui and tabs 94 * [2008-08-02] included widget file; widget now installed automatically and no longer has a separate (confusing) entry in the plugins list 95 96 = 1.1 = 97 * [2008-07-27] updated for WP2.6 98 * added localization (correctly) 99 100 = 1.01 = 101 * [2008-06-27] added shortcode handler for featured listings block 102 103 = 1.0 = 104 * (original)
Note: See TracChangeset
for help on using the changeset viewer.