summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Updated all vendored third-party packages.Chris Church2013-11-15767-28742/+45553
|
* AC-636 Fix existing projects with scm_type=null to always use empty string. ↵Chris Church2013-11-149-26/+855
| | | | Update validation and tests to ensure None gets automatically coerced to an empty string on saving a project.
* AC-633 js error fixed.Chris Houseknecht2013-11-131-10/+0
|
* AC-633 fixed a sort of unrelated js error. The capitalize filter directive ↵Chris Houseknecht2013-11-131-6/+8
| | | | attempted to act on a 'null' input error. Added a test to ignore empty/null input.
* AC-633 Fixed 'hast' typo.Chris Houseknecht2013-11-131-1/+1
|
* AC-617 changed callback generation icon to a magic wand, which will ↵Chris Houseknecht2013-11-131-1/+1
| | | | hopefully satiate jlaska.
* AC-627 Fixed password/ssh_password collision in Credentials.js form. This ↵Chris Houseknecht2013-11-131-1/+1
| | | | was also fixed in auditlog branch.
* AC-628 applied credential changes made in add controller to edit controller ↵Chris Houseknecht2013-11-131-1/+10
| | | | so that credential/cloud_credential lookups display context-aware credential lists.
* Moved credentials in tab order. It now follows teams and precedes projects. ↵Chris Houseknecht2013-11-132-3/+3
| | | | Based on a suggestion from jlaska.
* AC-609 Fixed issue with help button not displaying correctly on 'select' ↵Chris Houseknecht2013-11-131-4/+4
| | | | pages where user can pick an existing object (i.e. users, credentials, etc) to add to a parent object.
* AC-502 all links for Inventory widget on home page now work. Modified ↵Chris Houseknecht2013-11-128-70/+169
| | | | responding controllers to process all search parameters. Fixed Hosts and Groups links in the Summary widget. Added ability to edit host using modal dialog from /home/hosts page.
* AC-502 links are now correct on inventory home page widget.Chris Houseknecht2013-11-121-19/+34
|
* AC-502 home page widgets should now show 0 rather than ' ' for empty values.Chris Houseknecht2013-11-123-6/+17
|
* AC-502 added group ID as a parameter on 'job failure' links from ↵Chris Houseknecht2013-11-123-13/+29
| | | | /home/hosts. This causes the tree to load with the appropriate group selected.
* AC-502 Finally figured out how to fix the awToolTip directive so that it ↵Chris Houseknecht2013-11-118-46/+82
| | | | watches a variable for tool tip text changes and updates the tool tip text. Pass in the variable name using badgeTipWatch. Used on home/hosts page and inventory/N/hosts page when toggling the enabled flag.
* AC-502 Fixed links on home page status widget. Added home/hosts page.Chris Houseknecht2013-11-117-47/+206
|
* Added inventory count back into the 'job status' widget on home page. ↵Chris Houseknecht2013-11-111-6/+17
| | | | Inventory, groups and hosts counts are there, but links don't quite work yet.
* Credentials: form save routine is almost identical between Add and Edit ↵Chris Houseknecht2013-11-112-125/+95
| | | | controllers. Combined into one common routine that both controllers can use and moved to helpers/Credentials.js. Just some needed tidying.
* Merge pull request #6 from tgerla/apacheMichael DeHaan2013-11-102-4/+2
|\ | | | | Make our vhost server names match everything, not just localhost
| * Make our vhost server names match everything, not just localhos.Tim Gerla2013-11-102-4/+2
|/
* Fixed parent container of activity stream setting the min-height value. This ↵Chris Houseknecht2013-11-083-5/+15
| | | | keeps the activity stream from overlapping the footer. Fixed groups page edit to not clear/empty the credential_name field.
* AC-614 credential lookup now narrows choices based on specific source. So if ↵Chris Houseknecht2013-11-081-55/+12
| | | | source is 'ec2' only show 'aws' credentials.
* AC-616 Fixed date warning vs. date expired message. The CheckLicense routine ↵Chris Houseknecht2013-11-081-2/+11
| | | | now looks for date_expired flag.
* First iteration of Activity Stream. Added Home/Groups page. Increased icon ↵Chris Houseknecht2013-11-0825-101/+1204
| | | | size for icon-only buttons. Dashboard jobs widget- group and job links now work. Closed AC-621, AC-618.
* AC-589 Update host enabled flag from inventory import.Chris Church2013-11-084-22/+78
|
* Refactored models into separate files.Chris Church2013-11-076-2310/+2504
|
* AC-612 Return appropriate status code for server errors. Catch ↵Chris Church2013-11-074-5/+21
| | | | IntegrityError via the API and return a 400 response with error message instead of server error.
* AC-615 Handle Rackspace inventory import when source_regions is empty string.Chris Church2013-11-072-1/+8
|
* AC-543 Removed comment print statements.Chris Church2013-11-071-2/+0
|
* AC-543 Add credential model validation for unique constraint with nullable ↵Chris Church2013-11-072-3/+65
| | | | fields.
* AC-595 for form/list definitions using \{\{ \}\} replacement variables in ↵Chris Houseknecht2013-11-062-2/+2
| | | | the title, include the capitalize filter.
* AC-570 Added host enabled flag on Hosts page, allowing one-click editing for ↵Chris Houseknecht2013-11-067-53/+130
| | | | manually managed hosts. Fixed one more bug with prepending '*' to labels of required fileds.
* Jobs list on Job Templates detail page now closely matches the Jobs tab. ↵Chris Houseknecht2013-11-054-22/+49
| | | | Status looks the same, is clickable and offers matching tooltip.
* AC-563 license check now responds to date_expired and date_warning flags. ↵Chris Houseknecht2013-11-052-2/+6
| | | | Prior to this it treated date_warning as if the date had expired.
* AC-559 Changed reset filter to clear the search and remove search keys from ↵Chris Houseknecht2013-11-051-9/+3
| | | | the URL displayed in the browser. Removing search keys from URL requires resetting window.location, which does to a page refresh. O'well.
* AC-536 No longer dissaociating hosts from /inventories/N/groups, so no more ↵Chris Houseknecht2013-11-052-20/+25
| | | | cases where dragging-n-dropping groups results in lost hosts. Fixed tree styling to better align nodes.
* AC-608 Fixed form generator's ability to find labels related to rquired ↵Chris Houseknecht2013-11-051-8/+8
| | | | fields and add CSS class that prepends label text with '*'.
* AC-607 Fixed parsing of extra_vars on job_template. '' was not being ↵Chris Houseknecht2013-11-051-1/+2
| | | | recognized as !== stringified JSON.
* Set default config.js timeout to 1800 seconds.Chris Houseknecht2013-11-051-1/+1
|
* AC-471 Added back client session timeout. Fixed Rest service library to ↵Chris Houseknecht2013-11-0511-93/+238
| | | | bubble up expired session and invalid token errors via promise object, enabling correct error handling. Now tracking last URL in session cookie and returning user to last URL after successful login.
* AC-606 Fix manifest to include API templates that were moved.Chris Church2013-11-051-1/+1
|
* Moved API code into separate Django app.Chris Church2013-11-0461-1546/+1553
|
* Added collapsible help panel to Credential detail page for Kind. Added auto ↵Chris Houseknecht2013-11-043-26/+69
| | | | collapse/expand based on whether or not a kind has been selected.
* Fix broken credentials test.Chris Church2013-11-041-2/+2
|
* Fix broken migration.Chris Church2013-11-041-5/+0
|
* AC-403 changed Host add/update to stringify variable data and include it ↵Chris Houseknecht2013-11-041-29/+18
| | | | directly in the Post or Put operation, bypassing use of host/N/variables. Now host names can include a :port.
* Fixed home page to work with new Utilities.GetChoices, which is used to get ↵Chris Houseknecht2013-11-043-26/+43
| | | | select options from the API.
* Fixed form validation issues on Projects detail for manual projects. When ↵Chris Houseknecht2013-11-042-1/+8
| | | | editing an existing project, local_path value was not being set, even though it diplayed properly. Changed local_path from array of strings to array of objects. Now local_path values are sorted and the correct object in the list is selected.
* Fixed form validation issues on Projects detail for manual projects. When ↵Chris Houseknecht2013-11-046-125/+98
| | | | editing an existing project, local_path value was not being set, even though it diplayed properly. Changed local_path from array of strings to array of objects. Now local_path values are sorted and the correct object in the list is selected.
* Fixed form-generator and awRequiredWhen directive to not overlap when ↵Chris Houseknecht2013-11-0412-80/+276
| | | | setting * on required field labels. Fixed job submission to work with new cloud credential implementation.