mediagoblin.git
13 years agoMerge remote branch 'remotes/elrond/idea/shortcuts'
Christopher Allan Webber [Sun, 5 Jun 2011 20:36:51 +0000 (15:36 -0500)]
Merge remote branch 'remotes/elrond/idea/shortcuts'

13 years agoJust a bit of formatting for these unfinished tests ;)
Christopher Allan Webber [Sun, 5 Jun 2011 20:33:48 +0000 (15:33 -0500)]
Just a bit of formatting for these unfinished tests ;)

13 years agoInstructions for running tests with the modern setup
Christopher Allan Webber [Sun, 5 Jun 2011 20:33:28 +0000 (15:33 -0500)]
Instructions for running tests with the modern setup

13 years agoNew password check error message
Christopher Allan Webber [Sun, 5 Jun 2011 20:33:07 +0000 (15:33 -0500)]
New password check error message

13 years agoTest registration form integrity
Christopher Allan Webber [Sun, 5 Jun 2011 20:30:07 +0000 (15:30 -0500)]
Test registration form integrity

13 years agoThe first bit of the registration tests working. Not fully there, but
Christopher Allan Webber [Sun, 5 Jun 2011 15:34:29 +0000 (10:34 -0500)]
The first bit of the registration tests working.  Not fully there, but
it's clear that the webtest part is working, without having tested the
database yet.  :)

13 years agoActually it's a lot better of an idea to load the full application out
Christopher Allan Webber [Sun, 5 Jun 2011 15:33:59 +0000 (10:33 -0500)]
Actually it's a lot better of an idea to load the full application out
of the paste config file the way paste would than to load components
of it ourselves.

Aside from this being nicer, it's also necessary for the sake of
getting the middleware working nicely.  We could do it ourselves, but
why bother when paste can just do it for us?

13 years agoWe should store the template path, not the template object, as the key
Christopher Allan Webber [Sun, 5 Jun 2011 15:31:29 +0000 (10:31 -0500)]
We should store the template path, not the template object, as the key
in our testing cache

13 years agoCreate redirect shortcut and use it around
Elrond [Sun, 5 Jun 2011 13:49:08 +0000 (15:49 +0200)]
Create redirect shortcut and use it around

This is just replacing exc.HTTPFound(location=request.urlgen(...))
by redirect(request, ...). No magic.

13 years agoReformat render_to_response calls
Elrond [Sun, 5 Jun 2011 14:02:12 +0000 (16:02 +0200)]
Reformat render_to_response calls

Just a simple indentation and ordering change, no
functional change.

13 years agoCreate render_to_reponse and use it everywhere.
Elrond [Sun, 5 Jun 2011 13:25:45 +0000 (15:25 +0200)]
Create render_to_reponse and use it everywhere.

Just a shortcut for Response(render_template(...))

13 years agoFirefox 3.X shows hidden fields for some reason, adding display: none;
Christopher Allan Webber [Sun, 5 Jun 2011 14:14:38 +0000 (09:14 -0500)]
Firefox 3.X shows hidden fields for some reason, adding display: none;
to be rid of them for sure

13 years agoMoving all views over to using util.render_template()!
Christopher Allan Webber [Sat, 4 Jun 2011 22:36:36 +0000 (17:36 -0500)]
Moving all views over to using util.render_template()!

13 years agoCache template environments and gettexts so we don't have to reproduce
Christopher Allan Webber [Sat, 4 Jun 2011 21:44:22 +0000 (16:44 -0500)]
Cache template environments and gettexts so we don't have to reproduce
them on every request.

13 years agoAdded new render_template method which will make our lives nicer and
Christopher Allan Webber [Sat, 4 Jun 2011 21:32:13 +0000 (16:32 -0500)]
Added new render_template method which will make our lives nicer and
also will be useful for unit testing purposes :)

13 years agoProper webtest infrastructure... seems to be about right anyway :)
Christopher Allan Webber [Sat, 4 Jun 2011 18:20:48 +0000 (13:20 -0500)]
Proper webtest infrastructure... seems to be about right anyway :)

13 years agoMount media editing under /u/{username}/m/{media}/edit/
Christopher Allan Webber [Sat, 4 Jun 2011 13:48:51 +0000 (08:48 -0500)]
Mount media editing under /u/{username}/m/{media}/edit/

13 years agoLet's redirect back to the media homepage using the slug instead of the id
Christopher Allan Webber [Sat, 4 Jun 2011 13:48:17 +0000 (08:48 -0500)]
Let's redirect back to the media homepage using the slug instead of the id

13 years agoI shouldn't have removed the .save() entirely :)
Christopher Allan Webber [Sat, 4 Jun 2011 12:41:31 +0000 (07:41 -0500)]
I shouldn't have removed the .save() entirely :)

13 years agoTitle first and foremost... anything else looks weird to me.
Christopher Allan Webber [Fri, 3 Jun 2011 23:47:22 +0000 (18:47 -0500)]
Title first and foremost... anything else looks weird to me.

13 years agoMerge branch 'media_edit'
Christopher Allan Webber [Fri, 3 Jun 2011 23:43:20 +0000 (18:43 -0500)]
Merge branch 'media_edit'

13 years agoFind out if such a slug exists via a query instead of via a .save() call
Christopher Allan Webber [Fri, 3 Jun 2011 23:43:08 +0000 (18:43 -0500)]
Find out if such a slug exists via a query instead of via a .save() call

13 years agoPropagate Exceptions up in Celery-Eager-Mode
Elrond [Fri, 3 Jun 2011 21:54:33 +0000 (23:54 +0200)]
Propagate Exceptions up in Celery-Eager-Mode

When running in celery-eager mode, the celery machinery
hides all exceptions inside "celery tasks" (you can find
out about them on the task handle somehow). Currently much
better to propagate them straight up, so they're visible on
the console.

13 years agoRefactored the sending of verification emails.
Aleksandar Micovic [Fri, 3 Jun 2011 01:07:37 +0000 (21:07 -0400)]
Refactored the sending of verification emails.

13 years agoattribute values should be quoted :)
Christopher Allan Webber [Thu, 2 Jun 2011 21:30:06 +0000 (16:30 -0500)]
attribute values should be quoted :)

13 years agoNo reason for 'verification_successful = bool' here.
Christopher Allan Webber [Thu, 2 Jun 2011 21:04:17 +0000 (16:04 -0500)]
No reason for 'verification_successful = bool' here.

13 years agoAdd GNU headers to new *.py
Elrond [Thu, 2 Jun 2011 16:28:26 +0000 (18:28 +0200)]
Add GNU headers to new *.py

13 years agoHandle Exceptions from save(); Move may_edit_media
Elrond [Thu, 2 Jun 2011 15:43:54 +0000 (17:43 +0200)]
Handle Exceptions from save(); Move may_edit_media

Turn .save() excpetions into a HTTPConflict. Not nice, but
at least the user gets the error.  Until there is a proper
way to validate things and get nice errors.

Move may_edit_media() to lib.py, as it's not a view.

13 years agoPrepare for moving /edit/ under /u/.../edit/
Elrond [Thu, 2 Jun 2011 14:48:15 +0000 (16:48 +0200)]
Prepare for moving /edit/ under /u/.../edit/

To make moving the whole thing under /u/ easier, prepare to
pass in the {user} needed for that.

13 years agoChange edit form to use divs instead of table
Elrond [Thu, 2 Jun 2011 14:39:47 +0000 (16:39 +0200)]
Change edit form to use divs instead of table

13 years agoNo need for a method for generating the verification key as a method
Christopher Allan Webber [Thu, 2 Jun 2011 14:02:13 +0000 (09:02 -0500)]
No need for a method for generating the verification key as a method
on the class, can just do that in the view

13 years agoElrond put that ObjectId thing in the db.util module and wants us to
Christopher Allan Webber [Thu, 2 Jun 2011 13:47:30 +0000 (08:47 -0500)]
Elrond put that ObjectId thing in the db.util module and wants us to
use that one ;)

13 years agoMerge remote branch 'upstream/master'
Elrond [Thu, 2 Jun 2011 12:33:26 +0000 (14:33 +0200)]
Merge remote branch 'upstream/master'

Conflicts:
mediagoblin/templates/mediagoblin/user_pages/media.html

13 years agoCheck for edit permission.
Elrond [Thu, 2 Jun 2011 12:25:31 +0000 (14:25 +0200)]
Check for edit permission.

You need to own the media, or be an admin to use the edit form.
As simple as that, for now.

13 years ago0.0.2 of GNU MediaGoblin!
Christopher Allan Webber [Wed, 1 Jun 2011 00:54:26 +0000 (19:54 -0500)]
0.0.2 of GNU MediaGoblin!

13 years agoIf a user doesn't provide a userid and a token to the verify_email function, might...
Christopher Allan Webber [Wed, 1 Jun 2011 00:37:28 +0000 (19:37 -0500)]
If a user doesn't provide a userid and a token to the verify_email function, might as well 404

13 years agoMoving import to outside of this function
Christopher Allan Webber [Wed, 1 Jun 2011 00:31:23 +0000 (19:31 -0500)]
Moving import to outside of this function

13 years agoJust adjusting some spacing so we don't go over 80 chars
Christopher Allan Webber [Wed, 1 Jun 2011 00:30:05 +0000 (19:30 -0500)]
Just adjusting some spacing so we don't go over 80 chars

13 years agoGive a "proper" view for resending verification email
Christopher Allan Webber [Wed, 1 Jun 2011 00:29:36 +0000 (19:29 -0500)]
Give a "proper" view for resending verification email

13 years agoMerge remote branch 'remotes/aleks/aleks'
Christopher Allan Webber [Wed, 1 Jun 2011 00:17:28 +0000 (19:17 -0500)]
Merge remote branch 'remotes/aleks/aleks'

13 years agoAdded the ability to regenerate a verification key.
Aleksandar Micovic [Tue, 31 May 2011 21:14:23 +0000 (17:14 -0400)]
Added the ability to regenerate a verification key.

13 years agoFixed bug where someone who wasn't logged in was asked to verify
Aleksandar Micovic [Tue, 31 May 2011 19:26:00 +0000 (15:26 -0400)]
Fixed bug where someone who wasn't logged in was asked to verify
their emails.

13 years agoAdded a temporary verification page informing the user they need
Aleksandar Micovic [Tue, 31 May 2011 03:51:30 +0000 (23:51 -0400)]
Added a temporary verification page informing the user they need
to authenticate.

13 years agoAdd an index on MediaEntries making sure slugs + uploader combos are unique
Christopher Allan Webber [Mon, 30 May 2011 23:06:12 +0000 (18:06 -0500)]
Add an index on MediaEntries making sure slugs + uploader combos are unique

13 years agoUse the object gallery file on the front page also
Christopher Allan Webber [Sun, 29 May 2011 22:49:03 +0000 (17:49 -0500)]
Use the object gallery file on the front page also

13 years agoThis <ul /> not used (second inside), removing
Christopher Allan Webber [Sun, 29 May 2011 22:43:18 +0000 (17:43 -0500)]
This <ul /> not used (second inside), removing

13 years agoremove all 'username_repr' stuff
Jakob Kramer [Sun, 29 May 2011 17:49:25 +0000 (19:49 +0200)]
remove all 'username_repr' stuff

13 years agodon't import 're'
Jakob Kramer [Sun, 29 May 2011 17:17:44 +0000 (19:17 +0200)]
don't import 're'

13 years agothis should fix #354
Jakob Kramer [Sun, 29 May 2011 17:15:46 +0000 (19:15 +0200)]
this should fix #354

13 years agoFirst changes to media gallery view
Jef van Schendel [Sun, 29 May 2011 00:02:26 +0000 (02:02 +0200)]
First changes to media gallery view

13 years agoSlightly modified text on media page
Jef van Schendel [Sat, 28 May 2011 23:53:41 +0000 (01:53 +0200)]
Slightly modified text on media page

13 years agoCentered image on media page
Jef van Schendel [Sat, 28 May 2011 23:47:12 +0000 (01:47 +0200)]
Centered image on media page

13 years agoModified logo to change on :hover
Jef van Schendel [Sat, 28 May 2011 23:43:12 +0000 (01:43 +0200)]
Modified logo to change on :hover

13 years agoChanged submit form to divs
Jef van Schendel [Sat, 28 May 2011 23:14:48 +0000 (01:14 +0200)]
Changed submit form to divs

13 years agoChanged <p> font from 'sans' to 'sans-serif'
Joar Wandborg [Sat, 28 May 2011 21:56:29 +0000 (23:56 +0200)]
Changed <p> font from 'sans' to 'sans-serif'

13 years agoChanged <body> font from 'sans' to 'sans-serif'
Joar Wandborg [Sat, 28 May 2011 21:54:15 +0000 (23:54 +0200)]
Changed <body> font from 'sans' to 'sans-serif'

13 years agoMerge branch 'master' of git://gitorious.org/~schendje/mediagoblin/schendjes-mediagoblin
Joar Wandborg [Sat, 28 May 2011 21:52:00 +0000 (23:52 +0200)]
Merge branch 'master' of git://gitorious.org/~schendje/mediagoblin/schendjes-mediagoblin

13 years ago*GNU* MediaGoblin on <title>
Joar Wandborg [Sat, 28 May 2011 21:19:44 +0000 (23:19 +0200)]
*GNU* MediaGoblin on <title>

13 years agoFixed submit button style, added create-account notice to log in page
Jef van Schendel [Sat, 28 May 2011 19:32:12 +0000 (21:32 +0200)]
Fixed submit button style, added create-account notice to log in page

13 years agoForgot a bottom-margin for the error div
Jef van Schendel [Sat, 28 May 2011 19:15:15 +0000 (21:15 +0200)]
Forgot a bottom-margin for the error div

13 years agoChanged login forms to use divs instead of tables
Jef van Schendel [Sat, 28 May 2011 19:10:54 +0000 (21:10 +0200)]
Changed login forms to use divs instead of tables

13 years agoStyled error messages
Jef van Schendel [Sat, 28 May 2011 19:02:34 +0000 (21:02 +0200)]
Styled error messages

13 years agoFixed form header
Jef van Schendel [Sat, 28 May 2011 18:43:57 +0000 (20:43 +0200)]
Fixed form header

13 years agoStyled forms
Jef van Schendel [Sat, 28 May 2011 16:32:43 +0000 (18:32 +0200)]
Styled forms

13 years agoMerge remote-tracking branch 'gitorious/master'
Jef van Schendel [Sat, 28 May 2011 15:44:15 +0000 (17:44 +0200)]
Merge remote-tracking branch 'gitorious/master'

13 years agoAdded a new form rendering system, render_divs, and using it for registration
Christopher Allan Webber [Sat, 28 May 2011 14:54:09 +0000 (09:54 -0500)]
Added a new form rendering system, render_divs, and using it for registration

13 years ago"edit": Finally implement saving.
Elrond [Thu, 26 May 2011 22:17:30 +0000 (00:17 +0200)]
"edit": Finally implement saving.

Currently no checks. Probably not so good.
And especially, every logged in user currently can edit the
data for any other user's media.

13 years agoUse new button style
Elrond [Thu, 26 May 2011 21:17:41 +0000 (23:17 +0200)]
Use new button style

13 years agoStarting "edit" functionality.
Elrond [Thu, 26 May 2011 21:09:33 +0000 (23:09 +0200)]
Starting "edit" functionality.

This adds a link to the "edit" form, the form, the view for
displaying the form and that's about it.

13 years agoMerge remote-tracking branch 'gitorious/master'
Jef van Schendel [Thu, 26 May 2011 17:27:58 +0000 (19:27 +0200)]
Merge remote-tracking branch 'gitorious/master'

13 years ago*GNU* MediaGoblin home ;)
Christopher Allan Webber [Thu, 26 May 2011 15:14:46 +0000 (10:14 -0500)]
*GNU* MediaGoblin home ;)

13 years agoChanged logout/account text
Jef van Schendel [Wed, 25 May 2011 23:24:13 +0000 (01:24 +0200)]
Changed logout/account text

13 years agoChanged header size
Jef van Schendel [Wed, 25 May 2011 22:45:17 +0000 (00:45 +0200)]
Changed header size

13 years agoWe now have only one button style
Jef van Schendel [Wed, 25 May 2011 22:41:13 +0000 (00:41 +0200)]
We now have only one button style

13 years agoPut log in / log out in its place!
Jef van Schendel [Wed, 25 May 2011 22:15:26 +0000 (00:15 +0200)]
Put log in / log out in its place!

13 years agoChanged mediagoblin_content name to mediagoblin_container
Jef van Schendel [Wed, 25 May 2011 22:12:23 +0000 (00:12 +0200)]
Changed mediagoblin_content name to mediagoblin_container

13 years agoAdded actual image
Jef van Schendel [Wed, 25 May 2011 22:05:08 +0000 (00:05 +0200)]
Added actual image

13 years agoAdded header icon link
Jef van Schendel [Wed, 25 May 2011 22:04:40 +0000 (00:04 +0200)]
Added header icon link

13 years agoRemoved clever subtitle
Jef van Schendel [Wed, 25 May 2011 21:57:51 +0000 (23:57 +0200)]
Removed clever subtitle

13 years agoChanged link color and underline
Jef van Schendel [Thu, 19 May 2011 23:33:28 +0000 (01:33 +0200)]
Changed link color and underline

13 years agoChanged background colors to plain colors
Jef van Schendel [Thu, 19 May 2011 23:31:45 +0000 (01:31 +0200)]
Changed background colors to plain colors

13 years agoExpanded page width to 960px
Christopher Allan Webber [Mon, 23 May 2011 22:39:44 +0000 (17:39 -0500)]
Expanded page width to 960px

Conflicts:

mediagoblin/static/css/base.css

13 years agoRemoved background images and logo, won't need those for a while
Jef van Schendel [Thu, 19 May 2011 23:26:52 +0000 (01:26 +0200)]
Removed background images and logo, won't need those for a while

13 years agomodified atomfeed feature, corrected spacing, url generation, routing id
Bernhard Keller [Mon, 23 May 2011 17:00:46 +0000 (19:00 +0200)]
modified atomfeed feature, corrected spacing, url generation, routing id

13 years agoEncourage users to run migrations every time they buildout.
Christopher Allan Webber [Sun, 22 May 2011 22:11:59 +0000 (17:11 -0500)]
Encourage users to run migrations every time they buildout.

13 years agoA more explicit version of get_page_url that doesn't use the request
Christopher Allan Webber [Sun, 22 May 2011 22:06:11 +0000 (17:06 -0500)]
A more explicit version of get_page_url that doesn't use the request
is still an option now ;)

13 years agoMerge remote branch 'refs/remotes/elrond/idea/new_get_page_url'
Christopher Allan Webber [Sun, 22 May 2011 21:55:01 +0000 (16:55 -0500)]
Merge remote branch 'refs/remotes/elrond/idea/new_get_page_url'

13 years agoSlightly better spacing in media.html
Christopher Allan Webber [Sun, 22 May 2011 21:40:31 +0000 (16:40 -0500)]
Slightly better spacing in media.html

13 years agoForgot switch to media.uploader() in the same way on two lines :P
Christopher Allan Webber [Sun, 22 May 2011 21:37:58 +0000 (16:37 -0500)]
Forgot switch to media.uploader() in the same way on two lines :P

13 years agoUpdate all the views so that they use the uploader reference instead
Christopher Allan Webber [Sun, 22 May 2011 21:06:45 +0000 (16:06 -0500)]
Update all the views so that they use the uploader reference instead
of uploader embedding

13 years agoUser migration works (but the rest of the system isn't updated for new user setup...
Christopher Allan Webber [Sun, 22 May 2011 15:52:53 +0000 (10:52 -0500)]
User migration works (but the rest of the system isn't updated for new user setup yet)

13 years agoMove the general applicaiton setup commands to a utility module
Christopher Allan Webber [Sun, 22 May 2011 14:56:33 +0000 (09:56 -0500)]
Move the general applicaiton setup commands to a utility module

13 years agoMove the ./bin/gmg shell command into its own module.
Christopher Allan Webber [Sun, 22 May 2011 14:25:51 +0000 (09:25 -0500)]
Move the ./bin/gmg shell command into its own module.

13 years agoFix doc string of get_page_url()
Elrond [Sat, 21 May 2011 15:02:49 +0000 (17:02 +0200)]
Fix doc string of get_page_url()

13 years agoGive Pagination.get_page_url() a request instead of path and GET
Elrond [Sat, 21 May 2011 14:38:34 +0000 (16:38 +0200)]
Give Pagination.get_page_url() a request instead of path and GET

Makes calling Pagination.get_page_url() much simpler.

13 years agoClarified: don't do this in production!
Christopher Allan Webber [Sat, 21 May 2011 00:35:11 +0000 (19:35 -0500)]
Clarified: don't do this in production!

13 years agoAdded some stuff on how to run CELERY_ALWAYS_EAGER
Christopher Allan Webber [Sat, 21 May 2011 00:34:28 +0000 (19:34 -0500)]
Added some stuff on how to run CELERY_ALWAYS_EAGER

13 years agoMoves virtualenv instructions to a place far far away
Will Kahn-Greene [Sat, 21 May 2011 00:20:33 +0000 (20:20 -0400)]
Moves virtualenv instructions to a place far far away

But seriously, moved them to the stop-gap wiki:
https://gitorious.org/mediagoblin/pages/HackingWithVirtualenv

13 years agoThis check is redundant now that it's handled by the decorator.
Christopher Allan Webber [Sat, 21 May 2011 00:12:44 +0000 (19:12 -0500)]
This check is redundant now that it's handled by the decorator.

13 years agoMake sure that a MediaEntry does belong to this appropriate user in
Christopher Allan Webber [Sat, 21 May 2011 00:12:32 +0000 (19:12 -0500)]
Make sure that a MediaEntry does belong to this appropriate user in
the decorator.  (Thanks Elrond)