aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/gmg_commands/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* This import_export stuff is mongodb days leftovers. Removing!Christopher Allan Webber2014-11-261-14/+0
| | | | This commit sponsored by Ray Redd. Thanks!
* Make a mediagoblin.ini file for the user if needed.Christopher Allan Webber2014-10-101-0/+26
| | | | | This is to prevent our docs from confusing people in this transitionary time period...
* Merge branch 'master' into merge-python3-portChristopher Allan Webber2014-09-161-0/+8
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Has some issues, will iteratively fix! Conflicts: mediagoblin/gmg_commands/__init__.py mediagoblin/gmg_commands/deletemedia.py mediagoblin/gmg_commands/users.py mediagoblin/oauth/views.py mediagoblin/plugins/api/views.py mediagoblin/tests/test_api.py mediagoblin/tests/test_edit.py mediagoblin/tests/test_oauth1.py mediagoblin/tests/test_util.py mediagoblin/tools/mail.py mediagoblin/webfinger/views.py setup.py
| * #303 : enhancement : add a command to delete usersLoïc Le Ninan2014-06-111-0/+4
| |
| * Merge branch 'master' of gitorious.org:mediagoblin/mediagoblin into metadatatilly-Q2014-05-131-1/+5
| |\ | | | | | | | | | | | | Conflicts: mediagoblin/gmg_commands/__init__.py
| * | I made it so the command no longer requires the "Target type" to be provided,tilly-Q2014-04-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | it now recognizes whether the target is a directory or an archive on its own. I added in a help message, which is still incomplete, but should make it easier for admins to know how to use this new command. I believe we should also provi- -de an example of the location.csv and metadata.csv files, so there is no conf- -usion. Also, I made it possible for the command to recognize zip files as a valid archive. I also made some minor changes to the commands description w/i the larger gmg command help menu.
| * | This branch will create a commandline bulk-upload script. So far, I have writtentilly-Q2014-04-211-0/+4
| | | | | | | | | | | | the code to read csv files into a usable dictionary.
* | | Add an initial "gmg serve" implementation.Berker Peksag2014-08-151-0/+4
| | | | | | | | | | | | The CLI is similar to "paster serve".
* | | Use six.iteritems() instead of dict.iteritems().Berker Peksag2014-05-261-1/+3
| |/ |/|
* | Issue #824: Add gmg deletemedia command.Berker Peksag2014-04-101-0/+4
|/
* Start of addmedia command. Kinda close to working ;)Christopher Allan Webber2013-11-131-0/+4
|
* More progress towards the new reprocessing infrastructure: args updatingChristopher Allan Webber2013-08-161-6/+6
| | | | This commit sponsored by Elizabeth Webber. Thanks, sis!
* Beginnings of a reprocess commandRodney Ewing2013-08-161-0/+4
|
* use parser.parse_known_args() instead of parser.parse_args()Rodney Ewing2013-08-161-6/+6
|
* Generalize "gmg theme assetlink" -> "gmg assetlink" and cover both theme and ↵Christopher Allan Webber2013-05-231-5/+9
| | | | | | | | | plugins We've moved the module... probably I'll re-add theme just to give a warning that this is deprecated. This commit sponsored by Kevin Williams. Thank you!
* RIP out mongoSebastian Spaeth2012-12-251-9/+0
| | | | | | | | | Since sqlalchemy is providing our database abstraction and we have moved away from Mongo as the underlying database, it is now time to simplify things and rip out mongo. This provides the bulk of the changes, and can stand on its own. There are some followup tasks that can be done, such as removing now unneeded abstraction layers, e.g. db.sql.fake.py
* makeadmin and changepasswd had swapped help textChristopher Allan Webber2012-12-181-2/+2
|
* Start of the `./bin/gmg theme assetlink` command.Christopher Allan Webber2012-07-141-0/+6
| | | | Mostly works but doesn't handle all the places it could break.
* Deprecate ./bin/gmg migrate.Christopher Allan Webber2012-04-291-1/+2
| | | | | Keeping it around just in case someone manually wants to migrate before running the convert thing or... something. Probably silly.
* Removing wipealldata command and deleting env_export/env_import for now.Christopher Allan Webber2012-04-291-12/+14
| | | | | | 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.
* Create "gmg convert_mongo_to_sql" commandElrond2012-02-231-0/+4
| | | | | | | | | Finally, to make testing of sql a bit easier, create a bin/gmg command to do the conversion from mongo to sql. It's currently named "convert_mongo_to_sql". The most important option is the gmg -cf option to give a configfile with the appropiate sql_engine definition.
* Updates so that dbupdate command worksChristopher Allan Webber2012-02-181-0/+4
| | | | | | - Various fixes to dbupdate itself - Switching db/sql/migrations.py to use a dict instead of a list - Registering the function
* It's 2012 all up in hereChristopher Allan Webber2012-02-021-1/+1
|
* Merge remote-tracking branch 'remotes/nyergler/pep8-ification'Christopher Allan Webber2011-11-131-3/+2
|\ | | | | | | | | | | | | | | Conflicts: mediagoblin/db/migrations.py mediagoblin/db/models.py mediagoblin/user_pages/views.py mediagoblin/util.py
| * has_key is deprecated, converting uses to use "in" operator.Nathan Yergler2011-10-011-1/+1
| |
| * Whitespace and formatting cleanup.Nathan Yergler2011-10-011-2/+1
| | | | | | | | | | | | | | * Removed trailing whitespace * Line length < 80 where possible * Honor conventions on number of blank lines * Honor conventions about spaces around :, =
* | Default to mediagoblin_local.ini if available in ./bin/gmg commandsChristopher Allan Webber2011-10-291-2/+13
| |
* | Make gmg's -cf option a global optionElrond2011-10-231-0/+3
| | | | | | | | | | | | | | | | | | All gmg's subcommands used to have a -cf option to set the config file. Instead make this a gmg global option. This means: bin/gmg migrate -cf mediagoblin_2.ini gets bin/gmg -cf mediagoblin_2.ini migrate
* | Merge remote branch 'remotes/aaronw/bug444_fix_utils_py_redux'Christopher Allan Webber2011-10-011-3/+3
|/ | | | | Conflicts: mediagoblin/util.py
* 508. Updates copyright/license informationWill Kahn-Greene2011-09-011-1/+1
|
* Feature #298 - Environment tarballJoar Wandborg2011-08-071-0/+8
| | | | | * Added command hooks for gmg_commands.import_export * Added (DANGEROUSLY BLEEDING EDGE) gmg_commands.import_export
* Moves destroy_environment to wipealldata commandWill Kahn-Greene2011-07-301-0/+4
|
* No need to describe usage of subcommands, gmg subcommand --help does thatChristopher Allan Webber2011-06-221-3/+3
|
* Adding new function to gmg_commands, adduser,makeadmin and changepw issue 373Alejandro Villanueva2011-06-221-0/+13
|
* User migration works (but the rest of the system isn't updated for new user ↵Christopher Allan Webber2011-05-221-0/+4
| | | | setup yet)
* Move the general applicaiton setup commands to a utility moduleChristopher Allan Webber2011-05-221-3/+3
|
* Move the ./bin/gmg shell command into its own module.Christopher Allan Webber2011-05-221-55/+3
|
* ./bin/gmg shell! Should make a lot of peoples' hacking lives easier I ↵Christopher Allan Webber2011-05-151-0/+106
suspect :)