1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-30 13:55:31 +03:00
Commit Graph

3564 Commits

Author SHA1 Message Date
Jared Tabor
2a556ecab6 removing extra socket connection call in auth
this line was causing the socket connection to happen before the user logs in after a session timeout
2015-01-30 11:48:45 -05:00
Matthew Jones
b73c7ce41b Merge pull request #48 from matburt/upgrade_vendored_packages
Upgrade vendored packages
2015-01-30 11:12:32 -05:00
Matthew Jones
bd542bc336 Update some of the dev requirements stuff 2015-01-30 10:52:35 -05:00
Chris Meyers
c8f7e781b1 Merge pull request #51 from chrismeyersfsu/improvement-stdout_sensitive_data_removal
added uri redaction to stdout
2015-01-30 10:51:45 -05:00
Chris Meyers
d326aa181e added uri redaction to stdout 2015-01-30 10:18:53 -05:00
Jared Tabor
7408387826 XSS character escaping for tooltips
I've added character escaping for tooltips to avoid XSS security breaches
2015-01-29 16:19:40 -05:00
Jared Tabor
71eaa5aa2a XSS character escaping for activity stream
The activity stream widget needed the XSS character escaping
2015-01-29 15:26:07 -05:00
James Laska
ea0b39859b Enable django_jenkins flake8 reporting
Also exclude awx/ui from pep8 runs.
2015-01-29 13:56:04 -05:00
Matthew Jones
a8516c4ede Upgrade keyring to 4.1 2015-01-29 13:09:26 -05:00
Matthew Jones
692dcc1317 Upgrade Markdown to 2.5.2 2015-01-29 13:04:30 -05:00
Matthew Jones
6c65ba826d Upgrade python dateutil to 2.4.0 2015-01-29 12:55:37 -05:00
Matthew Jones
48a7b5f80e Upgrade six to 1.9.0 2015-01-29 12:41:26 -05:00
Matthew Jones
32b614fcc4 Upgrade requests to 2.5.1 2015-01-29 12:37:56 -05:00
Matthew Jones
9f5f795097 Update README indicating pytz version number 2015-01-29 12:33:43 -05:00
Matthew Jones
6712388b23 Upgrade pytz to 2014.10 2015-01-29 12:32:31 -05:00
Matthew Jones
6abca24c12 Upgrading setuptools (and related modules) to 12.0.5 2015-01-29 12:28:44 -05:00
Matthew Jones
d2c46d015b Update azure package to 0.9.0 2015-01-29 12:13:53 -05:00
Matthew Jones
18e7541f3b More sanity checking on eula_accepted POST property 2015-01-29 11:55:42 -05:00
Jared Tabor
2cc84f8bdd XSS fix: serialize survey question default answer
For the XSS issues that we found, I am serializing the default answers now to make sure all appropriate characters are escaped.
2015-01-29 11:22:32 -05:00
Chris Meyers
c7006d91b2 Merge pull request #47 from chrismeyersfsu/fix-project_update_parent_instance
always save parent
2015-01-29 09:38:10 -05:00
Chris Meyers
ece59c31e9 always save parent 2015-01-29 09:34:43 -05:00
Matthew Jones
457555265a Check data type on post for license 2015-01-28 16:38:52 -05:00
Jared Tabor
0d8a2a0d82 Permissions page -> JT 'Create'
The permissions page, when saved with 'Create' JT permissions wouldn't re-fill the form correctly when the user renavigates to the edit form page for that permission.
2015-01-28 11:02:09 -05:00
Matthew Jones
ffe0d4a5d0 Handle some more boolean types in our custom boolean converter 2015-01-28 10:21:14 -05:00
Chris Meyers
10f222e48f Merge pull request #46 from chrismeyersfsu/fix-child_parent_status_propogation
did not previously translate project update parent instance correctly
2015-01-28 10:17:05 -05:00
Chris Meyers
7b4e2953a6 did not previously translate project update parent instance correctly 2015-01-28 10:11:10 -05:00
jlmitch5
acb061f0be Merge pull request #41 from ansible/add_cmd_host_event_list
Adding command and warning displays in Event Detail modals
2015-01-28 09:45:19 -05:00
Chris Meyers
fc858af328 Merge pull request #45 from chrismeyersfsu/fix-variable_name_not_quoted
forgot to put quotes around a key name
2015-01-28 07:46:20 -05:00
Chris Meyers
fc552a76b7 forgot to put quotes around a key name 2015-01-28 07:45:47 -05:00
Jared Tabor
1123baafe7 EULA Update Submit button ngdisable
Added ng-disabled to make submit button on EULA update disabled if checkbox AND json editor are filled out by user.
2015-01-27 22:35:38 -05:00
Jared Tabor
96ae4baced Adding EULA text for fresh Tower install
The EULA text needed to be added for when a new user needs to input a tower license for the first time.
2015-01-27 17:54:42 -05:00
jaredevantabor
ae8b712723 Merge pull request #44 from ansible/selinium_pop_over
Adding id's to the various parts of the tooltip
2015-01-27 16:38:50 -05:00
John Mitchell
f7d027d88a Adding id's to the various parts of the tooltip to help the qa team with selinium testing 2015-01-27 16:30:04 -05:00
Matthew Jones
12697ad982 Remove a pointless print statement 2015-01-27 16:15:14 -05:00
John Mitchell
0f24ed954c using join instead of the for loop 2015-01-27 16:15:13 -05:00
Matthew Jones
02b31674c2 Fix up some serious issues posting new surveys and deleting them by
non-super users.   Also fix up some issues checking can_change for job
templates for operations like PATCH where not all of the data points
will be submitted
2015-01-27 16:15:13 -05:00
Chris Meyers
e09436ee0c inventory_import behave more like ansible
```
mkdir inv
echo foo > inv/hosts
mkdir inv/host_vars
touch inv/host_vars/foo
touch inv/host_vars/foo.yml
```

```
ansible -i ./inv -c local -m ping all
```

```
tower-mange inventory_import --inventory-id=1 ./inv
```

The tower command above now throws an error similar to ansible:

`Multiple variable files found. There should only be one.`
2015-01-27 16:15:13 -05:00
Jared Tabor
280126310a Adding filter on portal jobs for user/team
Feature request from Bill for the jobs view of portal mode to be filterable for users/teams
2015-01-27 16:15:13 -05:00
James Laska
77c76bece1 Disable SSLv3 in apache config
Fixes: https://trello.com/c/BGy5voWf
2015-01-27 16:15:13 -05:00
James Laska
7728c720db Mark eula_accepted as new to 2.1.1 2015-01-27 16:15:13 -05:00
Chris Meyers
85743d2250 fixed inventory source update # license hosts check 2015-01-27 16:15:12 -05:00
Matthew Jones
93de3f9a73 Fix up an issue posting eula with the license to the config endpoint 2015-01-27 16:14:15 -05:00
Matthew Jones
20910e0e95 Fix up some serious issues posting new surveys and deleting them by
non-super users.   Also fix up some issues checking can_change for job
templates for operations like PATCH where not all of the data points
will be submitted
2015-01-27 15:12:58 -05:00
Chris Meyers
6fba494692 Merge pull request #43 from chrismeyersfsu/improvement-inventory_import_more_like_ansible
inventory_import behave more like ansible
2015-01-27 15:11:13 -05:00
Chris Meyers
cfb56c25a0 inventory_import behave more like ansible
```
mkdir inv
echo foo > inv/hosts
mkdir inv/host_vars
touch inv/host_vars/foo
touch inv/host_vars/foo.yml
```

```
ansible -i ./inv -c local -m ping all
```

```
tower-mange inventory_import --inventory-id=1 ./inv
```

The tower command above now throws an error similar to ansible:

`Multiple variable files found. There should only be one.`
2015-01-27 14:56:03 -05:00
Jared Tabor
582bca474c Adding filter on portal jobs for user/team
Feature request from Bill for the jobs view of portal mode to be filterable for users/teams
2015-01-27 14:31:28 -05:00
James Laska
f255f39915 Disable SSLv3 in apache config
Fixes: https://trello.com/c/BGy5voWf
2015-01-27 13:18:29 -05:00
James Laska
dc09fc5ad1 Mark eula_accepted as new to 2.1.1 2015-01-27 13:12:35 -05:00
Matthew Jones
41d294c101 Merge pull request #40 from chrismeyersfsu/fix-inventory_update_license_expired
fixed inventory source update # license hosts check
2015-01-27 10:50:04 -05:00
Chris Meyers
76ad9720dd fixed inventory source update # license hosts check 2015-01-27 08:58:30 -05:00