Custom Query (1173 matches)
Results (85 - 87 of 1173)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #403 | 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 | 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
|
|||
| #405 | fixed | Email notifications for new comments | ||
| 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:
|
|||
