Skip to content
  1. Jan 08, 2016
  2. Oct 27, 2014
  3. Sep 07, 2014
  4. Aug 19, 2014
  5. Jun 21, 2014
  6. Oct 18, 2013
  7. Oct 11, 2013
  8. Sep 10, 2013
  9. May 11, 2013
  10. Nov 12, 2011
  11. Mar 28, 2011
  12. Feb 25, 2011
  13. Feb 22, 2011
  14. Feb 14, 2011
  15. Feb 09, 2011
    • Brandon Bergren's avatar
      The rest of the bounding box work: · 728a6259
      Brandon Bergren authored
      * Add remaining bounding boxes for everything but the legacy inc files (cs / sw)
      * Fix code formatting in some places.
      * Fix utf8 issue in the Moldova file.
      728a6259
  16. Jan 21, 2011
  17. Jan 20, 2011
  18. Jan 18, 2011
  19. Jan 11, 2011
  20. Jan 04, 2011
  21. Jul 04, 2010
  22. Jun 13, 2010
  23. Apr 29, 2010
  24. Mar 28, 2010
  25. Jan 19, 2010
  26. Jul 08, 2009
  27. Mar 24, 2009
  28. Jan 09, 2009
  29. Dec 10, 2008
  30. Dec 02, 2008
    • Brandon Bergren's avatar
      * Fix [#339471] (reported by theabacus) -- Make province search accept country names. · 8d595fb8
      Brandon Bergren authored
      * Implement multiple country autocomplete.
      * Allow location_province_code() to operate on an array of countries.
      * Extend autocomplete to handle setting specific classes to join country and province fields together -- should be more robust.
      * Switch to using views "force single" stuff for country and province filters.
        - If you are having trouble editing country or province filters, please see [#341827]!
      * Implement autocomplete for views province filter.
      8d595fb8
  31. Oct 09, 2008
    • Brandon Bergren's avatar
      * Add function location_province_code(). · 42e9eb5c
      Brandon Bergren authored
      * Fix $op 'delete' on hook_locationapi().
      * API CHANGE: Use location_save_locations() with an empty array instead of deleting rows from {location_instance}. This lets us have "real" deletion instead of relying on garbage collection.
      
      Before:
      <code>
      db_query("DELETE FROM {location_instance} WHERE genid = '%s'", 'mykey:'. $obj->id);
      </code>
      
      After:
      <code>
      $locations = array();
      location_save_locations($locations, array('genid' => 'mykey:'. $obj->id));
      </code>
      
      * Remove garbage collection routine and UI from settings page. References are checked automatically now.
      42e9eb5c
  32. Sep 17, 2008
  33. Sep 16, 2008