User documentation

User documentation contains all the important information that you need for the efficient use of BellaDati. It also includes a qucik-start section with related tutorial videos.

http://support.belladati.com/support/display/BellaDati25en

http://support.belladati.com/support/display/BellaDati25cs

See what's on

The customer is always the general point of our interest. We are constantly preparing new and better features of our services. You can find all the important news on our blog.

Developer documetation

Developers
System Requirements

BellaDati Developer Network

Browse documentation for advanced users and developers. This portal contains detailed information about our source technologies. It allows developers to use our interfaces or upgrade our current technologies.

Have an overview of licenses

If you want to know, what services and tariffs are you currently using, log into the my.BellaDati customer portal. You will find there all the information about products and payments. You can also order new services or upgrade the existing ones.

Report bugs, suggest features

Log in and tell us about bugs or suggest our some new features. If you want to know, how to create a request, please read short and simple instructions.

BellaDati Twitter

<div id="posts"><img src="http://dev.trgiman.eu/dev/download/attachments/4620293/ajax-loader.gif" /></div>

<script>

(function( $ ){
	$.extend( {
		jTwitter: function( username, numPosts, fnk ) {
			var info = {};

			// If no arguments are sent or only username is set
			if( username == 'undefined' || numPosts == 'undefined' ) {
				return;
			} else if( $.isFunction( numPosts ) ) {
				// If only username and callback function is set
				fnk = numPosts;
				numPosts = 5;
			}

			var url = "http://twitter.com/status/user_timeline/"
				+ username + ".json?count="+numPosts+"&callback=?";

			$.getJSON( url, function( data ){
				if( $.isFunction( fnk ) ) {
					fnk.call( this, data );
				}
			});
		}
	});
})( jQuery );

function replaceURLWithHTMLLinks(text) {
  var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
  return text.replace(exp,"<a href='$1'>$1</a>");
}


$(document).ready(function(){
    $.jTwitter('BellaDati', 8, function(data){
        $('#posts').empty();
        $('#posts').addClass("postsComplete");
        $.each(data, function(i, post){
            $('#posts').append(
                '<div class="twitterPost">'
                +    replaceURLWithHTMLLinks(post.text)
                +'</div>'
            );
        });
    });
});
</script>
<style>
.twitterPost {
margin-bottom: 5px;
padding-bottom: 5px;
border-bottom: 1px solid silver;
}
</style>