2114 Commits

Author SHA1 Message Date
Joar Wandborg
84336a46b1 Added links to community-provied init scripts 2012-05-28 01:08:38 +02:00
Will Kahn-Greene
469f10e4a7 Add plugin writer's quickstart guide 2012-05-23 21:16:18 -04:00
Will Kahn-Greene
4f94f29da9 Add build date to docs
Makes it easier to spot when the docs aren't rebuilding correctly.
2012-05-23 20:35:53 -04:00
Will Kahn-Greene
2530ef7a1f Split docs into siteadmin and pluginwriter guides
* create initial bits for plugin writer's guide
* move siteadmin stuff to site administrator's guide
* rework index.rst to support multiple guides
* tweak some text
* move files into subdirectories

I verified that this still works with html and texinfo build targets.
There's still a lot of work to do, but this is a good start.
2012-05-23 20:21:03 -04:00
Christopher Allan Webber
758def22b8 Merge branch 'master' of gitorious.org:mediagoblin/mediagoblin 2012-05-20 15:24:37 -05:00
Christopher Allan Webber
a8acb5a387 from_celery.setup_self() didn't pay attention to default_conf_file kwarg, fixed. 2012-05-20 15:17:49 -05:00
Jakob Kramer
b781c3c928 added support for original audio download; rename
Renamed `ogg' to `webm_audio' in core__file_keynames
2012-05-20 18:32:56 +02:00
Will Kahn-Greene
355fd6770d Update documentation for plugins 2012-05-16 21:04:52 -04:00
Will Kahn-Greene
29b6f91740 401. Plugin infrastructure
* implements installing, loading and setup for plugins
* codifies configuration
* has a sample plugin
* docs
* tests
2012-05-13 00:00:08 -04:00
Joar Wandborg
f10c3bb8e5 Added logging to meddleware.csrf 2012-05-13 00:45:58 +02:00
Christopher Allan Webber
61d0af2130 gandaro points out we should have all headers end with question marks for consistency
Done for about.rst
2012-05-06 15:28:13 -05:00
Christopher Allan Webber
c3dc1fb440 Apparently I can't correct typos right. MedaGoblin->MediaGoblin in docs 2012-05-06 15:27:19 -05:00
Christopher Allan Webber
518c5eb38b A couple of typos in docs... MedaGobilin->MediaGoblin 2012-05-05 12:16:13 -05:00
Will Kahn-Greene
a736a5d582 Update version to 0.3.1.dev 2012-05-02 07:02:15 -07:00
Will Kahn-Greene
44f3d3b19a Update version to 0.3.0 for release 2012-05-02 07:02:15 -07:00
greg
dce3792218 One character chage: "our" to "your" in the release notes as it makes more
sense, I believe.
2012-05-01 09:32:59 -07:00
Christopher Allan Webber
6e930791e9 0.3.0 *is* released! Reflect that in the release notes :) 2012-05-01 11:10:39 -05:00
Christopher Allan Webber
21a84362ea Also tell people to install python-psycopg2 if using postgres in docs 2012-04-30 22:12:07 -05:00
Christopher Allan Webber
084a619079 ./bin/gmg migrate -> ./bin/gmg dbupdate in the docs 2012-04-30 22:05:27 -05:00
Christopher Allan Webber
9716031483 Committing extracted and compiled translations 2012-04-30 10:48:49 -05:00
Christopher Allan Webber
fc8d2334e2 Committing present MediaGoblin translations before pushing extracted messages 2012-04-30 10:48:21 -05:00
Christopher Allan Webber
fe191ea48a Removing references to MongoDB in docs/ 2012-04-29 13:11:31 -05:00
Christopher Allan Webber
2eae6ae1ce No need to keep around mongodb migration tests. 2012-04-29 13:05:00 -05:00
Christopher Allan Webber
088644a80b Deprecate ./bin/gmg migrate.
Keeping it around just in case someone manually wants to migrate
before running the convert thing or... something.  Probably silly.
2012-04-29 12:08:44 -05:00
Christopher Allan Webber
63578ee395 Removing wipealldata command and deleting env_export/env_import for now.
None of these tools really work anymore in the SQL world, and possibly
aren't as necessary either.  In the meanwhile, just disabling them to
reduce confusion.
2012-04-29 11:45:48 -05:00
Christopher Allan Webber
9679ab6c1c Removing mongo and mongokit as dependencies. 2012-04-29 11:11:08 -05:00
Elrond
d2eab8868e Translate form validation error messages.
Okay, this is a long story.
There are two ways to translate validation error messages:

1) Let wtforms do it. You give wtforms a translation thingy
   and it calls it for the message to be translated. Good
   idea maybe. Except: The translation function is only
   called for the builtin messages of wtforms. It's not
   called for any handcrafted messages in the constructor.
   And we can't translate the message there! Because the
   message needs to be translated when the form is
   rendered, for each user's locale.

   This does not work for us.

2) Translate the message while it gets rendered.
   Luckily we render the message completely by hand. So we
   can just translate it there also!

   Simple, easy, works!

This all does not cover translating the builtin messages of
wtforms. They're currently not extracted in any way, so our
translators can't translate them.

But that's another issue!
2012-04-24 00:17:03 +02:00
Christopher Allan Webber
80dc071b79 Making celeryd consistent: look for mediagoblin_local.ini
Use mediagoblin_local.ini as default conf file if it exists, else use
mediagoblin.ini, just like everything else.
2012-04-22 14:09:47 -05:00
Christopher Allan Webber
fe44915922 Merge branch 'master' of gitorious.org:mediagoblin/mediagoblin 2012-04-22 10:06:52 -05:00
Christopher Allan Webber
5d88f39875 Switching BROKER_HOST to sqlite:// instead of sqlalchemy+sqlite://
Okay, so if you run git master of kombu, this works.  And if you run
the older kombu + kombu-sqlalchemy, this also worked.  In the last
release of kombu (2.1.5) there's a bug, and sqlalchemy+sqlite://
worked for processes consuming tasks but not ones publishing tasks.

Aye aye aye.

I guess we might have to move our setup.py back to the old kombu +
kombu-sqlalchemy setup until they put out a new kombu release? :(
2012-04-22 10:02:04 -05:00
Elrond
e2afad955f Committing extracted and compiled translations 2012-04-22 12:45:18 +02:00
Christopher Allan Webber
ec05785089 Remove kombu-sqlalchemy and use database string in modern kombu-proper format
Previously we were using kombu-sqlalchemy the library for sqlalchemy
support.  Newer kombu has support for this internally, so we're using
that.  Requires changing a celery setting and also removing
kombu-sqlalchemy from your path.

I hope the process of removing kombu-sqlalchemy from one's path
doesn't confuse too many people...!
2012-04-21 20:29:02 -05:00
Christopher Allan Webber
c2c66ea1c1 Committing extracted and compiled translations 2012-04-21 16:36:35 -05:00
Christopher Allan Webber
370314b5ae Committing present MediaGoblin translations before pushing extracted messages 2012-04-21 16:36:02 -05:00
Elrond
345afe1eff Extract new translatable strings. 2012-04-21 23:15:03 +02:00
Elrond
756274b631 transifex: Wait a bit after push.
We're seeing somewhat inconsistent data in tx pull.
My theory is: The server needs longer to process the
uploaded new template and work that into the translations.
2012-04-21 23:13:05 +02:00
Will Kahn-Greene
7798f911ab Documentation updates and fixes
* Nixed some of the mongodb references--pretty sure we're done with that.
* Fixed some awkward language.
* Fixed : :: stuff. Sphinx lets you do :: so you don't need the additional
  colon.
* Turned a paragraph into a .. note:: section. That makes it easier to
  notice and read.
2012-04-20 22:10:21 -04:00
Jakob Kramer
f646e2e11b use _ function on some now untranslatable strings 2012-04-19 20:15:07 +02:00
Jakob Kramer
7ca40b5992 '+ Add media' and 'View your profile' translatable 2012-04-19 20:14:23 +02:00
Christopher Allan Webber
add8d351de Also make sure mimetype here is set correctly via mimetype[0] (Thanks Shackra!) 2012-04-18 09:22:51 -05:00
Christopher Allan Webber
6a26e4b055 Committing extracted and compiled translations 2012-04-18 08:49:14 -05:00
Christopher Allan Webber
4a5b97babb Make image-for-media_title alt tag translatable 2012-04-18 08:48:17 -05:00
Christopher Allan Webber
4dafbaee1f Committing extracted and compiled translations 2012-04-18 08:23:46 -05:00
Christopher Allan Webber
754ba1762f Committing present MediaGoblin translations before pushing extracted messages 2012-04-18 08:23:26 -05:00
Joar Wandborg
098d20ab58 Merge remote-tracking branch 'joar/html5slider' 2012-04-18 12:10:23 +02:00
Joar Wandborg
1d83cf8a81 Added html5slider to support range inputs in Firefox 2012-04-18 12:06:10 +02:00
Shackra
ea42790bc3 Save the MIMEtype to cloudfiles correctly. 2012-04-16 22:06:54 +02:00
Joar Wandborg
2bfb811892 Updated the audio display <source> element
as per
<http://www.w3.org/TR/html5/the-source-element.html#attr-source-type>.

This closes bug <http://issues.mediagoblin.org/ticket/435>.
2012-04-16 10:43:50 +02:00
Elrond
3f36967401 log.debug the used config file.
Might be useful at some point.
2012-04-09 22:49:41 +02:00
Elrond
cb9b2b2a6f Fix atom feed for tags.
This one was missed. Needs to call a big sql join.
Luckily the join was already implemented.
2012-04-09 22:43:25 +02:00