From fc2238f69047e19d526ecef76d2d7f19bf168245 Mon Sep 17 00:00:00 2001 From: George Mauer Date: Thu, 8 Jan 2015 23:12:52 -0600 Subject: [PATCH 1/4] ajax: documented new post and get config objecct interfaces from PR 1999 --- entries/jQuery.get.xml | 6 ++++++ entries/jQuery.post.xml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/entries/jQuery.get.xml b/entries/jQuery.get.xml index 396e58b0..2c041f57 100644 --- a/entries/jQuery.get.xml +++ b/entries/jQuery.get.xml @@ -2,6 +2,12 @@ jQuery.get() + 2.2 + + A set of key/value pairs that configure the Ajax request. All properties except for url are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) for a complete list of all settings. Type will automatically be set to POST + + + 1.0 A string containing the URL to which the request is sent. diff --git a/entries/jQuery.post.xml b/entries/jQuery.post.xml index c066cbf4..f7a056c2 100644 --- a/entries/jQuery.post.xml +++ b/entries/jQuery.post.xml @@ -1,6 +1,12 @@ jQuery.post() + + 2.2 + + A set of key/value pairs that configure the Ajax request. All properties except for url are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) for a complete list of all settings. Type will automatically be set to POST + + 1.0 From f9ce9f00b8a2cd1620efd5ca72acf5055e40d04c Mon Sep 17 00:00:00 2001 From: George Mauer Date: Sun, 11 Jan 2015 22:04:03 -0600 Subject: [PATCH 2/4] Update jQuery.get.xml --- entries/jQuery.get.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entries/jQuery.get.xml b/entries/jQuery.get.xml index 2c041f57..56ad8974 100644 --- a/entries/jQuery.get.xml +++ b/entries/jQuery.get.xml @@ -4,7 +4,7 @@ 2.2 - A set of key/value pairs that configure the Ajax request. All properties except for url are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) for a complete list of all settings. Type will automatically be set to POST + A set of key/value pairs that configure the Ajax request. All properties except for url are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) for a complete list of all settings. The type option will automatically be set to POST. From d460f744a9ce56aca7ac36b68a8a81f3825a9b87 Mon Sep 17 00:00:00 2001 From: George Mauer Date: Sun, 11 Jan 2015 22:05:18 -0600 Subject: [PATCH 3/4] pr review fixup --- entries/jQuery.post.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entries/jQuery.post.xml b/entries/jQuery.post.xml index f7a056c2..2300cbe7 100644 --- a/entries/jQuery.post.xml +++ b/entries/jQuery.post.xml @@ -2,9 +2,9 @@ jQuery.post() - 2.2 + 3.0 - A set of key/value pairs that configure the Ajax request. All properties except for url are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) for a complete list of all settings. Type will automatically be set to POST + A set of key/value pairs that configure the Ajax request. All properties except for url are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) for a complete list of all settings. Type will automatically be set to POST. From 712d28fab3bd4fe53ae0c8ce6dbdefc0160296f8 Mon Sep 17 00:00:00 2001 From: George Mauer Date: Sun, 11 Jan 2015 22:06:12 -0600 Subject: [PATCH 4/4] set correct version on new $.get method --- entries/jQuery.get.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entries/jQuery.get.xml b/entries/jQuery.get.xml index 56ad8974..92c466c4 100644 --- a/entries/jQuery.get.xml +++ b/entries/jQuery.get.xml @@ -2,7 +2,7 @@ jQuery.get() - 2.2 + 3.0 A set of key/value pairs that configure the Ajax request. All properties except for url are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) for a complete list of all settings. The type option will automatically be set to POST.