Skip to content

Commit

Permalink
Removed indextanking
Browse files Browse the repository at this point in the history
  • Loading branch information
DFectuoso committed Mar 13, 2012
1 parent 6d37703 commit cb6a4a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion handlers/EditPostHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def post(self, post_id):
post.put()

#index with indextank
helper.indextank_document(helper.base_url(self), post)
#helper.indextank_document(helper.base_url(self), post)

self.redirect('/noticia/' + str(post.key()))
else:
Expand Down
4 changes: 2 additions & 2 deletions handlers/SubmitNewStoryHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def post(self):
Post.remove_cached_count_from_memcache()

#index with indextank
helper.indextank_document( helper.base_url(self), post)
#helper.indextank_document( helper.base_url(self), post)

self.redirect('/noticia/' + str(post.nice_url));
else:
Expand All @@ -123,7 +123,7 @@ def post(self):
vote.put()

#index with indextank
helper.indextank_document( helper.base_url(self), post)
#helper.indextank_document( helper.base_url(self), post)

self.redirect('/noticia/' + post.nice_url);
else:
Expand Down

0 comments on commit cb6a4a5

Please sign in to comment.