Custom Query (1174 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (379 - 381 of 1174)

Ticket Resolution Summary Owner Reporter
#182 fixed Logging in should take me back to the page where I clicked the login link Karen Rustad
Description

Right now, it always takes me back to my profile. This is often an interruption -- if I'm e.g. logging in to comment on someone's photo, I then have to go to some other page to login, get sent to my profile page, and then have to figure out how to get back to the photo I wanted to comment on.

Ideally, logins ought to be entirely "in-place"--not require going anywhere else. So the workflow would be: click upper-right login link -> login fields appear via JS in the top right (or in an overlay over the page, whichever) -> I enter my credentials and hit the button -> Without refreshing, the page gets AJAXily updated to reflect that I'm now logged in (different top-right links, 'edit' links, comment fields, and the like appear in the appropriate places on the page, etc), or a handy-dandy 'your login info didn't work, foo'!' message appears in the top right.

#183 wontfix tag clouds Caleb Davis
Description

This is another rollover from #360, but it got left behind somehow. A tag cloud is a dict-like object containing {'tag-name':frequency-of-use,...}. It's fun to have them to see all the tags that people are using publicly on an instance.

Where would we display these?

  • instance home page - all users, processed media

  • user's profile - user's processed media

  • [BONUS] - arbitrary collection (/tags/bunnies) Open questions:

  • Should we use MapReduce? http://cookbook.mongodb.org/patterns/count_tags/ The alternative would be to write tags to a text file and do

    sort tags_text_file | uniq -c

or do it completely within python * Should we use celery? Generating tag clouds shouldn't slow page renders. Thoughts:

do it with python if you're using MapReduce since, if MapReduce gets too slow, you just add more processors!

if it 'takes too long', then use celery

  • How often do we update the clouds? Thoughts included:

    not during a bulk upload

  • How do we store these tag cloud objects? If we're not rendering them on the fly, then they should be in some kind of cache. Thoughts:

    user['tag_cloud'] = dict

    associate the cloud with the route. something like - {'/':'instance_cloud.txt','/u/user1':'user1_cloud.txt','/tags/bunnies':'tags_bunnies.txt'}

#185 WONTFIX Require mongodb v1.3+ Caleb Davis
Description

Alert the user to older versions of mongodb, and possibly exit whatever was happening at the time.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.