Commit Graph

  • 9c6a20d4c7 On Job Events page, Event and Host columns now have a min-width css setting to help prevent 'jump' when collapsing/expanding children. Fixes the jump, but sort of wrecks the TB's responsive layout on small screens. May have to circle back and add media query at some point. chouseknecht 2013-06-18 18:33:16 -04:00
  • 9d4a2f528e Fixed missing host and status values on Job Events page. chouseknecht 2013-06-18 18:12:28 -04:00
  • 2abd33cf22 Collapse/expand job_events list using the api parent/child relationship chouseknecht 2013-06-18 17:20:25 -04:00
  • c9da8294df Fix to only specify sudo user if explicitly given by the credentials, so as not to force the playbook to require sudo privileges to run. Chris Church 2013-06-17 19:48:09 -04:00
  • 0dbb737f20 Added setting for using minified JS in production. Chris Church 2013-06-17 12:31:26 -04:00
  • 232c4f2391 Added job event parent/child fields, update event display to show hierarchy levels. Chris Church 2013-06-17 12:28:21 -04:00
  • c979817593 On lists searchField now has precedence over sourceModel/sourceField when generating search query string. chouseknecht 2013-06-17 11:40:51 -04:00
  • f9b385bed2 Fix tests to pass when using PostgreSQL as the test database. Chris Church 2013-06-16 00:06:56 -04:00
  • ca4050aee8 Adding ability to run "make rpm" James Cammarata 2013-06-15 04:10:11 -04:00
  • c6cb86321e Renaming some views for somewhat consistent naming, add hosts/N/groups and hosts/N/all_groups views, removed creation_date field from seralizers. Chris Church 2013-06-15 00:16:56 -04:00
  • e435951fe4 Added config resource with project base dir and local paths, various other API cleanup. Chris Church 2013-06-14 23:15:31 -04:00
  • abd81b7492 Added variable data field and resource on inventory. Updated inventory script to output inventory variables for the 'all' group. Chris Church 2013-06-14 20:09:55 -04:00
  • d47ea40d60 Re-styled tree pieces on Inventory detail page. Blended boxes on left into one continuous box to match box on right. chouseknecht 2013-06-14 15:16:41 -04:00
  • 0cf6faaff4 Added use of new Column helper to BuildCollections. chouseknecht 2013-06-14 14:52:13 -04:00
  • 6ea2fa4462 Combined more pieces of List Generator and Form Generator into shared helpers to streamline and re-use code for creating lists. chouseknecht 2013-06-14 14:48:22 -04:00
  • ab9b9f84c5 Synced code between list view and related list view. Column displaying icon with text rather than actual value (i.e. true/false for has_active_failures) works consistently. Changed icon and text for our has_active_failures column -preparing it to link to hosts/N/job_events data. chouseknecht 2013-06-14 12:17:31 -04:00
  • 703bc0fca1 Latest UI changes chouseknecht 2013-06-14 10:08:13 -04:00
  • c526f58098 Updates to work with REST framework 2.3.x, update browseable API style to mimic UI. Chris Church 2013-06-14 04:13:34 -04:00
  • e5737cae46 Inventories tab list shows Failures. Added Failures to detail form. chouseknecht 2013-06-13 16:15:39 -04:00
  • 6806619e98 On inventory tree widget, has_active_failures turns node text color to red. Checkbox at bottom filters nodes based on value of has_active_failures. chouseknecht 2013-06-13 16:08:17 -04:00
  • 365a21f103 Added has_active_failures as database field on Inventory, Group and Host models. Chris Church 2013-06-12 23:57:30 -04:00
  • 6557fb33f3 Updated inventory script to only return active groups and active hosts for active inventories. Chris Church 2013-06-12 22:37:25 -04:00
  • 6f43190b2b Fixup makefile Michael DeHaan 2013-06-12 16:13:23 -04:00
  • 614607fd0e Added has_active_failures to Hosts view under Inventory detail. There is now a Failures column. A red dot (icon-circle) displays for hosts where has_active_failures == true, otherwise the column is empty. chouseknecht 2013-06-12 16:12:07 -04:00
  • 3bb0323b02 Applied list search widget changes (dropdown, boolean, int, etc) to related sets search widget. Fixed desc sort order and desc sort icon display for related set page load. Added job status with icon and color styling to Job Templates related jobs. chouseknecht 2013-06-12 14:57:39 -04:00
  • 4ac2a98eda Fixed list generator to display the desc icon when list key has desc attribute. See jobs tab for example. When first loaded, the jobs list is sorted by job id in desc order, so the desc sort icon now displays in the job id column header. chouseknecht 2013-06-12 11:52:10 -04:00
  • e1d714a335 Fixed extra_vars on job_templates and jobs detail pages. No longer attempts to compile string into a JSON object. Assumes user will enter valid JSON or key=value pairs. Updated help text to reflect this and link to ansibleworks.com documentation on --extra-vars parameter. chouseknecht 2013-06-12 11:10:16 -04:00
  • c8c9e62b4c Added YAML support to Host and Group variable data. User can enter variables in either format, UI will parse it and send to API as JSON. Fixed post to /hosts/N/variable_data and /groups/N/variable_data so that JSON is sent as an object rather than a string. chouseknecht 2013-06-11 17:23:08 -04:00
  • 65c8176507 Added tarballs for third-party Python dependencies, updated requirements, added optional django-debug-toolbar support. Chris Church 2013-06-10 21:54:42 -04:00
  • bbdfe8bc46 Minor fix for host has_active_failures field, indentation on custom_filters file. Chris Church 2013-06-10 21:51:34 -04:00
  • 49ca140e30 Set DEBUG back to True chouseknecht 2013-06-10 18:37:58 -04:00
  • 9e9e41db35 Script for building minified javascript using closure compiler chouseknecht 2013-06-10 18:31:17 -04:00
  • cba55a061a Numerous model-related updates and supporing changes, including: - Add variables field on Host/Group models and remove separate VariableData model. - Add data migrations for existing variable data. - Update views, serializers and tests to keep roughly the same API interface for variable data. - Add has_active_failures properties on Group/Host models to provide indication of last job status. - Add job_tags field on JobTemplate/Job models to specify tags to ansible-playbook. - Add host_config_key field to JobTemplate model for use by empheral hosts. - Add job_args, job_cwd and job_env fields to Job model to capture more info from running the job. - Add failed flag on JobHostSummary model. - Add play/task fields on JobEvent model to capture new context variables from callback. - Add parent field on JobEvent model to capture hierarchy of job events. - Add hosts field on JobEvent model to capture all hosts associated with the event (especially useful for parent events in the hierarchy). - Removed existing Tag model, replace with django-taggit instead. - Removed existing AuditLog model, replacement TBD. Chris Church 2013-06-10 17:21:04 -04:00
  • 7b0bbff376 Added Datatables.net style sorting to all lists and related lists chouseknecht 2013-06-07 16:50:07 -04:00
  • e58e80bbad All tables (lists and related lists) hightight current row on hover. Hover over a row and the background turns white. chouseknecht 2013-06-06 19:14:04 -04:00
  • 9a98b4f573 Cleaned up verbosity drop down options to match AC-104. Applied all Job Template changes to Job detail page. chouseknecht 2013-06-06 18:50:45 -04:00
  • 9373fbca61 Inventory clean up. Found a couple bugs when adding existing hosts to a group. chouseknecht 2013-06-06 18:16:13 -04:00
  • 5ca6910612 Dismiss tool tip dialog when escape key is pressed. chouseknecht 2013-06-06 17:50:00 -04:00
  • ca4e85bb09 Added tool tips to job type, forks, limit and verbosity fields on Job Templates detail page. chouseknecht 2013-06-06 17:29:01 -04:00
  • 47595e67f0 On Job Template add page, move slider handle back to default value if Reset button clicked. chouseknecht 2013-06-06 15:06:28 -04:00
  • 93e9c7a24d Created an Angular slider directive to support JQueryUI slider widget. Job Template page now uses a slider for Forks value. User can set the value with the slider or type in a value btwn 0 and 100. Additionally turned verbosity into a drop-down. chouseknecht 2013-06-06 15:01:23 -04:00
  • c7748999d8 Supplied missing labels and button tool-tips on related sets. chouseknecht 2013-06-05 16:25:15 -04:00
  • 933ebbb8b6 Removed Hint from Users tab, since users can now be added directly rather than navigating through the Organizations tab. chouseknecht 2013-06-05 16:17:37 -04:00
  • 5a22f3b955 Applied change to all list controllers to remove success class after page refresh. If the list was previously used to make a selection, there won't be any remnants or reminders of the selection next time the list is visited. chouseknecht 2013-06-05 16:13:25 -04:00
  • 135d4db94b Users can now be added from the Users tab. chouseknecht 2013-06-05 15:02:27 -04:00
  • 69a6fc75fb Moved Credentials related set to the top. The is the one set user can modify, so lets make easier to access. chouseknecht 2013-06-05 10:29:45 -04:00
  • a33d90de83 Added support for button labels and tool tips on related sets. chouseknecht 2013-06-05 10:26:53 -04:00
  • 540ad1ad47 Clicking host name on Inventory detail page now works correctly. Host is displayed in a modal dialog, allowing user to make changes and save. chouseknecht 2013-06-05 09:57:05 -04:00
  • 6dba6bbdb9 Fixed organization lookup on Inventory Edit section of Inventory detail page. chouseknecht 2013-06-04 19:19:44 -04:00
  • 2accb94972 Hosts side of inventory detail page now working through modal dialogs. Fixed pagination on modal list. Test Add/Edit/Delete host buttons. Only piece left is to fix the host name link, which should bring up the Edit dialog. chouseknecht 2013-06-04 19:12:28 -04:00
  • 4575faf831 Tree drop-down menu now works. Right clicking node and selecting menu option now fires modal dialogs. Using same code as buttons near top-right corner of tree. Clean-up code for deleting a node. It now correctly inspects parenet of selected node and uses either /inventory/N/groups or /groups/N/children to POST the disassociate request. chouseknecht 2013-06-04 11:31:45 -04:00
  • ec986f4ebe Fix for root groups to actually show only the groups with no parents. Chris Church 2013-06-04 11:17:23 -04:00
  • a29e60b533 Tree refresh is working for the Group Add and Group Edit buttons. Tree is refreshed and opened back to the previously selected node and the host view is left in the correct state. chouseknecht 2013-06-03 18:05:34 -04:00
  • eca7b3888f Inventory add/edit/delete group buttons now working. Inventory detail form now maintains values independently so common fields such as Name and Description do not get overridden by Group Add/Edit modal dialog. chouseknecht 2013-06-03 12:59:35 -04:00
  • b19e1dd97a Moved inventory detail load procedure from inventory controller to the helper so that it can be called when the detail page first loads and anytime we need to refresh tree data. Working on a way to refresh tree data, re-open previously open nodes and re-select previously active node after add/edit/delete of a group. Any change to tree data should be instantly reflect in the tree in an ajax/async fashion. chouseknecht 2013-06-03 07:08:08 -04:00
  • 9ca489d5ab Inventory UI changes. Added action buttons to tree. Removed All Hosts group from tree (click on Inventory root node to see All Hosts). Added Create/Select buttons to hosts list. Preparing to move group/host views to modal dialog. chouseknecht 2013-05-31 23:02:18 -04:00
  • e121235ba9 Latest inventory detail page modifications. chouseknecht 2013-05-30 18:12:36 -04:00
  • f16f41fc99 Inventory detail page changes. Added accordion. Added custom theme to tree. Fixed tooltips. Added button labels. chouseknecht 2013-05-30 14:57:38 -04:00
  • 4fae801355 Bumped version number, updated settings and playbook to add support for logging via syslog. Chris Church 2013-05-30 01:02:43 -04:00
  • 40dd9b08be Added error handling views and templates, added setting to log request errors to a file. Chris Church 2013-05-28 14:11:19 -04:00
  • e61a966464 Added tooltips to host/group/extra variables using TB popover. Fixed bugs on Inventory detail page causing js errors. Added JSON validation to extra_vars on Job Templates add/edit page. Always grey-out/disable fields on Jobs detail page because upading a Pending job throws a 405 error -will investigate with CC later. chouseknecht 2013-05-27 13:18:15 -04:00
  • 2a0f528954 Added 'Loading...' message to all lists and sublists. chouseknecht 2013-05-26 23:36:54 -04:00
  • 9e519400bc Don't install PyYAML as ansible already will have. Michael DeHaan 2013-05-26 12:47:37 -04:00
  • 95ce3cddf7 Rename directory structure in release package. Michael DeHaan 2013-05-26 11:01:00 -04:00
  • 2947c03adb Add a re-run button to Jobs page. chouseknecht 2013-05-25 00:12:59 -04:00
  • 13ccb6fbdf Add makefile target to build release package, assumes ansible-doc checked out at same level. Michael DeHaan 2013-05-24 19:21:47 -04:00
  • c71a04dfb0 Minor fix to migration cleanup target. Chris Church 2013-05-24 18:12:20 -04:00
  • c0aaff7850 Cleaned up migrations, updated Makefile migrate target to handle this change. Chris Church 2013-05-24 17:55:03 -04:00
  • aa9b4741dc Completed requested changes to Host Summary page. chouseknecht 2013-05-24 13:21:55 -04:00
  • 007db3435d Latest UI changes. More tweaks to related set buttons and styling. chouseknecht 2013-05-24 12:28:34 -04:00
  • ef16ec55f1 On related sets, moved create button near filter widget and added labels to all buttons. chouseknecht 2013-05-24 12:10:03 -04:00
  • fd25d68ffe Fixed login dialog so that it now submits when Enter pressed in password field. Fixed more button more button labels. chouseknecht 2013-05-24 09:55:52 -04:00
  • b4709c5138 Latest UI changes. Add button labels on all pages. chouseknecht 2013-05-24 07:43:06 -04:00
  • 8b919b666f README.md is gone so tweak setup. Michael DeHaan 2013-05-23 13:36:59 -04:00
  • ab0fafa5a7 Some doc updates, don't mention vagrant Michael DeHaan 2013-05-23 13:20:50 -04:00
  • f7b983c807 Added event_display field to job event, with slightly more readable event name. Chris Church 2013-05-23 12:13:13 -04:00
  • 151f02e92c Projects can now be added to a Team and created from the Team tab. chouseknecht 2013-05-23 11:52:45 -04:00
  • ab4115d0e7 Added buttons to top of Job Events, Job Details and Job Host Summary pages to link everything together and provide a Refresh action. root 2013-05-23 11:25:06 -04:00
  • 0cd9f51bf9 Playbook updates after some testing. Chris Church 2013-05-23 04:58:44 -04:00
  • 1ef11155da Added new set of playbooks for deploying to a single-server configuration, including Vagrant configuration for testing. Chris Church 2013-05-23 03:22:16 -04:00
  • d59e2a416f Hello User link now uses /api/v1/me to link to /users/N chouseknecht 2013-05-23 01:25:02 -04:00
  • bdbfcd4b85 Latest UI changes. Related-set key fields now link to the edit/detail page. Job detail page disables correctly. Fixed jobs related set on Job Templates detail page. chouseknecht 2013-05-23 01:07:15 -04:00
  • 3b91d68130 Don't try to use minified JS in production mode (for now). Chris Church 2013-05-22 22:03:19 -04:00
  • 77b823f43f Host name is now on the Job Events page and links to Host detail page. chouseknecht 2013-05-22 18:06:39 -04:00
  • 34994a6736 First pass at Job Hosts Summary page. Added link to host detail page. Need to add link to job->host->events. chouseknecht 2013-05-22 17:53:35 -04:00
  • 45a4ba7743 Fixes to teams/project/organizations/users/credentials navigation and pathing. chouseknecht 2013-05-22 14:19:51 -04:00
  • 91b534c841 Fixed project add and edit pages. chouseknecht 2013-05-22 04:23:42 -04:00
  • fc6545a059 New job events list and detail pages. Fixed boolean search. Added new select search type -used on job status to provide a select list. chouseknecht 2013-05-22 01:37:47 -04:00
  • e137d17964 Updated manifest to include UI static files. Chris Church 2013-05-21 19:40:50 -04:00
  • 903274db3e Removed print statements left in the code. Chris Church 2013-05-21 19:19:46 -04:00
  • 9478d8d532 Updates to setup/requirements, add Makefile target for running tests with coverage. Chris Church 2013-05-21 19:08:46 -04:00
  • aeac739735 Major rename of package from lib to ansibleworks. Chris Church 2013-05-21 18:20:26 -04:00
  • 5133b9a30e Update to production settings to fail if no config found, updates to build script, added Makefile targets for build. Chris Church 2013-05-21 17:39:34 -04:00
  • 53212da149 Group and Host variables working. chouseknecht 2013-05-21 16:13:20 -04:00
  • c238a85581 Added variable data fied to Host detail page. Save/edit work -made changes in the Hosts controller for this. Still need to validate text blob is valid JSON. chouseknecht 2013-05-21 12:57:15 -04:00
  • f5c487aab8 Inventory hosts now appear in All Hosts folder. User not allowed to add hosts outside of a group (i.e. cannot add to All Hosts group). Fixed job template so that a credential can be removed. chouseknecht 2013-05-21 11:27:59 -04:00
  • 06239b4c04 Return passwords_needed_to_start when not provided via POST to start job. Chris Church 2013-05-21 11:21:22 -04:00
  • 14b09dcc1a Update to commands/tests to fix new settings-related issues. Chris Church 2013-05-21 11:20:47 -04:00
  • 7809e94fde Settings updates to support production installation. Chris Church 2013-05-21 09:10:48 -04:00
  • c6e32cde35 Added refresh button to jobs list page chouseknecht 2013-05-21 03:12:25 -04:00