6258 Commits

Author SHA1 Message Date
jaredevantabor
e46cc161fa Merge pull request #398 from jaredevantabor/survey-select2
Surveys: make MC and MS fields disabled while previewing a survey
2015-09-03 10:25:37 -07:00
Jared Tabor
8aa9325e43 removing "Choose a..." option for select2 fields
in form generator
2015-09-03 09:35:49 -07:00
John Mitchell
b38615eff7 fixed duplicate choices from being passed to select2 2015-09-03 12:19:42 -04:00
Matthew Jones
5f6f16b5ff Rev version to 2.4.0 2015-09-03 09:44:20 -04:00
James Laska
55e7458ebf Merge pull request #400 from jlaska/setup_install_ansible
Attempt to install ansible in setup.sh
2015-09-03 09:18:22 -04:00
Jared Tabor
b5392316c9 removing dropDownAdapter 2015-09-02 10:53:13 -07:00
Chris Meyers
ee3de2b209 Merge pull request #397 from chrismeyersfsu/fix-python_paths
fixes executing processes with correct PYTHONPATH will pickup .pth files
2015-09-02 09:20:23 -04:00
Chris Meyers
9f33127919 fixes jenkins failures
* include requirements.txt in requirements_jenkins.txt
* include requirements.txt in requirements_dev.txt
* alter Makefile to NOT call the requirements rule in the requirements_*
rules. Again, this is now handled by the -r requirements.txt in the
respective _*.txt file.
* install jenkins requirements "globally" (in the virtualenv)
2015-09-02 08:23:11 -04:00
Jared Tabor
a5731a5452 Removing search field on select2 fields used in inventory sources tab.
This also fixes the behavior when the user hits escape while the select2 drop down menu is visible.
2015-09-01 17:49:23 -07:00
Chris Meyers
a93babcbaf Merge pull request #396 from chrismeyersfsu/fix-configure_py2.6
remove reading inventory file in config process
2015-09-01 20:32:39 -04:00
Matthew Jones
c37716a2e7 Proper flake8 fix 2015-09-01 18:35:12 -04:00
Chris Meyers
1f06a95c40 fixes executing processes with correct PYTHONPATH will pickup .pth files 2015-09-01 18:30:39 -04:00
Jared Tabor
5107100166 Surveys: make MC and MS fields disabled while previewing a survey 2015-09-01 15:14:07 -07:00
Matthew Jones
f0a23b7ed3 Proper flake8 fix 2015-09-01 16:15:39 -04:00
Matthew Jones
4a5111308f Fix flake8 warning from tests 2015-09-01 15:23:35 -04:00
Bill Nottingham
cb2a0a0f69 clean up dups 2015-09-01 09:56:06 -04:00
James Laska
3ecfb0ce01 Include DIST_FULL in the offline symlink 2015-08-31 20:43:44 -04:00
Matthew Jones
09f4c9fbbe Fixed job redaction for projects and unit tests 2015-08-31 16:24:38 -04:00
Matthew Jones
bd3faea671 Fix path check in start_development docker script 2015-08-31 15:15:49 -04:00
James Laska
2b5624daa2 Improve RPM_DIST regular expression 2015-08-31 13:16:59 -04:00
James Laska
797aa9b5d8 Cleanup of Makefile offline-tar-build target 2015-08-31 13:04:11 -04:00
James Laska
597d37dd25 Fix typo in Makefile 2015-08-31 12:52:12 -04:00
James Laska
23b3b3fca6 Attempt to simplify offline Makefile target 2015-08-31 12:01:15 -04:00
jaredevantabor
4512f72dc0 Merge pull request #395 from jaredevantabor/404-session-end
catch possible 404 error
2015-08-28 14:07:22 -07:00
Matthew Jones
7d2eec0974 Merge pull request #385 from AlanCoding/devel
add whitespace in API responses about survey rejection
2015-08-28 17:06:54 -04:00
James Laska
50ff81388c Merge pull request #394 from wenottingham/release_2.3
Update license audit toolset and license list for new requirements.txt.
2015-08-28 16:31:57 -04:00
Jared Tabor
36e63862e5 catch possible 404 error
on dashboard
2015-08-28 13:15:39 -07:00
Bill Nottingham
ba2a2d17d7 Update license audit toolset and license list for new requirements.txt. 2015-08-28 15:48:54 -04:00
Matthew Jones
2f39393cf3 Implement fact receiver thread worker
Optionally allow processing of fact receiver messages in a worker
thread.  This works around an issue where data could take a while to
page into Mongo and cross the zmq socket timeout.
2015-08-28 10:59:52 -04:00
John Mitchell
553a3c5af3 fixed title capitalization of activity stream breadcrumb 2015-08-28 10:36:26 -04:00
jlmitch5
29f6625598 Merge pull request #391 from ansible/no_clearing_of_playbook_on_different_proj
made playbooks that are similar across branches not clear out the form input
2015-08-28 10:14:42 -04:00
James Laska
64b65edf2c Handle /bin/sh as the default shell
Fixes a build issue on Ubuntu where the `source` function isn't available
within `/bin/sh` (ubuntu).
2015-08-27 11:18:38 -04:00
James Laska
97d5b7e11b Merge pull request #390 from jlaska/build_requirements
Gather requirements during distro package build
2015-08-27 09:54:41 -04:00
Sandra Wills
7fc85db489 Merge pull request #393 from docschick/docschick-tower-devel
fixed a typo, mumber to number
2015-08-27 09:39:17 -04:00
Sandra Wills
453bbf64e9 fixed a typo, mumber to number
https://github.com/ansible/ansible-tower/blob/devel/awx/main/models/inventory.py#L63
typo fix from mumber to number
2015-08-27 09:36:12 -04:00
James Laska
265802322d Add a new default build target
Also override dh_auto_clean to avoid removing the awx/ui/dist during DEB
package builds.

Update the `.spec` file to call the same Makefile targets used by in `debian/rules`.
2015-08-26 21:34:15 -04:00
James Laska
6512c76564 Ignore offline TAR build directory 2015-08-26 21:34:14 -04:00
James Laska
51e2120886 Properly handle namespace packages (oslo, dogpile)
Using `site.addsitedir()` handles namespace packages, where the traditional
`sys.path.insert` does not.  Kudos to Chris Meyers for this discovery.
2015-08-26 21:33:57 -04:00
John Mitchell
e15a25fc46 made playbooks that are similar across branches not clear out the form input 2015-08-26 21:25:51 -04:00
jaredevantabor
62391cb864 Merge pull request #389 from jaredevantabor/scheduler-fix
Scheduler fixes
2015-08-26 18:02:50 -07:00
John Mitchell
f44cc5f729 fixed playbooks from not displaying on type-completed project 2015-08-26 20:00:51 -04:00
John Mitchell
efa306d1f3 hide priv esc fields and clear their values out when no priv escalation is chosen 2015-08-26 18:56:49 -04:00
James Laska
32a4a941e0 Gather pip requirements at package build time
Previously, requirements were gathered prior to the `sdist` target, and
included in the sdist tarball.  As some requirements are compiled, this caused
problems where the compiled dependencies were linked against the wrong
libraries.  This pull-request addresses that by moving the requirements
gathering into the `dh_prep` and `%build` steps of the packaging process.
2015-08-26 12:13:59 -04:00
Jared Tabor
8a583a8202 Changing the description in scheduler for minutely and hourly frequency 2015-08-25 22:30:47 -07:00
Matthew Jones
549809dfa4 Fix chunked stdout display issue
* We removed stdout redaction from jobs and job templates but only for
  the full stdout dump, this extends it to the limited display also
2015-08-25 16:05:03 -04:00
James Laska
2e6845769a Merge pull request #388 from tgerla/sosreport-fixes
Fix up sosreport to remove some sensitive information and add some us…
2015-08-25 15:20:45 -04:00
Tim Gerla
13ca614a14 Fix up sosreport to remove some sensitive information and add some useful things
- don't include SECRET_KEY
- don't include SSL certs
- add /etc/ansible
- fix the pip freeze command
- add a dir listing of /var/lib/awx/job_status (but not the actual stdouts)
2015-08-25 15:04:19 -04:00
John Mitchell
106718fc20 fixed callback fields from always displaying on jt edit 2015-08-24 15:41:34 -04:00
Matthew Jones
896b0e18f3 Merge remote-tracking branch 'chrismeyers/feature-configure_offline' into release_2.3
* chrismeyers/feature-configure_offline:
  configure support inventory file
  retain existing behavior with added --inventory-file param
2015-08-24 14:38:30 -04:00
jlmitch5
d2423543ec Merge pull request #387 from jlmitch5/give_controllers_specific_names
give controllers specific names
2015-08-24 13:33:47 -04:00