Skip to content

Commit

Permalink
#504 tidy some references
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed Nov 15, 2013
1 parent 28a9de2 commit ca46496
Show file tree
Hide file tree
Showing 10 changed files with 83 additions and 9 deletions.
7 changes: 7 additions & 0 deletions hawtio-web/src/main/webapp/app/activemq/js/activemqPlugin.ts
@@ -1,6 +1,13 @@
/// <reference path='../../definitions/DefinitelyTyped/angularjs/angular.d.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/jquery/jquery.d.ts'/>
/// <reference path='../../definitions/jolokia-1.0.d.ts'/>
/// <reference path='../../definitions/logger.d.ts'/>
/// <reference path='../../definitions/sugar-1.3.d.ts'/>
/// <reference path='../../core/js/workspace.ts'/>
/// <reference path='../../core/js/coreHelpers.ts'/>
/// <reference path='helpers.ts'/>


module ActiveMQ {
var pluginName = 'activemq';
var jmxDomain = 'org.apache.activemq';
Expand Down
10 changes: 9 additions & 1 deletion hawtio-web/src/main/webapp/app/activemq/js/browse.ts
@@ -1,4 +1,12 @@
/// <reference path='activemqPlugin.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/angularjs/angular.d.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/jquery/jquery.d.ts'/>
/// <reference path='../../definitions/jolokia-1.0.d.ts'/>
/// <reference path='../../definitions/logger.d.ts'/>
/// <reference path='../../definitions/sugar-1.3.d.ts'/>
/// <reference path='../../core/js/workspace.ts'/>
/// <reference path='../../core/js/coreHelpers.ts'/>
/// <reference path='helpers.ts'/>

module ActiveMQ {
export function BrowseQueueController($scope, workspace:Workspace, jolokia) {

Expand Down
10 changes: 9 additions & 1 deletion hawtio-web/src/main/webapp/app/activemq/js/destination.ts
@@ -1,4 +1,12 @@
/// <reference path='activemqPlugin.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/angularjs/angular.d.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/jquery/jquery.d.ts'/>
/// <reference path='../../definitions/jolokia-1.0.d.ts'/>
/// <reference path='../../definitions/logger.d.ts'/>
/// <reference path='../../definitions/sugar-1.3.d.ts'/>
/// <reference path='../../core/js/workspace.ts'/>
/// <reference path='../../core/js/coreHelpers.ts'/>
/// <reference path='helpers.ts'/>

module ActiveMQ {
export function DestinationController($scope, workspace:Workspace, jolokia) {
$scope.workspace = workspace;
Expand Down
@@ -1,4 +1,11 @@
/// <reference path='activemqPlugin.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/angularjs/angular.d.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/jquery/jquery.d.ts'/>
/// <reference path='../../definitions/jolokia-1.0.d.ts'/>
/// <reference path='../../definitions/logger.d.ts'/>
/// <reference path='../../definitions/sugar-1.3.d.ts'/>
/// <reference path='../../core/js/workspace.ts'/>
/// <reference path='../../core/js/coreHelpers.ts'/>
/// <reference path='helpers.ts'/>

module ActiveMQ {
export function DurableSubscriberController($scope, workspace:Workspace, jolokia) {
Expand Down
10 changes: 9 additions & 1 deletion hawtio-web/src/main/webapp/app/activemq/js/graph.ts
@@ -1,4 +1,12 @@
/// <reference path='activemqPlugin.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/angularjs/angular.d.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/jquery/jquery.d.ts'/>
/// <reference path='../../definitions/jolokia-1.0.d.ts'/>
/// <reference path='../../definitions/logger.d.ts'/>
/// <reference path='../../definitions/sugar-1.3.d.ts'/>
/// <reference path='../../core/js/workspace.ts'/>
/// <reference path='../../core/js/coreHelpers.ts'/>
/// <reference path='helpers.ts'/>

module ActiveMQ {
export function SubscriberGraphController($scope, $element, $timeout, workspace:Workspace, jolokia) {
$scope.nodes = [];
Expand Down
9 changes: 8 additions & 1 deletion hawtio-web/src/main/webapp/app/activemq/js/helpers.ts
@@ -1,4 +1,11 @@
/// <reference path='activemqPlugin.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/angularjs/angular.d.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/jquery/jquery.d.ts'/>
/// <reference path='../../definitions/jolokia-1.0.d.ts'/>
/// <reference path='../../definitions/logger.d.ts'/>
/// <reference path='../../definitions/sugar-1.3.d.ts'/>
/// <reference path='../../core/js/workspace.ts'/>
/// <reference path='../../core/js/coreHelpers.ts'/>

module ActiveMQ {

export var log:Logging.Logger = Logger.get("activemq");
Expand Down
10 changes: 9 additions & 1 deletion hawtio-web/src/main/webapp/app/activemq/js/tree.ts
@@ -1,4 +1,12 @@
/// <reference path='activemqPlugin.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/angularjs/angular.d.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/jquery/jquery.d.ts'/>
/// <reference path='../../definitions/jolokia-1.0.d.ts'/>
/// <reference path='../../definitions/logger.d.ts'/>
/// <reference path='../../definitions/sugar-1.3.d.ts'/>
/// <reference path='../../core/js/workspace.ts'/>
/// <reference path='../../core/js/coreHelpers.ts'/>
/// <reference path='helpers.ts'/>

module ActiveMQ {

export function TreeController($scope, $location:ng.ILocationService, workspace:Workspace) {
Expand Down
7 changes: 6 additions & 1 deletion hawtio-web/src/main/webapp/app/api/js/helpers.ts
@@ -1,4 +1,9 @@
///<reference path='apiPlugin.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/angularjs/angular.d.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/jquery/jquery.d.ts'/>
/// <reference path='../../definitions/logger.d.ts'/>
/// <reference path='../../definitions/sugar-1.3.d.ts'/>
/// <reference path='../../core/js/coreHelpers.ts'/>

module API {

var log:Logging.Logger = Logger.get("API");
Expand Down
10 changes: 9 additions & 1 deletion hawtio-web/src/main/webapp/app/api/js/wadl.ts
@@ -1,4 +1,12 @@
///<reference path='apiPlugin.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/angularjs/angular.d.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/jquery/jquery.d.ts'/>
/// <reference path='../../definitions/jolokia-1.0.d.ts'/>
/// <reference path='../../definitions/logger.d.ts'/>
/// <reference path='../../definitions/sugar-1.3.d.ts'/>
/// <reference path='../../core/js/workspace.ts'/>
/// <reference path='../../core/js/coreHelpers.ts'/>
/// <reference path='helpers.ts'/>

module API {

export function WadlViewController($scope, $location, jolokia) {
Expand Down
10 changes: 9 additions & 1 deletion hawtio-web/src/main/webapp/app/api/js/wsdl.ts
@@ -1,4 +1,12 @@
///<reference path='apiPlugin.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/angularjs/angular.d.ts'/>
/// <reference path='../../definitions/DefinitelyTyped/jquery/jquery.d.ts'/>
/// <reference path='../../definitions/jolokia-1.0.d.ts'/>
/// <reference path='../../definitions/logger.d.ts'/>
/// <reference path='../../definitions/sugar-1.3.d.ts'/>
/// <reference path='../../core/js/workspace.ts'/>
/// <reference path='../../core/js/coreHelpers.ts'/>
/// <reference path='helpers.ts'/>

module API {

export function WsdlViewController($scope, $location, jolokia) {
Expand Down

0 comments on commit ca46496

Please sign in to comment.