view geotemco/lib/simile/ajax/scripts/remoteLog.js @ 23:a879f6b9d166

modification for select-move-taglist: tags don't appear to be duplicated in other topics.
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Wed, 25 Feb 2015 10:59:45 +0100
parents b12c99b7c3f0
children
line wrap: on
line source

/*======================================================================
 *  RemoteLog
 *
 *  This is a singleton that permis logging of key-valued data to a 
 *  remote location. 
 *======================================================================
 */
 
SimileAjax.RemoteLog = {
    defaultURL:"http://groups.csail.mit.edu/haystack/facetlog/logger.php", 
    url:null,
    logActive: false
};

SimileAjax.RemoteLog.possiblyLog = function(vals) {
    if ((SimileAjax.RemoteLog.logActive) && (SimileAjax.RemoteLog.url != null)) {
        vals["url"] = window.location.href;
	try {
        SimileAjax.jQuery.ajax({type:'POST',url:SimileAjax.RemoteLog.url,data:vals});        
	}
	catch (e) {}
    }
};