aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/static/images
Commit message (Collapse)AuthorAgeFilesLines
* Fix #549 - Deauthorize OAuth applicationsJessica Tallon2014-10-012-0/+0
|
* Merge branch 'master' into upstream-masterSebastian Spaeth2013-12-121-0/+0
|\ | | | | | | | | | | Conflicts: mediagoblin/templates/mediagoblin/base.html mediagoblin/templates/mediagoblin/user_pages/user.html
| * Merge branch 'master' of git://gitorious.org/mediagoblin/mediagoblinAditi2013-08-091-0/+0
| |\
| * | Specify the status of blog post.Aditi2013-08-071-0/+0
| | |
| * | Change message when user tries to create multiple blogs.Aditi2013-08-071-0/+0
| | |
| * | Add icon for the blogpost.Aditi2013-08-041-0/+0
| | |
* | | Merge remote-tracking branch 'refs/remotes/tilly-q/OPW-Moderation-Update'Christopher Allan Webber2013-10-072-0/+0
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: mediagoblin/templates/mediagoblin/user_pages/user.html mediagoblin/tests/test_auth.py mediagoblin/tests/test_submission.py
| * \ \ Merge branch 'master' into OPW-Moderation-Updatetilly-Q2013-08-201-0/+0
| |\ \ \ | | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | Conflicts: mediagoblin/db/models.py mediagoblin/decorators.py mediagoblin/routing.py mediagoblin/user_pages/views.py
| * | | This commit had some important milestones in it. The major update is that now Itilly-Q2013-07-271-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | have mostly completed the moderator punishment and resolution of reports. Along with this, I have also added one last table to the database: one that holds ar- -chived (or resolved) reports. This is some of the primary functionality of my whole update, so this is a big step! The other changes I made this update are primarily organizational. I refactored some of my code into functions and I cl- eaned up many of my templates. --\ mediagoblin/db/models.py --| Created the new ArchivedReport table --| Removed columns from BaseReport table that are only necessary for Archived | reports --\ mediagoblin/db/migrations.py --| Created the new ArchivedReport table --| Removed columns from BaseReport table that are only necessary for Archived | reports --\ mediagoblin/db/util.py --| Created the user_privileges_to_dictionary function. This is useful for | accessing a user's permissions from within a template. --\ mediagoblin/moderation/forms.py --| Expanded the disciplinary actions a moderator can take --| Allowed the moderator to choose more than one disciplinary action at a time | (It's now managed with a list of checkboxes rather than radio buttons) ----| Pulled a MultiCheckBox class from a wtforms tutorial --| Added various other form inputs for details of the moderator's disciplinary | actions --| Tried to ensure that every string is unicode and translated --\ mediagoblin/moderation/tools.py --| Created this file for holding useful moderation tools --| Moved the penalizing code from views to the function take_punitive_actions --| Added many more types of punitive actions --| Added the archiving of old reports --\ mediagoblin/moderation/views.py --| Used the privileges_to_dictionary function for the Users Detail view to | allow for different actions available to a moderator and an admin. --| Added in functionality for ArchivedReports to the reports_detail and | reports_panel views --| Moved the punishments of repots_detail to tools.py (as mentioned above) --\ mediagoblin/static/css/base.css --| Added new styling for the User Detail page --\ mediagoblin/static/images/icon_clipboard_alert.png --| Added this image to represent unresolved reports --\ mediagoblin/templates/mediagoblin/moderation/report.html --| Added 'Return to Reports Panel' button --| Fixed the spacing to be less that 80 columns wide --| Added in display for Archived Reports --\ mediagoblin/templates/mediagoblin/moderation/reports_panel.html --| Changed the placement and columns of the tables --| Fixed the spacing to be less that 80 columns wide --| Added in display for Archived Reports --\ mediagoblin/templates/mediagoblin/moderation/user.html --| Fixed the spacing to be less that 80 columns wide --| Took away the moderator's ability to add and remove privileges at will. | Only the admin has this power now. --\ mediagoblin/templates/mediagoblin/moderation/users_panel.html --| Fixed the spacing to be less that 80 columns wide --\ mediagoblin/tools/response.py --| Added in code to remove a UserBan from a User if that user logs in after | the expiration date
| * | | This update I mostly did work on the templates for the admin pages. I did a co-tilly-Q2013-07-081-0/+0
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -uple other small changes. I changed the information around the media processi- ng panel to be more specific, since it was written when it was the only admin page. Git didn't catch this, but I renamed the templates, so mediagoblin/templ- ates/admin/user.html now referrs to the page which shows the details of a spec- ific user. The list view pages are now named ELEMENT_panel.html(ie. user_panel) I also added a column reported_user_id to the ReportBase table, and had to add to Report filing to make sure that column gets created. Also I moved the report media button (on a media page) to the sidebar, though it still needs some form- atting --\ mediagoblin/static/images/icon_clipboard.png --| Added this image for use in template mediagoblin/admin/report.html. --| Distributed by the GNOME project http://www.gnome.org --| Under a GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. --| I'm still trying to figure out the appropriate way to attribute this in | the code --\ mediagoblin/templates/mediagoblin/admin/media_panel.html --| This template is actually the template formerly know as media.html. I | renamed it for clarity --\ mediagoblin/templates/mediagoblin/admin/report_panel.html --| This template is actually the template formerly know as report.html. I | renamed it for clarity --\ mediagoblin/templates/mediagoblin/admin/user_panel.html --| This template is actually the template formerly know as user.html. I renam- | -ed it for clarity --\ mediagoblin/templates/mediagoblin/utils/report.html --| This template is included in the media_home page. It is the report media | button. I figured I'd write it like this in case it got more complicated. --\ mediagoblin/admin/routing.py --| I changed the routing path /a/panel to /a/media for specificity --\ mediagoblin/admin/views.py --| I renamed admin_processing_panel to admin_media_processing_panel --| I wrote a new view function admin_reports_detail --| I wrote a new view function admin_users_detail --\ mediagoblin/db/migrations.py --| I added in the column reported_user_id to the ReportBase_v0 class --\ mediagoblin/db/models.py --| I added in the column reported_user_id to the ReportBase class --\ mediagoblin/static/css/base.css --| I added in css classes to display a report. Right now, they are just echo- | -ing the ways comments are displayed, but with the link in another color --\ mediagoblin/templates/mediagoblin/admin/report.html --| Created this new template (although git doesn't realize it) to show the de- | -tails of a specific report, indicated in the URL --\ mediagoblin/templates/mediagoblin/admin/user.html --| Created this new template (although git doesn't realize it) to show the de- | -tails of a specific user, indicated in the URL --\ mediagoblin/templates/mediagoblin/base.html --| Redirected the link from /a/panel to /a/media --\ mediagoblin/templates/mediagoblin/user_pages/media.html --| Moved the media report button to the sidebar --\ mediagoblin/user_pages/lib.py --| Changed the creation of reports, so that they also assign a column for rep- | -orted_user_id.
* | | Adding the .xcf file of the MediaGoblin goblin.Christopher Allan Webber2013-09-191-0/+0
| | | | | | | | | | | | This commit sponsored by Alexandre Hannud Abdo. Thank you!
* | | We're no longer using this image, as awesome as it isChristopher Allan Webber2013-09-191-0/+0
| |/ |/|
* | Switching the MediaGoblin homepage image over to using the "official" ↵Christopher Allan Webber2013-08-081-0/+0
|/ | | | gavroche style
* Fix "Add to collection" button: remove icon, add text, add to collections.htmlJef van Schendel2013-02-081-0/+0
|
* Simplify/Robustify the thumbnail URL usage in templatesSebastian Spaeth2012-11-151-0/+0
| | | | | | | | | | | | | | | | | | | | | | So far templates required a very complex blurb to simply insert a thumbnail URL, exposing much of the internal logic to the template designer. In addition, we would fail with an error if for some reason the media_files['thumb'] entry was never populated. This adds the MediaEntry.thumb_url property that template designers can simply use. It will do the right thing, either fetching the proper thumbnail or hand back a generic icon specified in a media's MEDIA_MANAGER as "default_thumb". Add an image default fallback icon (stolen from Tangos, which are Public Domain since version 0.8.90 as I understand) since the one we referred to was not existing. Perhaps, a "broken image" icon would be better, but I'll leave that to our capable designers. All templates have been modified to make use of the new thumb_url function. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
* Added new files for collectionsAaron Williamson2012-09-181-0/+0
|
* Insignificant edits to logo SVGJef van Schendel2012-07-201-10/+10
|
* Add MediaGoblin video player skin by chron0Jef van Schendel2012-04-081-0/+0
|
* Merge branch 'newlayout' into newlayout-stageJef van Schendel2012-03-042-0/+0
|\
| * Remove form background images; replace them with regular border stylesJef van Schendel2012-02-142-0/+0
| |
* | Go go mediagoblin favico symmetryChristopher Allan Webber2012-03-012-0/+0
|/
* Remove pagination images and replace them with unicode charactersJef van Schendel2011-12-102-0/+0
|
* Merge branch 'video_gstreamer-only'Joar Wandborg2011-11-211-0/+0
|\ | | | | | | | | | | Conflicts: mediagoblin/db/migrations.py mediagoblin/submit/views.py
| * Multimedia support - Refractored video processing.Joar Wandborg2011-09-241-0/+0
| |
* | Navigation buttons edits. Removed images as they are no longer needed. ↵Jef van Schendel2011-11-203-0/+0
| | | | | | | | Related: bug #504
* | Remove Edit/Delete icons, since they are not required yet.Jef van Schendel2011-11-202-0/+0
| |
* | Change to background of "empty_space", it now uses an imageJef van Schendel2011-11-201-0/+0
| |
* | Several small changes (reordering/restyling) for media descriptions and commentsJef van Schendel2011-11-041-0/+0
| |
* | Updated logo from Thorsten Wilms!Christopher Allan Webber2011-11-012-0/+116
|/
* Testing logo without logoJef van Schendel2011-08-281-0/+0
|
* Experimentally putting logo in placeChristopher Allan Webber2011-08-221-0/+0
| | | | | Combining MediaGoblin eared-M logo with Thorsten's handwritten text. Well... looking nice to me :)
* MediaGoblin favicon by Alex Camelio!!! OMG.Christopher Allan Webber2011-08-212-0/+0
|
* Add 404 page and imageJef van Schendel2011-08-201-0/+0
|
* New layout for root.htmlJef van Schendel2011-08-201-0/+0
|
* Replace the Feed icon with a transparent one, put it next to the [atom feed] ↵Jef van Schendel2011-08-181-0/+0
| | | | links
* Whole bunch of changes to base.cssJef van Schendel2011-08-181-0/+0
|
* Assorted style changes, small base.html changes, added new background imageJef van Schendel2011-07-251-0/+0
|
* Fix logo styling, positioningJef van Schendel2011-07-082-0/+0
|
* Change pagination styling; add 2 imagesJef van Schendel2011-07-072-0/+0
|
* Additional style changes to navigation; add three navigation imagesJef van Schendel2011-07-073-0/+0
|
* images/iconFoo.png filenames -> icon/icon_foo.pngChristopher Allan Webber2011-07-023-0/+0
| | | | I have a thing against mixedCase :)
* Add delete and edit iconsJef van Schendel2011-07-012-0/+0
|
* Add feed iconJef van Schendel2011-07-011-0/+0
|
* Add updates background imagesJef van Schendel2011-06-222-0/+0
|
* Modified logo to change on :hoverJef van Schendel2011-05-291-0/+0
|
* We now have only one button styleJef van Schendel2011-05-262-0/+0
|
* Added actual imageJef van Schendel2011-05-261-0/+0
|
* Removed background images and logo, won't need those for a whileJef van Schendel2011-05-233-0/+0
|
* Fixing changesJef van Schendel2011-05-135-0/+0