Plugin Directory

Changeset 1795059


Ignore:
Timestamp:
01/01/2018 03:27:25 AM (8 years ago)
Author:
magblogapi
Message:

*Version 3.9.0 *- December 31, 2017*

  • Added the Auto-Radius Density capability to the admin screen.
Location:
bmlt-wordpress-satellite-plugin/trunk
Files:
62 edited

Legend:

Unmodified
Added
Removed
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/README.md

    r1769896 r1795059  
    2222CHANGELIST
    2323----------
     24
     25***Version 3.9.0* ** *- December 31, 2017*
     26
     27- There was a minor bug in the [[bmlt_table]] CSS for the GreenAndGold theme.
     28- Added the admin UI for the auto-search radius.
    2429
    2530***Version 3.8.3* ** *- November 10, 2017*
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/admin_javascript.js

    r1769896 r1795059  
    22* \file admin_javascript.js                                                                 *
    33* \brief The javascript for the BMLTPlugin class (Admin options).                           *
    4 *   \version 3.8.3                                                                          *
     4*   \version 3.9.0                                                                          *
    55   
    66    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
     
    202202                var lang = lang_select.options[lang_select.selectedIndex].value;
    203203                url += '&BMLTPlugin_option_sheet_lang_'+option_index+'='+encodeURIComponent ( lang );
     204                }
     205            }
     206       
     207        if ( document.getElementById ( 'BMLTPlugin_option_sheet_auto_search_radius_'+option_index ) )
     208            {
     209            var radius_select = document.getElementById ( 'BMLTPlugin_option_sheet_auto_search_radius_'+option_index );
     210       
     211             if ( radius_select )
     212                {
     213                var radius = radius_select.options[radius_select.selectedIndex].value;
     214                url += '&BMLTPlugin_option_sheet_auto_search_radius_'+option_index+'='+encodeURIComponent ( radius );
    204215                }
    205216            }
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/admin_styles.css

    r1769896 r1795059  
    22* \file admin_styles.css                                                                    *
    33* \brief The CSS for the BMLTPlugin class (Admin options).                                  *
    4 *   \version 3.8.3                                                                          *
     4*   \version 3.9.0                                                                          *
    55   
    66    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/bmlt-cms-satellite-plugin.php

    r1769896 r1795059  
    44*                                                                                           *
    55*   \brief  This is a generic CMS plugin class for a BMLT satellite client.                 *
    6 *   \version 3.8.3                                                                          *
     6*   \version 3.9.0                                                                          *
    77*                                                                                           *
    88*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    13171317                                $ret .= '<option value="'.htmlspecialchars ( $value ).'"';
    13181318                                if ( $value == $options['bmlt_initial_view'] )
     1319                                    {
     1320                                    $ret .= ' selected="selected"';
     1321                                    }
     1322                                $ret .= '>'.$this->process_text ( $prompt ).'</option>';
     1323                                }
     1324                        $ret .= '</select>';
     1325                    $ret .= '</div>';
     1326                    $ret .= '<div class="BMLTPlugin_option_sheet_line_div">';
     1327                        $id = 'BMLTPlugin_option_sheet_auto_search_radius_'.$in_options_index;
     1328                        $ret .= '<label for="'.htmlspecialchars ( $id ).'">'.$this->process_text ( $this->my_current_language->local_options_auto_search_radius_prompt ).'</label>';
     1329                        $ret .= '<select id="'.htmlspecialchars ( $id ).'" onchange="BMLTPlugin_DirtifyOptionSheet()">';
     1330                            foreach ( $this->my_current_language->local_options_auto_search_radius_display_names as $prompt => $value )
     1331                                {
     1332                                $ret .= '<option value="'.htmlspecialchars ( $value ).'"';
     1333                                if ( $value == $options['default_geo_width'] )
    13191334                                    {
    13201335                                    $ret .= ' selected="selected"';
     
    15491564                            {
    15501565                            $options['lang'] = $this->my_http_vars['BMLTPlugin_option_sheet_lang_'.$i];
     1566                            }
     1567                       
     1568                        if ( isset ( $this->my_http_vars['BMLTPlugin_option_sheet_auto_search_radius_'.$i] ) )
     1569                            {
     1570                            $options['default_geo_width'] = $this->my_http_vars['BMLTPlugin_option_sheet_auto_search_radius_'.$i];
    15511571                            }
    15521572                       
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/bmlt-unit-test-satellite-plugin.php

    r1769896 r1795059  
    44*                                                                                           *
    55*   \brief  This is a standalone unit test plugin of a BMLT satellite client.               *
    6 *   \version 3.8.3                                                                          *
     6*   \version 3.9.0                                                                          *
    77*                                                                                           *
    88*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/fast_mobile_lookup.js

    r1769896 r1795059  
    22* \file fast_mobile_lookup.js                                                               *
    33* \brief Javascript functions for the fast mobile lookup map interface.                     *
    4 *   \version 3.8.3                                                                          *
     4*   \version 3.9.0                                                                          *
    55*                                                                                           *
    66*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/javascript.js

    r1769896 r1795059  
    22* \file javascript.js                                                                       *
    33* \brief The javascript for the BMLTPlugin class.                                           *
    4 *   \version 3.8.3                                                                          *
     4*   \version 3.9.0                                                                          *
    55   
    66    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/BMLT_Localized_BaseClass.class.php

    r1769896 r1795059  
    55*                                                                                           *
    66*   \brief  This file contains The base localizations c;ass                                 *
    7 *   \version 3.8.3                                                                          *
     7*   \version 3.9.0                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_da.php

    r1769896 r1795059  
    55*                                                                                           *
    66*   \brief  This file contains Danish localizations.                                        *
    7 *   \version 3.8.3                                                                          *
     7*   \version 3.9.0                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    9696   
    9797        $this->local_options_google_api_label = 'Google Maps API Key:';       ///< The label for the Google Maps API Key Text Entry.
     98       
     99        $this->local_options_auto_search_radius_prompt = 'Auto Search Density:';    ///< The label for the Auto Search Density popup.
     100        $this->local_options_auto_search_radius_display_names = array (             ///< The values for the auto-search density popup.
     101                                                                        'Minimum'   => -2,
     102                                                                        'Less'      => -5,
     103                                                                        'Normal'    => -10,
     104                                                                        'More'      => -15,
     105                                                                        'Maximum'   => -30,
     106                                                                        );
    98107   
    99108        $this->local_options_week_begins_on_prompt = 'Ugen Starter på:';       ///< This is the label for the week start popup menu.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_de.php

    r1769896 r1795059  
    55*                                                                                           *
    66*   \brief  This file contains German localizations.                                        *
    7 *   \version 3.8.3                                                                          *
     7*   \version 3.9.0                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    9696   
    9797        $this->local_options_google_api_label = 'Google Maps API Key:';       ///< The label for the Google Maps API Key Text Entry.
     98       
     99        $this->local_options_auto_search_radius_prompt = 'Auto Search Density:';    ///< The label for the Auto Search Density popup.
     100        $this->local_options_auto_search_radius_display_names = array (             ///< The values for the auto-search density popup.
     101                                                                        'Minimum'   => -2,
     102                                                                        'Less'      => -5,
     103                                                                        'Normal'    => -10,
     104                                                                        'More'      => -15,
     105                                                                        'Maximum'   => -30,
     106                                                                        );
    98107   
    99108        $this->local_options_week_begins_on_prompt = 'Wochen beginnen am:';       ///< This is the label for the week start popup menu.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_en.php

    r1769896 r1795059  
    55*                                                                                           *
    66*   \brief  This file contains English localizations.                                       *
    7 *   \version 3.8.3                                                                          *
     7*   \version 3.9.0                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    9696   
    9797        $this->local_options_google_api_label = 'Google Maps API Key:';       ///< The label for the Google Maps API Key Text Entry.
     98       
     99        $this->local_options_auto_search_radius_prompt = 'Auto Search Density:';    ///< The label for the Auto Search Density popup.
     100        $this->local_options_auto_search_radius_display_names = array (             ///< The values for the auto-search density popup.
     101                                                                        'Minimum'   => -2,
     102                                                                        'Less'      => -5,
     103                                                                        'Normal'    => -10,
     104                                                                        'More'      => -15,
     105                                                                        'Maximum'   => -30,
     106                                                                        );
    98107   
    99108        $this->local_options_week_begins_on_prompt = 'Weeks begin on:';       ///< This is the label for the week start popup menu.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_es.php

    r1734940 r1795059  
    9696   
    9797        $this->local_options_google_api_label = 'Google Maps API Key:';       ///< The label for the Google Maps API Key Text Entry.
     98       
     99        $this->local_options_auto_search_radius_prompt = 'Auto Search Density:';    ///< The label for the Auto Search Density popup.
     100        $this->local_options_auto_search_radius_display_names = array (             ///< The values for the auto-search density popup.
     101                                                                        'Minimum'   => -2,
     102                                                                        'Less'      => -5,
     103                                                                        'Normal'    => -10,
     104                                                                        'More'      => -15,
     105                                                                        'Maximum'   => -30,
     106                                                                        );
    98107   
    99108        $this->local_options_week_begins_on_prompt = 'Las Semanas Empiezan el día:';       ///< This is the label for the week start popup menu.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_fr.php

    r1769896 r1795059  
    55*                                                                                           *
    66*   \brief  This file contains French localizations.                                        *
    7 *   \version 3.8.3                                                                          *
     7*   \version 3.9.0                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    9696   
    9797        $this->local_options_google_api_label = 'Google Maps API Key:';       ///< The label for the Google Maps API Key Text Entry.
     98       
     99        $this->local_options_auto_search_radius_prompt = 'Auto Search Density:';    ///< The label for the Auto Search Density popup.
     100        $this->local_options_auto_search_radius_display_names = array (             ///< The values for the auto-search density popup.
     101                                                                        'Minimum'   => -2,
     102                                                                        'Less'      => -5,
     103                                                                        'Normal'    => -10,
     104                                                                        'More'      => -15,
     105                                                                        'Maximum'   => -30,
     106                                                                        );
    98107
    99108        $this->local_options_week_begins_on_prompt = 'Semaines débutants les:';       ///< This is the label for the week start popup menu.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_it.php

    r1769896 r1795059  
    55*                                                                                           *
    66*   \brief  This file contains Italian localizations.                                       *
    7 *   \version 3.8.3                                                                          *
     7*   \version 3.9.0                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    9696   
    9797        $this->local_options_google_api_label = 'Google Maps API Key:';       ///< The label for the Google Maps API Key Text Entry.
     98       
     99        $this->local_options_auto_search_radius_prompt = 'Densità automatica (della ricerca):';    ///< The label for the Auto Search Density popup.
     100        $this->local_options_auto_search_radius_display_names = array (             ///< The values for the auto-search density popup.
     101                                                                        'Minimo'            => -2,
     102                                                                        'Minore (Less)'     => -5,
     103                                                                        'Normale'           => -10,
     104                                                                        'Maggiore (More)'   => -15,
     105                                                                        'Massimo'           => -30,
     106                                                                        );
    98107   
    99108        $this->local_options_week_begins_on_prompt = 'Weeks begin on:';       ///< This is the label for the week start popup menu.
     
    229238        $this->local_nouveau_lookup_location_failed = "La ricerca dell\'indirizzo non è stata completata con successo."; ///< "The address lookup was not completed successfully."
    230239        $this->local_nouveau_lookup_location_server_error = "La ricerca dell\'indirizzo non è stata completata con successo a causa di un errore del server."; ///< "The address lookup was not completed successfully, due to a server error."
    231        $this->local_nouveau_time_sprintf_format = '%d:%02d %s';
     240        $this->local_nouveau_time_sprintf_format = '%d:%02d %s';
    232241        $this->local_nouveau_am = 'AM';
    233242        $this->local_nouveau_pm = 'PM';
     
    265274        *                   TABLE SHORTCODE STATIC DATA MEMBERS (LOCALIZABLE)                    *
    266275        ****************************************************************************************/
    267         $this->local_table_tab_loading_title_format        = 'Getting meetings for %s';
    268         $this->local_table_header_time_label              = 'Time';
    269         $this->local_table_header_meeting_name_label      = 'Meeting Name';
    270         $this->local_table_header_town_label              = 'Town';
    271         $this->local_table_header_address_label           = 'Address';
    272         $this->local_table_header_format_label            = 'Format';
    273         $this->local_table_header_tab_title_format        = 'Display meetings for %s';
    274         $this->local_table_ante_meridian                  = '"AM","PM","Noon","Midnight"';
    275         $this->local_table_no_meetings_format             = 'No meetings on %s';
     276        $this->local_table_tab_loading_title_format     = 'Getting meetings for %s';
     277        $this->local_table_header_time_label            = 'Time';
     278        $this->local_table_header_meeting_name_label    = 'Meeting Name';
     279        $this->local_table_header_town_label            = 'Town';
     280        $this->local_table_header_address_label         = 'Address';
     281        $this->local_table_header_format_label          = 'Format';
     282        $this->local_table_header_tab_title_format      = 'Display meetings for %s';
     283        $this->local_table_ante_meridian                = '"AM","PM","Noon","Midnight"';
     284        $this->local_table_no_meetings_format           = 'No meetings on %s';
    276285                                               
    277286        /************************************************************************************//**
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_pt.php

    r1769896 r1795059  
    55*                                                                                           *
    66*   \brief  This file contains Brazilian Portuguese localizations.                          *
    7 *   \version 3.8.3                                                                          *
     7*   \version 3.9.0                                                                          *
    88*                                                                                           *
    99*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
     
    9696   
    9797        $this->local_options_google_api_label = 'Google Maps API Key:';       ///< The label for the Google Maps API Key Text Entry.
     98       
     99        $this->local_options_auto_search_radius_prompt = 'Auto Search Density:';    ///< The label for the Auto Search Density popup.
     100        $this->local_options_auto_search_radius_display_names = array (             ///< The values for the auto-search density popup.
     101                                                                        'Minimum'   => -2,
     102                                                                        'Less'      => -5,
     103                                                                        'Normal'    => -10,
     104                                                                        'More'      => -15,
     105                                                                        'Maximum'   => -30,
     106                                                                        );
    98107   
    99108        $this->local_options_week_begins_on_prompt = 'O primeiro dia da semana é:';       ///< This is the label for the week start popup menu.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/lang/lang_sv.php

    r1769896 r1795059  
    55*                                                                                           *
    66* \brief This file contains Swedish localizations.                                          *
    7 * \version 3.8.3                                                                           *
     7* \version 3.9.0                                                                           *
    88*                                                                                           *
    99* This file is part of the BMLT Common Satellite Base Class Project. The project GitHub     *
     
    9696   
    9797        $this->local_options_google_api_label = 'Google Maps API Key:';       ///< The label for the Google Maps API Key Text Entry.
     98       
     99        $this->local_options_auto_search_radius_prompt = 'Auto Search Density:';    ///< The label for the Auto Search Density popup.
     100        $this->local_options_auto_search_radius_display_names = array (             ///< The values for the auto-search density popup.
     101                                                                        'Minimum'   => -2,
     102                                                                        'Less'      => -5,
     103                                                                        'Normal'    => -10,
     104                                                                        'More'      => -15,
     105                                                                        'Maximum'   => -30,
     106                                                                        );
    98107   
    99108        $this->local_options_week_begins_on_prompt = 'Veckor börjar på:';       ///< This is the label for the week start popup menu.
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/map_search.js

    r1769896 r1795059  
    22* \file map_search.js                                                                       *
    33* \brief Javascript functions for the new map search implementation.                        *
    4 *   \version 3.8.3                                                                          *
     4*   \version 3.9.0                                                                          *
    55*                                                                                           *
    66*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/nouveau_map_search.js

    r1769896 r1795059  
    1010*   robust, complete CSS presentation management.                                           *
    1111*                                                                                           *
    12 *   \version 3.8.3                                                                          *
     12*   \version 3.9.0                                                                          *
    1313*                                                                                           *
    1414*   This file is part of the BMLT Common Satellite Base Class Project. The project GitHub   *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/quicksearch.css

    r1769896 r1795059  
    55    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    66
    7     \version 3.8.3
     7    \version 3.9.0
    88   
    99    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/quicksearch.js

    r1769896 r1795059  
    22* \file quicksearch.js                                                                      *
    33* \brief The javascript for the [[bmlt_quicksearch]] shortcode of the BMLTPlugin class.     *
    4 *   \version 3.8.3                                                                          *
     4*   \version 3.9.0                                                                          *
    55   
    66    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/responsiveness.css

    r1769896 r1795059  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.8.3
     5    \version 3.9.0
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/table_display.js

    r1769896 r1795059  
    33  \brief Javascript functions for the basic table display.                                  *
    44                                                                                            *
    5     \version 3.8.3                                                                          *
     5    \version 3.9.0                                                                          *
    66                                                                                            *
    77    This file contains a function/object that implements the Fast Table Shortcode. Upon     *
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/table_styles.css

    r1769896 r1795059  
    11/*   
    2     \version 3.8.3
     2    \version 3.9.0
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/table_styles.php

    r1769896 r1795059  
    33/**     \file   loadTable_StyleFiles.php
    44
    5     \version 3.8.3
     5    \version 3.9.0
    66   
    77    \brief  This file reads in a CSS file, and optimizes it by stripping
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndRed/fast_mobile_lookup.css

    r1769896 r1795059  
    22* \file fast_mobile_lookup.css                                                              *
    33* \brief Contains the CSS to apply to the XHTML version of the satellite.                   *
    4 *   \version 3.8.3                                                                          *
     4*   \version 3.9.0                                                                          *
    55   
    66    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndRed/nouveau_map_styles.css

    r1769896 r1795059  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.8.3
     5    \version 3.9.0
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndRed/quicksearch.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndRed/styles.css

    r1769896 r1795059  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.8.3
     5    \version 3.9.0
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndRed/table_styles.css

    r1769896 r1795059  
    11/*   
    2     \version 3.8.3
     2    \version 3.9.0
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndWhite/fast_mobile_lookup.css

    r1769896 r1795059  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.8.3
     8    \version 3.9.0
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndWhite/nouveau_map_styles.css

    r1769896 r1795059  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.8.3
     5    \version 3.9.0
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndWhite/quicksearch.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndWhite/styles.css

    r1769896 r1795059  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.8.3
     5    \version 3.9.0
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/BlueAndWhite/table_styles.css

    r1769896 r1795059  
    11/*   
    2     \version 3.8.3
     2    \version 3.9.0
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR/fast_mobile_lookup.css

    r1769896 r1795059  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.8.3
     8    \version 3.9.0
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR/nouveau_map_styles.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR/quicksearch.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR/styles.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR/table_styles.css

    r1769896 r1795059  
    11/*   
    2     \version 3.8.3
     2    \version 3.9.0
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR2/fast_mobile_lookup.css

    r1769896 r1795059  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.8.3
     8    \version 3.9.0
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR2/nouveau_map_styles.css

    r1769896 r1795059  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.8.3
     5    \version 3.9.0
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR2/quicksearch.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR2/styles.css

    r1769896 r1795059  
    33    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    44
    5     \version 3.8.3
     5    \version 3.9.0
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GNYR2/table_styles.css

    r1769896 r1795059  
    11/*   
    2     \version 3.8.3
     2    \version 3.9.0
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreenAndGold/fast_mobile_lookup.css

    r1769896 r1795059  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.8.3
     8    \version 3.9.0
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreenAndGold/nouveau_map_styles.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreenAndGold/quicksearch.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreenAndGold/styles.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreenAndGold/table_styles.css

    r1769896 r1795059  
    1 #FFF/*   
    2     \version 3.8.3
     1/*   
     2    \version 3.9.0
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreyAndMaroon/fast_mobile_lookup.css

    r1769896 r1795059  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.8.3
     8    \version 3.9.0
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreyAndMaroon/nouveau_map_styles.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreyAndMaroon/quicksearch.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreyAndMaroon/styles.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/GreyAndMaroon/table_styles.css

    r1769896 r1795059  
    11/*   
    2     \version 3.8.3
     2    \version 3.9.0
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/default/fast_mobile_lookup.css

    r1769896 r1795059  
    66    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    77
    8     \version 3.8.3
     8    \version 3.9.0
    99   
    1010    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/default/nouveau_map_styles.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/default/quicksearch.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/default/styles.css

    r1769896 r1795059  
    44    page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class
    55
    6     \version 3.8.3
     6    \version 3.9.0
    77   
    88    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/themes/default/table_styles.css

    r1769896 r1795059  
    11/*   
    2     \version 3.8.3
     2    \version 3.9.0
    33   
    44    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/unit_test.php

    r1769896 r1795059  
    33* \file unit_test.php                                                                       *
    44* \brief A unit test harness for the BMLTPlugin class.                                      *
    5 *   \version 3.8.3                                                                          *
     5*   \version 3.9.0                                                                          *
    66   
    77    This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
  • bmlt-wordpress-satellite-plugin/trunk/bmlt-wordpress-satellite-plugin.php

    r1769898 r1795059  
    1010Author: MAGSHARE
    1111Description: This is a WordPress plugin satellite of the Basic Meeting List Toolbox.
    12 Version: 3.8.3
     12Version: 3.9.0
    1313Install: Drop this directory into the "wp-content/plugins/" directory and activate it.
    1414********************************************************************************************/
  • bmlt-wordpress-satellite-plugin/trunk/readme.txt

    r1769898 r1795059  
    77Requires at least: 2.6
    88Tested up to: 4.9
    9 Stable tag: 3.8.3
     9Stable tag: 3.9.0
    1010
    1111This is a "satellite" plugin for the Basic Meeting List Toolbox (BMLT).
     
    2828
    2929== Changelist ==
     30
     31***Version 3.9.0 ** *- December 31, 2017*
     32
     33- Fixed a minor style issue in the GreenAndGold theme.
     34- Added the ability to select an "Auto Radius" density. This is for the map search, and affects how many meetings are determined to be enough to satisfy an "auto radius" search.
    3035
    3136***Version 3.8.3* ** *- November 17, 2017*
Note: See TracChangeset for help on using the changeset viewer.