Custom Query (1173 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (238 - 240 of 1173)

Ticket Resolution Summary Owner Reporter
#468 fixed Extra forms of Markdown we should be supporting but aren't Jakob Kramer Aleksej
Description

E.g. pre-formatted text (represented with lines beginning with spaces).

#403 fixed Add ipython support to ./bin/gmg shell hugomatic Christopher Allan Webber
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

#405 fixed Email notifications for new comments Derek Christopher Allan Webber
Description

It would be really great if when someone comments on your media entry that you get notified. I know I'd love to know if someone loved my video!

Several parts to this, I think:

  • User option to "email notifications of comments"
    • Add to the user interface in the user profile page
    • Add option to the model in Mongo and SQL models (if SQL hasn't landed completely by then!)
    • Add migration to Mongo (or SQL if it's landed before this ;))
  • Actually email notify users! See the registration code which has examples of this.
  • Possibly turn on and off this option altogether in the config file? See: http://wiki.mediagoblin.org/Configure_MediaGoblin (not sure if this is bloat or not ;))
  • Unit tests for this would be nice... but then again unit tests of comments at all would be nice. Not a requirement for merge, sadly! ;)
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.