diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-07 11:17:06 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-07 11:17:06 +0200 |
commit | 6368a464f3a153e284b84136c6f304a6924e9b59 (patch) | |
tree | d66d79a07ca9b423567c5a9e50546907a38c8a0c /src/web/views/user.py | |
parent | Generates the tag cloud of the user based on the last 10 weeks. (diff) | |
download | newspipe-6368a464f3a153e284b84136c6f304a6924e9b59.tar.gz newspipe-6368a464f3a153e284b84136c6f304a6924e9b59.tar.bz2 newspipe-6368a464f3a153e284b84136c6f304a6924e9b59.zip |
removed the tag cloud for the public profile page: too slow
Diffstat (limited to 'src/web/views/user.py')
-rw-r--r-- | src/web/views/user.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/web/views/user.py b/src/web/views/user.py index 9dca512c..fc94f205 100644 --- a/src/web/views/user.py +++ b/src/web/views/user.py @@ -29,17 +29,16 @@ def profile_public(nickname=None): if not user.is_public_profile: return redirect(url_for('home')) - word_size = 6 + """word_size = 6 filters = {} filters['retrieved_date__gt'] = datetime.now() - timedelta(weeks=10) articles = ArticleController(user.id).read(**filters).all() top_words = misc_utils.top_words(articles, n=50, size=int(word_size)) - tag_cloud = misc_utils.tag_cloud(top_words) + tag_cloud = misc_utils.tag_cloud(top_words)""" return render_template('profile_public.html', user=user, - feeds=user.feeds, - tag_cloud=tag_cloud) + feeds=user.feeds) @user_bp.route('/management', methods=['GET', 'POST']) |