2081 Commits

Author SHA1 Message Date
Sebastian Spaeth
19f8a24e41 app.py: Need to pass in port number as 'int'
When we configured an explicite db_port in mediagoblin.ini, paster would
crash claiming that the port number must be an int. Given that we don't
have a "get_conf_int()" function or something similar (yet?), simply
convert the port number to int before passing it to the mongo Connection
instance.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2011-05-08 11:12:38 +02:00
Christopher Allan Webber
29f3fb7052 Added an email debug mode which, by default, is enabled 2011-05-07 22:45:06 -05:00
Christopher Allan Webber
3eae207c54 [to_email] rather than list(to_email) which makes a nasty series like ['e','m','a','i','l'] 2011-05-07 22:44:37 -05:00
Joar Wandborg
8a6a81bcaa Updated default sender address
Signed-off-by: Joar Wandborg <git@wandborg.com>
2011-05-08 02:03:11 +02:00
Joar Wandborg
07a3a69cd4 Added verification email template
Signed-off-by: Joar Wandborg <git@wandborg.com>
2011-05-08 02:01:26 +02:00
Joar Wandborg
4942b63711 Removed unused variable
Signed-off-by: Joar Wandborg <git@wandborg.com>
2011-05-08 01:58:58 +02:00
Joar Wandborg
4c093e85c7 Made changes according to http://bugs.foocorp.net/issues/271#note-7
Signed-off-by: Joar Wandborg <git@wandborg.com>
2011-05-08 00:55:57 +02:00
Joar Wandborg
88bcdcd7d2 Merge branch 'master' of http://git.gitorious.org/mediagoblin/mediagoblin 2011-05-07 03:11:36 +02:00
Joar Wandborg
5c42a82c5a Added functionality to send out verification email upon successful registration
Signed-off-by: Joar Wandborg <git@wandborg.com>
2011-05-07 03:08:09 +02:00
Joar Wandborg
b16ebe0e13 Changed the method used to generate uuids for verification_key, this one works, thanks paroneayea
Signed-off-by: Joar Wandborg <git@wandborg.com>
2011-05-07 02:30:35 +02:00
Joar Wandborg
85e1bc316e mediagoblin.util.send_email now supports both list() and string() in the 'to_addrs' parameter
Signed-off-by: Joar Wandborg <git@wandborg.com>
2011-05-07 00:57:39 +02:00
Joar Wandborg
67e63926f9 Fixed bug in models.py:User that caused all users created by the same python process to have the same verification_key value
Signed-off-by: Joar Wandborg <git@wandborg.com>
2011-05-07 00:55:32 +02:00
Christopher Allan Webber
4c1e752a08 Actually display submitted stuff on the mainpage. Crappy, but working! 2011-05-06 10:01:26 -05:00
Christopher Allan Webber
12b6ecac0f Erk, we didn't save the state right before 2011-05-06 10:01:11 -05:00
Christopher Allan Webber
fa7f9c6184 Process media! Successfully! 2011-05-06 09:37:24 -05:00
Joar Wandborg
eee2c3a7e6 Merge branch 'master' of http://git.gitorious.org/mediagoblin/mediagoblin 2011-05-04 22:31:08 +02:00
Christopher Allan Webber
61ec968b0d A simple, maybe obvious, docstring for util.send_email() 2011-05-04 08:11:37 -05:00
Christopher Allan Webber
4d4f6050d8 send_email tool and email sending tests 2011-05-04 08:00:08 -05:00
Joar Wandborg
7b3fcddbf4 Merge branch 'master' of http://git.gitorious.org/mediagoblin/mediagoblin 2011-05-04 11:50:39 +02:00
Christopher Allan Webber
88816492a3 Force imports of stuff like mediagoblin.process_media which has tasks we need 2011-05-03 21:48:02 -05:00
Christopher Allan Webber
41f446f4f2 Add a rudimentary media processing function.
Haven't completely checked it for workingness, and not the final form
this will take :)
2011-05-03 21:45:13 -05:00
Joar Wandborg
1b46208f3e Merge branch 'master' of http://git.gitorious.org/mediagoblin/mediagoblin 2011-05-03 20:04:55 +02:00
Joar Wandborg
db1a438f3e Added functionality to support user email verification, email = TBD, verification = done.
Signed-off-by: Joar Wandborg <git@wandborg.com>
2011-05-03 19:51:19 +02:00
Christopher Allan Webber
8ac897c3b6 Add the base.css and reference it so other people can start working on it :) 2011-05-03 09:49:56 -05:00
Christopher Allan Webber
258b62c6a2 Register the models when using from_celery 2011-05-01 19:41:22 -05:00
Christopher Allan Webber
1e48a8308a Now we have something useful: mediagoblin.celery_setup.from_celery
auto-configures a celery config module from your paste config
2011-05-01 10:17:04 -05:00
Christopher Allan Webber
524c8f347f Second round of tests for setup_celery_from_config(), with some database information 2011-05-01 09:01:20 -05:00
Christopher Allan Webber
ef30978ad2 tests for setup_celery_from_config() 2011-04-30 21:54:05 -05:00
Christopher Allan Webber
1c61a6ca3b A few more corrections to make setup_celery_from_config() work right 2011-04-30 21:53:39 -05:00
Christopher Allan Webber
694c235106 Import based on the DEFAULT_SETTINGS_MODULE in setup_celery_from_config 2011-04-30 11:32:33 -05:00
Christopher Allan Webber
776331fd96 Merge branch 'master' into celerysubmit 2011-04-30 08:27:15 -05:00
Will Kahn-Greene
87b44d61ef Adds initial root page
This adds an initial root page that's ugly as sin, but makes it easier
to test what exists so far (e.g. register, login, submit pictures).
2011-04-30 08:57:08 -04:00
Christopher Allan Webber
1bb0fdf2f4 HTTPFound more accurate than HTTPMovedPermanently.
(Just observed this in cc.engine, making observation here also while I'm at it :))
2011-04-26 15:46:56 -05:00
Christopher Allan Webber
5784c4e963 Actually call setup_celery_from_config when launching from paste.
Also changed **kw to **app_config, which is more useful of a variable
name.
2011-04-24 20:57:38 -05:00
Christopher Allan Webber
bb64a6073c Commit dummy_settings_module, of course. 2011-04-24 20:55:02 -05:00
Will Kahn-Greene
eb2986152a Fixes traceback on registration
values must be unicode.
2011-04-24 21:53:57 -04:00
Christopher Allan Webber
e231d9e8bb setup_celery_from_config tool. Haven't tried if it works, but looks right... 2011-04-24 18:47:23 -05:00
Christopher Allan Webber
df9809c209 Make certain bits of info accessable as global variables from anywhere 2011-04-24 14:48:55 -05:00
Christopher Allan Webber
03afc828ce Properly require files when users submit 2011-04-23 14:13:33 -05:00
Christopher Allan Webber
204392362f Submission of image works :)
/me pours some sparkling grape juice
2011-04-23 13:29:15 -05:00
Christopher Allan Webber
e21e7bfeb4 Enclose queue_file writing in with statement so that it's closed correctly. 2011-04-23 13:15:09 -05:00
Christopher Allan Webber
2732c28676 A stupid success view. 2011-04-23 13:06:27 -05:00
Christopher Allan Webber
6e41c71c49 Adding the hidden next field to the login page so we actually do redirect 2011-04-23 12:56:32 -05:00
Christopher Allan Webber
f6f524bf59 submit_start written in a way that, by golly, you'd think maybe it'd work 2011-04-23 12:56:01 -05:00
Christopher Allan Webber
574d1511d6 Probably better to request.POST.get? 2011-04-23 12:54:11 -05:00
Christopher Allan Webber
e745ce10c9 we should check for request.user['status'] not request.user['session'], clearly. 2011-04-23 11:30:20 -05:00
Christopher Allan Webber
74ae6b112a making state for MediaEntry objects, also adding attributes:
- media_files
 - attachment_files
 - queue_files
 - thumbnail_file
2011-04-23 10:51:55 -05:00
Christopher Allan Webber
7bf3f5db0f Adding a space for custom validators, though we haven't used it yet :) 2011-04-23 09:03:25 -05:00
Christopher Allan Webber
4d75522b91 Give User a status, also add uploader user field to MediaEntry 2011-04-23 08:52:23 -05:00
Christopher Allan Webber
7eba0306d8 Provide a next= url when we require logging in 2011-04-23 08:46:02 -05:00