John Mitchell
8c2b9905d1
fix config forms from having save button disabled when no license is given
2017-09-14 13:59:58 -04:00
Jared Tabor
bd5846d143
Merge pull request #95 from Zokormazo/fix-footer-blocking
...
Fix footer blocks visibility of items
2017-09-14 10:58:15 -07:00
Matthew Jones
39994186df
Improve script endpoint performance by removing forced ordering
2017-09-14 13:05:31 -04:00
mabashian
549737405b
Fixed multi credential service unit test failures
...
Signed-off-by: mabashian <mabashia@redhat.com>
2017-09-14 09:14:27 -04:00
Matthew Jones
a5ade10bff
Merge pull request #162 from matburt/force_awxweb_hostname
...
Force awxweb hostname
2017-09-14 05:32:48 -07:00
Chris Meyers
28a26e6e81
Merge pull request #408 from chrismeyersfsu/7500_process_workflow_cornercase_for_user_capability
...
memoize workflow license feature check
2017-09-14 08:29:41 -04:00
Julen Landa Alustiza
7dc7f7815a
Replace static footer with an always down non static footer
...
Hide footer on login screen
Signed-off-by: Julen Landa Alustiza <julen@zokormazo.info>
2017-09-14 08:33:34 +02:00
Matthew Jones
e7ce2fcc8d
Merge pull request #149 from gdahlm/devel
...
Fix issue with python virtual environments and localhost.
2017-09-13 21:02:22 -07:00
Matthew Jones
25c457f578
Force awxweb hostname
...
For some reason some docker deployments seem not to be able to resolve
the awxweb host from the awx task host at least when started from the
playbook. This hopefully provides a resolution for that
2017-09-13 23:53:23 -04:00
Wayne Witzel III
7c7c7db345
Merge pull request #161 from wwitzel3/devel
...
update social auth strategy to have fixes from social-app-django
2017-09-13 23:00:41 -04:00
Jared Tabor
acbf9f517b
Merge pull request #409 from jaredevantabor/socket-fix
...
move socketPromise.resolve() until handshake message is received
2017-09-13 18:55:39 -07:00
Jared Tabor
9cf683ea75
move socketPromise.resolve() until handshake message is received
...
instead of happening after the socket.onopen event.
2017-09-13 18:49:15 -07:00
Wayne Witzel III
5cc0552b05
remove AWXDjangoStrategy in the future
2017-09-13 21:28:26 -04:00
Wayne Witzel III
f44adb98cb
update social auth strategy to have fixes from social-app-django
2017-09-13 21:16:10 -04:00
mabashian
f90771ee1a
More fixes for JT admin edit use cases
...
Signed-off-by: mabashian <mabashia@redhat.com>
2017-09-13 16:48:04 -04:00
Matthew Jones
e7eeb86709
Merge pull request #154 from snahelou/devel
...
add proxy support
2017-09-13 12:37:21 -07:00
Greg Considine
93927717c8
Merge pull request #403 from gconsidine/ui/fix/host-search-with-spaces
...
Add support for quoted values containing spaces in search
2017-09-13 14:34:05 -04:00
Ryan Petrello
761e42c5d6
Merge pull request #407 from ryanpetrello/fix-7568
...
build extra_cred related urls for jobs and JTs a less volatile way
2017-09-13 13:42:49 -04:00
Chris Meyers
1ce3c7937b
use request response cache for license checks
2017-09-13 13:34:39 -04:00
Ryan Petrello
d3df5de0ce
build extra_cred related urls for jobs and JTs a less volatile way
...
see: https://github.com/ansible/ansible-tower/issues/7635
2017-09-13 13:28:26 -04:00
Matthew Jones
ca094f0e86
Merge pull request #156 from swills/portable-get_system_task_capacity
...
Make get_system_task_capacity portable
2017-09-13 10:19:12 -07:00
Michael Abashian
19d838ff49
Merge pull request #399 from mabashian/7588-deleted-inv-source-message
...
Deleted custom inv script on source update
2017-09-13 13:13:14 -04:00
NAHELOU SÉBASTIEN
6cd77dc6b8
add proxy support
2017-09-13 18:27:36 +02:00
Steve Wills
769ee8ac54
Remove unnecessary int coercion
...
Signed-off-by: Steve Wills <steve@mouf.net>
2017-09-13 11:55:44 -04:00
mabashian
28fa5077d5
Fixed jt admin edit bug
...
Signed-off-by: mabashian <mabashia@redhat.com>
2017-09-13 11:38:56 -04:00
Steve Wills
f0cf325831
Add whitespace around arithmetic operator
...
Signed-off-by: Steve Wills <steve@mouf.net>
2017-09-13 11:37:57 -04:00
Steve Wills
b8651bfd72
Make get_system_task_capacity portable
...
Signed-off-by: Steve Wills <steve@mouf.net>
2017-09-13 11:15:09 -04:00
Matthew Jones
7e754e20ae
Merge pull request #404 from ansible/sys_auditor_can_set_pass
...
Allow System Auditor to set password
2017-09-13 06:32:10 -07:00
Matthew Jones
2dda863baf
Merge pull request #155 from ansible/add_missing_svn
...
Add missing subversion to image
2017-09-13 06:27:47 -07:00
Matthew Jones
10a3959f52
Merge pull request #400 from ansible/taskman_dep_update_improve
...
Fix an issue where dependent updates weren't sorted correctly
2017-09-13 06:17:56 -07:00
Matthew Jones
309577f3ef
Add missing subversion to image
2017-09-13 08:57:14 -04:00
Greg Dahlman
39756e6dc4
Fix issue with python virtual environments and localhost.
2017-09-12 18:45:18 -07:00
Ryan Petrello
66d78bca8a
Merge pull request #405 from ryanpetrello/fix-7568
...
defer UnifiedJob.result_stdout_text for improved performance
2017-09-12 19:04:37 -04:00
Ryan Petrello
bd42dfe474
defer UnifiedJob.result_stdout_text for improved performance
...
result_stdout_text can be _very_ large - some customers have 5MB+ per
job; querying for this in list contexts results in _very_ large datasets
being read from the database which is very slow. It's very uncommon to
actually need this column outside of the context of job details, so
defer it.
see: https://github.com/ansible/ansible-tower/issues/7568
2017-09-12 16:35:49 -04:00
Wayne Witzel III
50e3a9dee6
Merge pull request #142 from wwitzel3/devel
...
Update ISSUES.md and bot metadata
2017-09-12 16:19:38 -04:00
Ryan Petrello
bd088d31ca
Merge pull request #334 from ryanpetrello/fix-7506
...
add process isolation to project updates
2017-09-12 16:15:37 -04:00
Matthew Jones
d308946360
Allow system auditor to set their own password
2017-09-12 16:07:47 -04:00
jlmitch5
8a282030a1
Merge pull request #401 from jlmitch5/fixSyncAll
...
always start sync all updates
2017-09-12 15:51:09 -04:00
Shane McDonald
de2a77adec
Merge pull request #140 from eikef/delegate_sdist_localhost
...
Make sure sdist builder image and AWX distribution are built locally
2017-09-12 15:34:35 -04:00
gconsidine
87eab79f70
Add support for quoted values containing spaces in search
2017-09-12 14:57:07 -04:00
Matthew Jones
9827a4b758
Merge pull request #129 from stephenpc/bugfix/postgres_container_perms
...
Update selinux context for postgres volume
2017-09-12 11:49:13 -07:00
Jared Tabor
18fa0d5057
Merge pull request #402 from jaredevantabor/org-save-error-catching
...
catching org save error
2017-09-12 11:24:24 -07:00
Wayne Witzel III
c2b4756a4f
Merge pull request #10 from wwitzel3/botdoc
...
Update ISSUES.md with bot doc
2017-09-12 14:07:18 -04:00
Wayne Witzel III
8e22bc2ce5
Update ISSUES.md with bot doc
2017-09-12 13:58:35 -04:00
Wayne Witzel III
2882ac4da8
extend api maintainers folder to main
2017-09-12 13:40:17 -04:00
Wayne Witzel III
b0d7a16f49
Add docs and PR labels
2017-09-12 13:37:57 -04:00
Jared Tabor
ae5b309de0
catching org save error
...
the org PUT was missing a .catch, however the edit controller already had it.
2017-09-12 10:21:52 -07:00
Eike Frost
96156f148e
Make sure sdist builder image and AWX distribution are built on localhost even when deploying the final image remotely
...
Signed-off-by: Eike Frost <ei@kefro.st>
2017-09-12 19:04:15 +02:00
John Mitchell
5009f283d5
always start sync all updates
2017-09-12 12:01:06 -04:00
Wayne Witzel III
c695234ed1
Merge pull request #134 from wwitzel3/devel
...
Add PR template and tweak `make VERSION` output to be pastable
2017-09-12 11:32:41 -04:00