Custom Query (1168 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (43 - 45 of 1168)

Ticket Resolution Summary Owner Reporter
#313 fixed A way to subscribe to comments Christopher Allan Webber
Description
I'd really love to know when someone sends a reply to my images.
Might also be nice when posting a comment to be able to "subscribe"
to all comments in that thread!

I wonder if this task should be pushed off to celery. (Probably?)



#35 FIXED A workspace for processing media: "Operating table" / "workbench" etc Christopher Allan Webber Christopher Allan Webber
Description
We have a storage backend that supports multiple media types, but
it's possible that certain types of media might require local files
to be processed through locally. For example, maybe we'll need to
have a local copy of a movie before we do transcoding. Etc.

Maybe it would be helpful to create a BasicFileStorage instance
that writes to a directory either made in /tmp/ or user specified
somewhere else (could default to
./user\_dev/media/operating\_table/ in the config, but if
completely not found in the config, could make a temporary
directory to dump things in?), but which keeps non-permanent copies
of files and local instances that will allow the files to be
"operated" on while moving from the queue\_storage ->
public\_storage during processing.



#1053 fixed API Image object height/width attributes missing Jonas Haraldsson
Description

Image containers in the API Image object doesnt have width/height attributes

current:

{
 u'fullImage': {
  u'url': u'gmg.tld/path/123.png'
 },
 u'image': {
  u'url': u'gmg.tld/path/123.thumbnail.png'
 }
}

expected:

{
 u'fullImage': {
  u'height': 128,
  u'width': 256,
  u'url': u'gmg.tld/path/123.png'
 },
 u'image': {
  u'height': 32,
  u'width': 64,
  u'url': u'gmg.tld/path/123.thumbnail.png'
 }
}
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.