Custom Query (1173 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (127 - 129 of 1173)

Ticket Owner Reporter Resolution Summary
#402 Christopher Allan Webber Sacha fixed nicer skin for video entries
Description

Current skin is boring, video.js is probably the way to go for this (see videojs.com).

#403 hugomatic Christopher Allan Webber fixed Add ipython support to ./bin/gmg shell
Description

It would be great if we could launch ipython optionally like:

  ./bin/gmg shell --ipython

There's some code in werkzeug's codebase that looks like it does this the right way.

        if ipython:
            try:
                try:
                    from IPython.frontend.terminal.embed import InteractiveShellEmbed
                    sh = InteractiveShellEmbed(banner1=banner)
                except ImportError:
                    from IPython.Shell import IPShellEmbed
                    sh = IPShellEmbed(banner=banner)
            except ImportError:
                pass
            else:
                sh(global_ns={}, local_ns=namespace)
                return
        from code import interact
        interact(banner, local=namespace)

If we borrow a significant chunk of this code, we should annotate correctly:

http://www.softwarefreedom.org/resources/2007/gpl-non-gpl-collaboration.html

#404 Bassam Kurdali Christopher Allan Webber fixed Don't save a "medium" image unless we have to
Description

It used to be that if the image was smaller than the maximum width/height, it would just not create a "medium" image. But when the exif rotation code was added, it was switched so that it would create a medium image no matter what.

Do something along the lines of:

if needs_exif_rotation or greater_than_maxsize:
    medium creating code here
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.