Skip to content

Commit

Permalink
New spazcore build to fetch entities.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Guarracino committed Dec 13, 2011
1 parent 5a1e477 commit a0d4760
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion vendors/spazcore.js
@@ -1,4 +1,4 @@
/*********** Built 2011-07-16 18:56:10 EDT ***********/
/*********** Built 2011-12-13 10:29:21 EST ***********/
/*jslint
browser: true,
nomen: false,
Expand Down Expand Up @@ -13482,6 +13482,7 @@ SpazTwit.prototype.getHomeTimeline = function(since_id, count, page, processing_
if (page) {
data['page'] = page;
}
data['include_entities'] = true;


var url = this.getAPIURL('home_timeline', data);
Expand Down Expand Up @@ -13597,6 +13598,7 @@ SpazTwit.prototype.getReplies = function(since_id, count, page, processing_opts,
if (count) {
data['count'] = count;
}
data['include_entities'] = true;

var url = this.getAPIURL('replies_timeline', data);
this._getTimeline({
Expand Down Expand Up @@ -13654,6 +13656,7 @@ SpazTwit.prototype.getDirectMessages = function(since_id, count, page, processin
if (count) {
data['count'] = count;
}
data['include_entities'] = true;

var url = this.getAPIURL('dm_timeline', data);
this._getTimeline({
Expand Down Expand Up @@ -13697,6 +13700,7 @@ SpazTwit.prototype.getFavorites = function(since_id, page, processing_opts, onSu
if (page) {
data['page'] = page;
}
data['include_entities'] = true;

var url = this.getAPIURL('favorites', data);

Expand Down Expand Up @@ -13755,6 +13759,7 @@ SpazTwit.prototype.getSentDirectMessages = function(since_id, count, page, proce
if (count) {
data['count'] = count;
}
data['include_entities'] = true;

var url = this.getAPIURL('dm_sent', data);
this._getTimeline({
Expand Down Expand Up @@ -13805,6 +13810,7 @@ SpazTwit.prototype.getUserTimeline = function(id, count, page, onSuccess, onFail
if (opts.page) {
data['page'] = opts.page;
}
data['include_entities'] = true;


var url = this.getAPIURL('user_timeline', data);
Expand Down Expand Up @@ -13945,6 +13951,7 @@ SpazTwit.prototype.search = function(query, since_id, results_per_page, page, la
if (geocode) {
data['geocode'] = geocode;
}
data['include_entities'] = true;

var url = this.getAPIURL('search', data);
this._getTimeline({
Expand Down Expand Up @@ -15380,6 +15387,7 @@ SpazTwit.prototype.destroyDirectMessage = function(id, onSuccess, onFailure) {
SpazTwit.prototype.getOne = function(id, onSuccess, onFailure) {
var data = {};
data['id'] = id;
data['include_entities'] = true;

var url = this.getAPIURL('show', data);

Expand Down Expand Up @@ -15458,6 +15466,7 @@ SpazTwit.prototype.getRelated = function(id, onSuccess, onFailure) {
SpazTwit.prototype.retweet = function(id, onSuccess, onFailure) {
var data = {};
data['id'] = id;
data['include_entities'] = true;

var url = this.getAPIURL('retweet', data);

Expand Down Expand Up @@ -15523,6 +15532,7 @@ SpazTwit.prototype.retweetedByMe = function(since, max, count, page){
page = 1;
}
params['page'] = page;
params['include_entities'] = true;
var url = this.getAPIURL('retweeted_by_me', params);

var opts = {
Expand Down Expand Up @@ -15561,6 +15571,7 @@ SpazTwit.prototype.retweetedToMe = function(since, max, count, page){
page = 1;
}
params['page'] = page;
params['include_entities'] = true;
var url = this.getAPIURL('retweeted_to_me', params);

var opts = {
Expand Down Expand Up @@ -15599,6 +15610,7 @@ SpazTwit.prototype.retweetsOfMe = function(since, max, count, page){
page = 1;
}
params['page'] = page;
params['include_entities'] = true;
var url = this.getAPIURL('retweets_of_me', params);

var opts = {
Expand Down

0 comments on commit a0d4760

Please sign in to comment.