Example #1
0
    def __init__(self):
        Extension.__init__(self)

        self.url_hook = URLHook(self, patterns('',
            (r'^reports/', include('rbreports.urls'))))

        self.dashboard_hook = ReportsDashboardHook(self)
Example #2
0
    def __init__(self):
        Extension.__init__(self)

        self.activity_monitor = TemplateHook(
            self,
            "base-scripts-post",
            "rbstopwatch/activity_monitor.html",
            ["view_diff", "view_diff_revision", "view_screenshot"],
        )

        self.mousewheel_lib = TemplateHook(
            self,
            "base-scripts",
            "rbstopwatch/mousewheel_lib.html",
            ["view_diff", "view_diff_revision", "view_screenshot"],
        )

        self.review_display = TemplateHook(self, "review-summary-header-post", "rbstopwatch/review_summary_insert.html")

        self.stats_hook = RBStopwatchStatsTableEntry(self)
 def __init__(self):
     Extension.__init__(self)
     self.stats_hook = RBKarmaStatsTableEntry(self)
 def __init__(self):
     Extension.__init__(self)
Example #5
0
 def __init__(self):
     Extension.__init__(self)
     self.client = CIAClient(self)
 def __init__(self):
     Extension.__init__(self)
     self.dashboard_hook = ExtBDashboardHook(self)
Example #7
0
 def __init__(self):
     Extension.__init__(self)
     self.dashboard_hook = RBStatsDashboardHook(self)
     self.url_hook = URLHook(self, patterns("", (r"^rbstats/", include("rbstats.urls"))))
Example #8
0
    def __init__(self):
        Extension.__init__(self)

        URLHook(self, patterns("", (r"^iphone/", include("rbiphone.urls"))))
        TemplateHook(self, "base-after-navbar", "rbiphone/iphone_link.html")