Custom Query (1173 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (205 - 207 of 1173)

Ticket Resolution Summary Owner Reporter
#637 fixed Callable hooks that iterate through vs hooks that halt Christopher Allan Webber Christopher Allan Webber
Description

We can handle notification and transform via the "callable hooks" system, but we don't have a "handler" that is the last one to get it and then things stop.

One way to handle this: have a series of method calling handlers that do things in different ways, like:

  • callable_hook_runone: runs them all till they stop
    • which order? Does the last or the first get to claim it?
  • callable_hook_runall: runs every one of the hooks
    • likewise... which order?

.. both of those would expect *args, **kwargs and pass those keyword arguments onto the hooks.

It might also be possible to make some callable classes like this, like:

   callable_hook = CallableHookRunone(
      'some_hookname', accrue=True)  # accrues the results into a list
   results = callable_hook(arg1, arg2, kwarg="foo")
#646 fixed Problem with ./bin/gmg theme assetlink Christopher Allan Webber Tumulte
Description

./bin/gmg theme assetlink gives me this error :

  File "./bin/gmg", line 9, in <module>
    load_entry_point('mediagoblin==0.3.3.dev', 'console_scripts', 'gmg')()
  File "/var/www/mediagoblin/mediagoblin/gmg_commands/__init__.py", line 100, in main_cli
    args.func(args)
  File "/var/www/mediagoblin/mediagoblin/gmg_commands/theme.py", line 122, in theme
    SUBCOMMANDS[args.subcommand](args)
  File "/var/www/mediagoblin/mediagoblin/gmg_commands/theme.py", line 104, in assetlink_command
    link_assets(current_theme, app_config['theme_linked_assets_dir'])
  File "/var/www/mediagoblin/mediagoblin/gmg_commands/theme.py", line 71, in link_assets
    printer(_("No asset directory for this theme\n"))
  File "/var/www/mediagoblin/mediagoblin/tools/translate.py", line 122, in pass_to_ugettext
    return mg_globals.thread_scope.translations.ugettext(
AttributeError: 'NoneType' object has no attribute 'ugettext'
#47 fixed It is possible to register 2 accounts with same email address Elrond Sebastian Spaeth
Description
We can currently register two accounts with the same email address.
I am not sure if this is a feature or a bug, but it will be fun
when we implement the "forgot password" functionality. Can this be
limited on the database level or where would one check the
uniqueness?



Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.