Custom Query (1174 matches)
Results (244 - 246 of 1174)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #41 | FIXED | Basic individual media view | ||
| Description |
Currently when you submit an image all that happens is it shows up on the mainpage as a thumbnail. Boring! We should be able to view those images on their own page. If I upload the media entry of "A Walk in the Park" which has the ID of 4d8e5b0048b1520586000000, I should be able to view that at: [http://mediagoblin.example.org/cwebber/m/d8e5b0048b1520586000000/](http://mediagoblin.example.org/cwebber/m/d8e5b0048b1520586000000/) (Eventually I'll also want to be able to view it by its prettier slugified URL: [http://mediagoblin.example.org/cwebber/m/a-walk-in-the-park/](http://mediagoblin.example.org/cwebber/m/a-walk-in-the-park/) ... but that's waiting on http://bugs.foocorp.net/issues/306 ) This URL should have the following things:
Mockup: | GNU MediaGoblin | login | register | |------------------------------------------------| | | | The Terror of Tinman Tim | | Posted by cwebber on May 8, 2011 | | ___________________________________________ | | | | | | | __ ____ | | | | (O)== | |=(O) | | | | | |O o| DESTROY ALL HUMANS | | | | |__|[ww]| | | | | | | _ | _ | | | | | ((((((_ |((_ | | | | | | | | | | | |____|____| | | | | |_| \_\ _ | | | | _/_/_ \_// / | | | | |___|| |/_/ | | | | | | | '-------------------------------------------' | | _________________________________________ | | | Just another piece on a robot who wants | | | | to do what any robot would want to do. | | | '-----------------------------------------' | | | | Comments: | | __________________________________________ | | | Wow I love your robot!!!!!! | | | | sue @ May 8 2011 11:45PM | | | '------------------------------------------' | Don't worry about the comments for now though. In addition, the thumbs currently on the main page should link to this URL. |
|||
| #77 | FIXED | Comments (simple) | ||
| Description |
Comments to MediaEntry objects should be possible I think we don't need to do complicated threading for now. Just comments which are paginated. Restricting to users registered on that site for now is good enough. We'll want more than that eventually, but for now it's okay.
That's it :) |
|||
| #78 | FIXED | Rich descriptions in MediaEntries | ||
| Description |
Similar to http://bugs.foocorp.net/issues/362#note-2 we should have descriptions be in markdown, and then we should prerender them and display that prerendered niceness. >>> entry['description'] = 'I am *soooo* hungry!' >>> entry.render_body() >>> entry['description_rendered'] u'<p>I am <em>soooo</em> hungry!</p>' >>> entry.save() |
|||
