Forum Activity for @ultrajam

SteveX
@ultrajam
02/18/15 02:35:42AM
2,589 posts

Changelog Request / Suggestion


Suggestions

Just for interest, theres a github project looking at changelogs:
http://keepachangelog.com/

All I use the Jamroom changelog for is to quickly look to see what has changed before updating the module from the marketplace.

If I need to know where code has changed I compare (diff) directories so that the code is right there in front of me when I click on each change. I do that directly in my text editor (BBedit), but there are many stand alone tools as well. I can't imagine how inconvenient it must be to want a list of changed files and line numbers in order to look up changes.
updated by @ultrajam: 02/18/15 02:36:11AM
SteveX
@ultrajam
02/17/15 11:23:56AM
2,589 posts

Can I not use arithmetic in search?


Jamroom Developers

Are you trying to find nearby profiles? If so, try something like this:

{$max_lng = $profile_longitude + 0.02}
{$min_lng = $profile_longitude - 0.02}
{$max_lat = $profile_latitude + 0.02}
{$min_lat = $profile_latitude - 0.02}

{jrCore_list module="jrProfile" search1="profile_longitude < `$max_lng`" search2="profile_longitude > `$min_lng`" search3="profile_latitude < `$max_lat`" search4="profile_latitude > `$min_lat`" limit=100 order_by="_created desc"}

If you are then mapping those points, you might want to use a square map as all of those points will be within a square.
updated by @ultrajam: 02/17/15 11:27:22AM
SteveX
@ultrajam
02/17/15 11:16:50AM
2,589 posts

Will a ujGooglemaps map appear in a SiteBuilder panel?


GoogleMaps

The lat and lng will draw a map with that lat/lng at the center.

If you want to draw a map with multiple items on it, you'd want to add the $profile_latitude and $profile_longitude your $_items array in the expected place (profile_googlemaps_lat and profile_googlemaps_lng).

This is untested, but you could try something like this:
{foreach $_items as $key => $val}
  {$_items[$key].profile_googlemaps_lat=$profile_latitude}
  {$_items[$key].profile_googlemaps_lng=$profile_longitude}
{/foreach}
or this:
{foreach $_items as $key => $val}
  {$_items.$key.profile_googlemaps_lat=$profile_latitude}
  {$_items.$key.profile_googlemaps_lng=$profile_longitude}
{/foreach}

Then pass the $_items array into the map parameter:
{ujGoogleMaps_map module="jrProfile" name="countywide" map=$_items height="300" width="100%" map_type="hybrid"}

updated by @ultrajam: 03/10/15 04:13:57PM
SteveX
@ultrajam
02/17/15 05:16:14AM
2,589 posts

RSS Output needed in forums


Suggestions

michael:Does anyone actually follow RSS feeds. I've not followed any in Years. Do you?

I do. I use a feed reader to keep track of blogs which sometimes have articles on things I am interested in, but not enough to visit regularly.

I usually check the feed reader every couple of weeks, scan quickly through the headlines and open anything that sounds interesting.
SteveX
@ultrajam
02/17/15 04:55:15AM
2,589 posts

Will a ujGooglemaps map appear in a SiteBuilder panel?


GoogleMaps

If you have mappable data in the $_items array you probably don't want lat and lng parameters as they will be provided by each item in the array.

You probably want jrProfile as the module (not sure that that would break it though). Have you seen the jrProfile docs here?:
https://www.jamroom.net/ultrajam/documentation/modules/1770/googlemaps#profile-maps
SteveX
@ultrajam
02/16/15 01:58:54PM
2,589 posts

How to get UjCategories


Archived

Invite sent, add the channel and you should be able to install ujCategories
SteveX
@ultrajam
02/13/15 05:06:03AM
2,589 posts

How to get UjCategories


Archived

Sure, but you'll have to give me more of a clue as to which one is you.
SteveX
@ultrajam
02/13/15 04:47:03AM
2,589 posts

Will a ujGooglemaps map appear in a SiteBuilder panel?


GoogleMaps

I have absolutely no idea about site builder I'm afraid, I have never even installed it and don't kow how it works.
  114