Ejemplo n.º 1
0
 def get_sub_commands(self):
     super_cmds = du_build.get_sub_commands(self)
     my_cmds = [
         BuildProductionResourcesCommand.command_name,
         BuildMessagesCommand.command_name,
     ]
     return my_cmds + super_cmds
Ejemplo n.º 2
0
 def get_sub_commands(self):
     super_cmds = du_build.get_sub_commands(self)
     my_cmds = [
         BuildProductionResourcesCommand.command_name,
         BuildMessagesCommand.command_name,
     ]
     return my_cmds + super_cmds
Ejemplo n.º 3
0
 def get_sub_commands(self):
     # Force "build_ext" invocation.
     commands = build.get_sub_commands(self)
     for c in commands:
         if c == 'build_ext':
             return commands
     return ['build_ext'] + commands
Ejemplo n.º 4
0
 def get_sub_commands(self):
     # Force "build_ext" invocation.
     commands = build.get_sub_commands(self)
     for c in commands:
         if c == 'build_ext':
             return commands
     return ['build_ext'] + commands
Ejemplo n.º 5
0
 def get_sub_commands(self):
     # Force "build_clib"/"build_ext" invocation.
     commands = build.get_sub_commands(self)
     if 'build_ext' not in commands:
         commands.insert(0, 'build_ext')
     if 'build_clib' not in commands:
         commands.insert(0, 'build_clib')
     return commands
Ejemplo n.º 6
0
 def get_sub_commands(self):
     sub_commands = _build.get_sub_commands(self)
     print sub_commands
     return [
         ('compile_catalog', None),
     ] + sub_commands
Ejemplo n.º 7
0
 def get_sub_commands(self):
     return _build.get_sub_commands(self) + ["build_doc"]
Ejemplo n.º 8
0
 def get_sub_commands(self):
   return _build.get_sub_commands(self) + ["build_doc"]
Ejemplo n.º 9
0
 def get_sub_commands(self):
     sub_commands = _build.get_sub_commands(self)
     print sub_commands
     return [('compile_catalog', None), ] + sub_commands