Beispiel #1
0
    def handle(self, *args, **options):
        # this is overridden so we can also do the trick on couchapps
        for app in get_apps():
            couchdbkit_handler.copy_designs(app, temp='tmp', verbosity=2)

        for plugin in get_preindex_plugins():
            plugin.copy_designs(temp='tmp')
Beispiel #2
0
    def handle(self, *args, **options):
        # this is overridden so we can also do the trick on couchapps
        for app in get_apps():
            couchdbkit_handler.copy_designs(app, temp='tmp', verbosity=2)

        couchapps.copy_designs()

        try:
            import mvp_apps
        except ImportError:
            pass
        else:
            mvp_apps.copy_designs()
Beispiel #3
0
 def handle(self, *args, **options):
     for app in get_apps():
         couchdbkit_handler.copy_designs(app, temp='tmp', verbosity=2)
 def handle(self, *args, **options):
     for app in apps.get_apps():
         couchdbkit_handler.copy_designs(app, temp='tmp', verbosity=2)