Jamroom Integration with another PHP Base System
Jamroom Developers
Sure its possible on the jamroom side. Don't know about the other programs side though.
You'd need to build a module to handle all the logic.
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>{$rss_title}</title>
<description>{$rss_desc}</description>
<link>{$rss_url}</link>
<lastBuildDate>{$rss_builddate}</lastBuildDate>
{foreach $_items as $item}
<item>
<title>{$item.title}</title>
<link>{$item.link}</link>
<description>{$item.description|jrCore_format_string:$item.profile_quota_id|strip_tags}</description>
<pubDate>{$item.pubdate}</pubDate>
</item>
{/foreach}
</channel>
</rss>
{jrSeamless_list modules="jrFlickr,jrGallery" pagebreak="16" pager=true order_by="_created desc" template="newest_galleries.tpl" page=$_post.p}
{if isset($_items)}
{jrCore_module_url module="jrGallery" assign="murl"}
{jrCore_module_url module="jrFlickr" assign="furl"}
<div class="container">
{foreach $_items as $item}
{if $item@first || ($item@iteration % 4) == 1}
<div class="row">
{/if}
<div class="col3">
{if $item.seamless_module_name == "jrGallery"}
<div class="img-profile"{if jrCore_is_mobile_device()} style="margin-bottom:50px;"{/if}>
<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.gallery_image_name|urlencode}" title="{$item.gallery_caption|default:$item.gallery_image_name|jrCore_entity_string}">{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$item._item_id size="xlarge" crop="auto" class="iloutline img_scale" alt=$item.gallery_image_name title=$item.gallery_image_name style="max-width:292px;max-height:292px;"}</a><br>{if isset($item.gallery_image_title)}
{$item.gallery_image_title|truncate:30:"...":false}
{else}
{$item.gallery_image_name|truncate:30:"...":true}
{/if}<br>
<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.gallery_title_url}" title="{$item.gallery_title}">{$item.gallery_title|truncate:25:"...":false}</a><br>
<a href="{$jamroom_url}/{$item.profile_url}" style="margin-bottom: 10px;">@{$item.profile_url}</a><br>
<div class="gallery_rating">
{jrCore_module_function function="jrRating_form" type="star" module="jrGallery" index="1" item_id=$item._item_id current=$item.gallery_rating_1_average_count|default:0 votes=$item.gallery_rating_1_count|default:0}
<br>
{$item._created|jrCore_date_format:true:"relative"}
</div>
</div>
{elseif $item.seamless_module_name == "jrFlickr"}
<div class="img-profile"{if jrCore_is_mobile_device()} style="margin-bottom:50px;"{/if}>
<a href="{$jamroom_url}/{$item.profile_url}/{$furl}/{$item._item_id}/{$item.gallery_image_name|urlencode}" title="{$item.gallery_caption|default:$item.gallery_image_name|jrCore_entity_string}">{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$item._item_id size="xlarge" crop="auto" class="iloutline img_scale" alt=$item.gallery_image_name title=$item.gallery_image_name style="max-width:292px;max-height:292px;"}</a><br>{if isset($item.gallery_image_title)}
{$item.gallery_image_title|truncate:30:"...":false}
{else}
{$item.gallery_image_name|truncate:30:"...":true}
{/if}<br>
<a href="{$jamroom_url}/{$item.profile_url}/{$furl}/{$item._item_id}/{$item.gallery_title_url}" title="{$item.gallery_title}">{$item.gallery_title|truncate:25:"...":false}</a><br>
<a href="{$jamroom_url}/{$item.profile_url}" style="margin-bottom: 10px;">@{$item.profile_url}</a><br>
<div class="gallery_rating">
{jrCore_module_function function="jrRating_form" type="star" module="jrGallery" index="1" item_id=$item._item_id current=$item.gallery_rating_1_average_count|default:0 votes=$item.gallery_rating_1_count|default:0}
<Br>
{$item._created|jrCore_date_format:true:"relative"}
</div>
</div>
{/if}
</div>
{if $item@last || ($item@iteration % 4) == 0}
</div>
{/if}
{/foreach}
{/if}{$item._created|jrCore_date_format:true:"relative"}

nice one.
{jrTags_cloud search="tag_module = jrProfile" search1="profile_quota_id = 8" height=300}