Beispiel #1
0
    def __init__(self, options):
        ShermanFeature.__init__(self, options)

        self.additionalBootResources.append({
            "path": "/features/profiling/profiling.js",
            "inline": True
        })
Beispiel #2
0
    def __init__(self, options):
        ShermanFeature.__init__(self, options)

        self.additionalBootResources.append({
            "path": "/features/profiling/profiling.js",
            "inline": True
        })
Beispiel #3
0
    def __init__(self, config):
        ShermanFeature.__init__(self, config)

        self.additionalBootResources.append({
            "path": "/features/jquery/jquery.js",
            "excludeFromNamespace": True,
            "runJsLint": False
        })
Beispiel #4
0
    def __init__(self, config):
        ShermanFeature.__init__(self, config)

        self.additionalBootResources.append({
            "path": "/features/jquery/jquery.js",
            "excludeFromNamespace": True,
            "runJsLint": False
        })
Beispiel #5
0
    def __init__(self, options):
        ShermanFeature.__init__(self, options)

        self.projectBuilder.features["modules-helper"] = HelperFeature(options)

        self.additionalBootResources.append({
            "path": "/features/modules/modules.js",
            "inline": True
        })
Beispiel #6
0
    def __init__(self, options):
        ShermanFeature.__init__(self, options)

        self.additionalBootResources.append(
            {"path": "/features/tiles/routes.js"})
        self.additionalBootResources.append(
            {"path": "/features/tiles/history.js"})
        self.additionalBootResources.append(
            {"path": "/features/tiles/tiles.js"})
Beispiel #7
0
    def __init__(self, options):
        ShermanFeature.__init__(self, options)

        self.projectBuilder.features["modules-helper"] = HelperFeature(options)

        self.additionalBootResources.append({
            "path": "/features/modules/modules.js",
            "inline": True
        })
Beispiel #8
0
    def __init__(self, options):
        ShermanFeature.__init__(self, options)

        sys.path.append(self.shermanDir + "/other/woodpecker")
        import cssparser
        import scsscompiler
        import scssimporter

        scssimporter.Importer.addPath(self.shermanDir + "/other/woodpecker/stylesheets")

        self.cssparser = cssparser
        self.scsscompiler = scsscompiler
Beispiel #9
0
    def __init__(self, options):
        ShermanFeature.__init__(self, options)

        sys.path.append(self.shermanDir + "/other/woodpecker")
        import cssparser
        import scsscompiler
        import scssimporter

        scssimporter.Importer.addPath(self.shermanDir +
                                      "/other/woodpecker/stylesheets")

        self.cssparser = cssparser
        self.scsscompiler = scsscompiler
Beispiel #10
0
    def __init__(self, config):
        ShermanFeature.__init__(self, config)

        self.additionalBootResources.append({
            "path": "/features/i18n/i18n.js"
        })
Beispiel #11
0
 def manifestLoaded(self, moduleName, modulePath, manifest):
     ShermanFeature.manifestLoaded(self, moduleName, modulePath, manifest)
Beispiel #12
0
 def manifestLoaded(self, moduleName, modulePath, manifest):
     ShermanFeature.manifestLoaded(self, moduleName, modulePath, manifest)
Beispiel #13
0
    def __init__(self, config):
        ShermanFeature.__init__(self, config)

        self.additionalBootResources.append({"path": "/features/i18n/i18n.js"})