diff --git a/client/app/app.css b/client/app/app.css
index ef9b722..7136297 100644
--- a/client/app/app.css
+++ b/client/app/app.css
@@ -51,7 +51,15 @@
/* Component styles are injected through gulp */
/* inject:css */
@import 'admin/admin.css';
+@import 'designer/designer.css';
+@import 'designer/inventory/inventory.css';
+@import 'designer/playbook/playbook.css';
+@import 'designer/roles/roles.css';
+@import 'designer/tasks/tasks.css';
+@import 'directives/complexVar/complexVar.css';
@import 'main/main.css';
+@import 'project/project.css';
+@import 'runs/runs.css';
@import '../components/footer/footer.css';
@import '../components/modal/modal.css';
@import '../components/oauth-buttons/oauth-buttons.css';
diff --git a/client/app/custom_modules/custom_modules.service.js b/client/app/custom_modules/custom_modules.service.js
index 55e0dee..2ed9bbc 100644
--- a/client/app/custom_modules/custom_modules.service.js
+++ b/client/app/custom_modules/custom_modules.service.js
@@ -8,7 +8,7 @@ export function customModulesService($http,Projects) {
var uri = '/api/custom_modules';
this.get = function(successCallback,errorCallback){
- $http.post(uri + '/query',{ansibleEngine:Projects.selectedProject.ansibleEngine}).then(successCallback,errorCallback)
+ $http.post(uri + '/list',{ansibleEngine:Projects.selectedProject.ansibleEngine}).then(successCallback,errorCallback)
};
this.show = function(customModule,successCallback,errorCallback){
diff --git a/client/app/services/ansible/ansible.service.js b/client/app/services/ansible/ansible.service.js
index 32eb7b7..b2f0098 100644
--- a/client/app/services/ansible/ansible.service.js
+++ b/client/app/services/ansible/ansible.service.js
@@ -56,7 +56,7 @@ export function ansibleService($http, YAML, Projects) {
AnsibleService.cmd_buffer.push(Projects.selectedProject.ansibleEngine.ansibleHost);
- $http.post(uri + 'modules', {ansibleEngine: Projects.selectedProject.ansibleEngine}).then(function (response) {
+ $http.post(uri + 'modules/list', {ansibleEngine: Projects.selectedProject.ansibleEngine}).then(function (response) {
var result = response.data.split('\n');
AnsibleService.modules[Projects.selectedProject.ansibleEngine.ansibleHost] = result.map(function (item) {
return {"name": item.split(" ")[0], "description": item.split(/ (.+)?/)[1]}
@@ -130,7 +130,7 @@ export function ansibleService($http, YAML, Projects) {
};
this.query = function (successCallback, errorCallback) {
- $http.get(uri).then(successCallback, errorCallback);
+ $http.get(uri + 'runs').then(successCallback, errorCallback);
};
this.getModuleFromTask = function (task, successCallback, errorCallback) {
diff --git a/client/assets/fonts/bootstrap/glyphicons-halflings-regular.eot b/client/assets/fonts/bootstrap/glyphicons-halflings-regular.eot
new file mode 100644
index 0000000..b93a495
Binary files /dev/null and b/client/assets/fonts/bootstrap/glyphicons-halflings-regular.eot differ
diff --git a/client/assets/fonts/bootstrap/glyphicons-halflings-regular.svg b/client/assets/fonts/bootstrap/glyphicons-halflings-regular.svg
new file mode 100644
index 0000000..94fb549
--- /dev/null
+++ b/client/assets/fonts/bootstrap/glyphicons-halflings-regular.svg
@@ -0,0 +1,288 @@
+
+
+
\ No newline at end of file
diff --git a/client/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf b/client/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf
new file mode 100644
index 0000000..1413fc6
Binary files /dev/null and b/client/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf differ
diff --git a/client/assets/fonts/bootstrap/glyphicons-halflings-regular.woff b/client/assets/fonts/bootstrap/glyphicons-halflings-regular.woff
new file mode 100644
index 0000000..9e61285
Binary files /dev/null and b/client/assets/fonts/bootstrap/glyphicons-halflings-regular.woff differ
diff --git a/client/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 b/client/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2
new file mode 100644
index 0000000..64539b5
Binary files /dev/null and b/client/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 differ
diff --git a/client/assets/fonts/font-awesome/FontAwesome.otf b/client/assets/fonts/font-awesome/FontAwesome.otf
new file mode 100644
index 0000000..401ec0f
Binary files /dev/null and b/client/assets/fonts/font-awesome/FontAwesome.otf differ
diff --git a/client/assets/fonts/font-awesome/fontawesome-webfont.eot b/client/assets/fonts/font-awesome/fontawesome-webfont.eot
new file mode 100644
index 0000000..e9f60ca
Binary files /dev/null and b/client/assets/fonts/font-awesome/fontawesome-webfont.eot differ
diff --git a/client/assets/fonts/font-awesome/fontawesome-webfont.svg b/client/assets/fonts/font-awesome/fontawesome-webfont.svg
new file mode 100644
index 0000000..855c845
--- /dev/null
+++ b/client/assets/fonts/font-awesome/fontawesome-webfont.svg
@@ -0,0 +1,2671 @@
+
+
+
diff --git a/client/assets/fonts/font-awesome/fontawesome-webfont.ttf b/client/assets/fonts/font-awesome/fontawesome-webfont.ttf
new file mode 100644
index 0000000..35acda2
Binary files /dev/null and b/client/assets/fonts/font-awesome/fontawesome-webfont.ttf differ
diff --git a/client/assets/fonts/font-awesome/fontawesome-webfont.woff b/client/assets/fonts/font-awesome/fontawesome-webfont.woff
new file mode 100644
index 0000000..400014a
Binary files /dev/null and b/client/assets/fonts/font-awesome/fontawesome-webfont.woff differ
diff --git a/client/assets/fonts/font-awesome/fontawesome-webfont.woff2 b/client/assets/fonts/font-awesome/fontawesome-webfont.woff2
new file mode 100644
index 0000000..4d13fc6
Binary files /dev/null and b/client/assets/fonts/font-awesome/fontawesome-webfont.woff2 differ