Changeset 1769896
- Timestamp:
- 11/18/2017 03:09:32 AM (8 years ago)
- Location:
- bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class
- Files:
-
- 62 edited
-
BMLT-Satellite-Driver/README.md (modified) (1 diff)
-
BMLT-Satellite-Driver/bmlt_satellite_controller.class.php (modified) (2 diffs)
-
BMLT-Satellite-Driver/unit_test.php (modified) (1 diff)
-
README.md (modified) (1 diff)
-
admin_javascript.js (modified) (1 diff)
-
admin_styles.css (modified) (1 diff)
-
bmlt-cms-satellite-plugin.php (modified) (1 diff)
-
bmlt-unit-test-satellite-plugin.php (modified) (1 diff)
-
fast_mobile_lookup.js (modified) (1 diff)
-
javascript.js (modified) (1 diff)
-
lang/BMLT_Localized_BaseClass.class.php (modified) (1 diff)
-
lang/lang_da.php (modified) (1 diff)
-
lang/lang_de.php (modified) (1 diff)
-
lang/lang_en.php (modified) (1 diff)
-
lang/lang_fr.php (modified) (1 diff)
-
lang/lang_it.php (modified) (1 diff)
-
lang/lang_pt.php (modified) (1 diff)
-
lang/lang_sv.php (modified) (1 diff)
-
map_search.js (modified) (1 diff)
-
nouveau_map_search.js (modified) (1 diff)
-
quicksearch.css (modified) (1 diff)
-
quicksearch.js (modified) (1 diff)
-
responsiveness.css (modified) (1 diff)
-
table_display.js (modified) (1 diff)
-
table_styles.css (modified) (1 diff)
-
table_styles.php (modified) (1 diff)
-
themes/BlueAndRed/fast_mobile_lookup.css (modified) (1 diff)
-
themes/BlueAndRed/nouveau_map_styles.css (modified) (1 diff)
-
themes/BlueAndRed/quicksearch.css (modified) (1 diff)
-
themes/BlueAndRed/styles.css (modified) (1 diff)
-
themes/BlueAndRed/table_styles.css (modified) (1 diff)
-
themes/BlueAndWhite/fast_mobile_lookup.css (modified) (1 diff)
-
themes/BlueAndWhite/nouveau_map_styles.css (modified) (1 diff)
-
themes/BlueAndWhite/quicksearch.css (modified) (1 diff)
-
themes/BlueAndWhite/styles.css (modified) (1 diff)
-
themes/BlueAndWhite/table_styles.css (modified) (1 diff)
-
themes/GNYR/fast_mobile_lookup.css (modified) (1 diff)
-
themes/GNYR/nouveau_map_styles.css (modified) (1 diff)
-
themes/GNYR/quicksearch.css (modified) (1 diff)
-
themes/GNYR/styles.css (modified) (1 diff)
-
themes/GNYR/table_styles.css (modified) (1 diff)
-
themes/GNYR2/fast_mobile_lookup.css (modified) (1 diff)
-
themes/GNYR2/nouveau_map_styles.css (modified) (1 diff)
-
themes/GNYR2/quicksearch.css (modified) (1 diff)
-
themes/GNYR2/styles.css (modified) (1 diff)
-
themes/GNYR2/table_styles.css (modified) (1 diff)
-
themes/GreenAndGold/fast_mobile_lookup.css (modified) (1 diff)
-
themes/GreenAndGold/nouveau_map_styles.css (modified) (1 diff)
-
themes/GreenAndGold/quicksearch.css (modified) (1 diff)
-
themes/GreenAndGold/styles.css (modified) (1 diff)
-
themes/GreenAndGold/table_styles.css (modified) (1 diff)
-
themes/GreyAndMaroon/fast_mobile_lookup.css (modified) (1 diff)
-
themes/GreyAndMaroon/nouveau_map_styles.css (modified) (1 diff)
-
themes/GreyAndMaroon/quicksearch.css (modified) (1 diff)
-
themes/GreyAndMaroon/styles.css (modified) (1 diff)
-
themes/GreyAndMaroon/table_styles.css (modified) (1 diff)
-
themes/default/fast_mobile_lookup.css (modified) (1 diff)
-
themes/default/nouveau_map_styles.css (modified) (1 diff)
-
themes/default/quicksearch.css (modified) (1 diff)
-
themes/default/styles.css (modified) (1 diff)
-
themes/default/table_styles.css (modified) (1 diff)
-
unit_test.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/BMLT-Satellite-Driver/README.md
r1680495 r1769896 38 38 CHANGELIST 39 39 ---------- 40 ***Version 1.0.18* ** *- November 10, 2017* 41 42 - The spoofed user agent in the call_curl function caused problems with some security software. I changed it to one that I hope works better. 43 40 44 ***Version 1.0.17* ** *- June 17, 2017* 41 45 -
bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/BMLT-Satellite-Driver/bmlt_satellite_controller.class.php
r1680495 r1769896 4 4 \brief Provides low-level communication to the BMLT Root Server. 5 5 6 \version 1.0.1 76 \version 1.0.18 7 7 8 8 This file is part of the Basic Meeting List Toolbox (BMLT). … … 1395 1395 1396 1396 // Pretend we're a browser, so that anti-cURL settings don't pooch us. 1397 curl_setopt ( $resource, CURLOPT_USERAGENT, " Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)" );1397 curl_setopt ( $resource, CURLOPT_USERAGENT, "cURL Mozilla/5.0 (Windows NT 5.1; rv:21.0) Gecko/20130401 Firefox/21.0" ); 1398 1398 1399 1399 // Trust meeeee... -
bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/BMLT-Satellite-Driver/unit_test.php
r1680495 r1769896 3 3 * \file unit_test.php * 4 4 * \brief A unit test harness for the bmlt_satellite_controller class. * 5 * \version 1.0.1 7*5 * \version 1.0.18 * 6 6 7 7 This file is part of the Basic Meeting List Toolbox (BMLT). -
bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/README.md
r1742988 r1769896 22 22 CHANGELIST 23 23 ---------- 24 25 ***Version 3.8.3* ** *- November 10, 2017* 26 27 - With the new security regimens out there, the cURL spoofed UA may cause problems. I added "cURL" to it, and updated the other UA components. 24 28 25 29 ***Version 3.8.2* ** *- October 8, 2017* -
bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/admin_javascript.js
r1742988 r1769896 2 2 * \file admin_javascript.js * 3 3 * \brief The javascript for the BMLTPlugin class (Admin options). * 4 * \version 3.8. 2*4 * \version 3.8.3 * 5 5 6 6 This file is part of the BMLT Common Satellite Base Class Project. The project GitHub -
bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/admin_styles.css
r1742988 r1769896 2 2 * \file admin_styles.css * 3 3 * \brief The CSS for the BMLTPlugin class (Admin options). * 4 * \version 3.8. 2*4 * \version 3.8.3 * 5 5 6 6 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
r1742988 r1769896 4 4 * * 5 5 * \brief This is a generic CMS plugin class for a BMLT satellite client. * 6 * \version 3.8. 2*6 * \version 3.8.3 * 7 7 * * 8 8 * 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-unit-test-satellite-plugin.php
r1742988 r1769896 4 4 * * 5 5 * \brief This is a standalone unit test plugin of a BMLT satellite client. * 6 * \version 3.8. 2*6 * \version 3.8.3 * 7 7 * * 8 8 * 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
r1742988 r1769896 2 2 * \file fast_mobile_lookup.js * 3 3 * \brief Javascript functions for the fast mobile lookup map interface. * 4 * \version 3.8. 2*4 * \version 3.8.3 * 5 5 * * 6 6 * 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
r1742988 r1769896 2 2 * \file javascript.js * 3 3 * \brief The javascript for the BMLTPlugin class. * 4 * \version 3.8. 1*4 * \version 3.8.3 * 5 5 6 6 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
r1742988 r1769896 5 5 * * 6 6 * \brief This file contains The base localizations c;ass * 7 * \version 3.8. 2*7 * \version 3.8.3 * 8 8 * * 9 9 * 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
r1742988 r1769896 5 5 * * 6 6 * \brief This file contains Danish localizations. * 7 * \version 3.8. 1*7 * \version 3.8.3 * 8 8 * * 9 9 * 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_de.php
r1742988 r1769896 5 5 * * 6 6 * \brief This file contains German localizations. * 7 * \version 3.8. 2*7 * \version 3.8.3 * 8 8 * * 9 9 * 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_en.php
r1742988 r1769896 5 5 * * 6 6 * \brief This file contains English localizations. * 7 * \version 3.8. 2*7 * \version 3.8.3 * 8 8 * * 9 9 * 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_fr.php
r1742988 r1769896 5 5 * * 6 6 * \brief This file contains French localizations. * 7 * \version 3.8. 2*7 * \version 3.8.3 * 8 8 * * 9 9 * 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_it.php
r1742988 r1769896 5 5 * * 6 6 * \brief This file contains Italian localizations. * 7 * \version 3.8. 2*7 * \version 3.8.3 * 8 8 * * 9 9 * 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_pt.php
r1742988 r1769896 5 5 * * 6 6 * \brief This file contains Brazilian Portuguese localizations. * 7 * \version 3.8. 2*7 * \version 3.8.3 * 8 8 * * 9 9 * 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_sv.php
r1742988 r1769896 5 5 * * 6 6 * \brief This file contains Swedish localizations. * 7 * \version 3.8. 2*7 * \version 3.8.3 * 8 8 * * 9 9 * This file is part of the BMLT Common Satellite Base Class Project. The project GitHub * -
bmlt-wordpress-satellite-plugin/trunk/BMLT-Satellite-Base-Class/map_search.js
r1742988 r1769896 2 2 * \file map_search.js * 3 3 * \brief Javascript functions for the new map search implementation. * 4 * \version 3.8. 2*4 * \version 3.8.3 * 5 5 * * 6 6 * 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
r1742988 r1769896 10 10 * robust, complete CSS presentation management. * 11 11 * * 12 * \version 3.8. 2*12 * \version 3.8.3 * 13 13 * * 14 14 * 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
r1742988 r1769896 5 5 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 6 6 7 \version 3.8. 27 \version 3.8.3 8 8 9 9 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
r1742988 r1769896 2 2 * \file quicksearch.js * 3 3 * \brief The javascript for the [[bmlt_quicksearch]] shortcode of the BMLTPlugin class. * 4 * \version 3.8. 2*4 * \version 3.8.3 * 5 5 6 6 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
r1742988 r1769896 3 3 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 4 4 5 \version 3.8. 25 \version 3.8.3 6 6 7 7 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
r1742988 r1769896 3 3 \brief Javascript functions for the basic table display. * 4 4 * 5 \version 3.8. 2*5 \version 3.8.3 * 6 6 * 7 7 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
r1742988 r1769896 1 1 /* 2 \version 3.8. 22 \version 3.8.3 3 3 4 4 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
r1742988 r1769896 3 3 /** \file loadTable_StyleFiles.php 4 4 5 \version 3.8. 25 \version 3.8.3 6 6 7 7 \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
r1742988 r1769896 2 2 * \file fast_mobile_lookup.css * 3 3 * \brief Contains the CSS to apply to the XHTML version of the satellite. * 4 * \version 3.8. 2*4 * \version 3.8.3 * 5 5 6 6 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
r1742988 r1769896 3 3 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 4 4 5 \version 3.8. 25 \version 3.8.3 6 6 7 7 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 3 3 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 4 4 5 \version 3.8. 25 \version 3.8.3 6 6 7 7 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
r1742988 r1769896 1 1 /* 2 \version 3.8. 22 \version 3.8.3 3 3 4 4 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
r1742988 r1769896 6 6 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 7 7 8 \version 3.8. 28 \version 3.8.3 9 9 10 10 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
r1742988 r1769896 3 3 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 4 4 5 \version 3.8. 25 \version 3.8.3 6 6 7 7 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 3 3 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 4 4 5 \version 3.8. 25 \version 3.8.3 6 6 7 7 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
r1742988 r1769896 1 1 /* 2 \version 3.8. 22 \version 3.8.3 3 3 4 4 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
r1742988 r1769896 6 6 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 7 7 8 \version 3.8. 28 \version 3.8.3 9 9 10 10 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 1 1 /* 2 \version 3.8. 22 \version 3.8.3 3 3 4 4 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
r1742988 r1769896 6 6 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 7 7 8 \version 3.8. 28 \version 3.8.3 9 9 10 10 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
r1742988 r1769896 3 3 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 4 4 5 \version 3.8. 15 \version 3.8.3 6 6 7 7 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 3 3 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 4 4 5 \version 3.8. 25 \version 3.8.3 6 6 7 7 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
r1742988 r1769896 1 1 /* 2 \version 3.8. 22 \version 3.8.3 3 3 4 4 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
r1742988 r1769896 6 6 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 7 7 8 \version 3.8. 28 \version 3.8.3 9 9 10 10 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 16 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 1 1 #FFF/* 2 \version 3.8. 22 \version 3.8.3 3 3 4 4 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
r1742988 r1769896 6 6 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 7 7 8 \version 3.8. 28 \version 3.8.3 9 9 10 10 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 1 1 /* 2 \version 3.8. 12 \version 3.8.3 3 3 4 4 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
r1742988 r1769896 6 6 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 7 7 8 \version 3.8. 28 \version 3.8.3 9 9 10 10 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 4 4 page is available here: https://github.com/MAGSHARE/BMLT-Common-CMS-Plugin-Class 5 5 6 \version 3.8. 26 \version 3.8.3 7 7 8 8 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
r1742988 r1769896 1 1 /* 2 \version 3.8. 22 \version 3.8.3 3 3 4 4 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
r1742988 r1769896 3 3 * \file unit_test.php * 4 4 * \brief A unit test harness for the BMLTPlugin class. * 5 * \version 3.8. 2*5 * \version 3.8.3 * 6 6 7 7 This file is part of the BMLT Common Satellite Base Class Project. The project GitHub
Note: See TracChangeset
for help on using the changeset viewer.