From 9da63b9568a8d4751fdf4fbc06322b781211191e Mon Sep 17 00:00:00 2001 From: tjohns Date: Tue, 3 Mar 2009 18:52:45 +0000 Subject: [PATCH] ZF-5926: Fix erroneous call to post() instead of insertEntry() in Zend_Gdata-Introduction manual page. Review URL: http://codereview.appspot.com/22060 git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@14212 44c647ce-9c0f-0410-b52a-842ac1e357ba --- .../en/module_specs/Zend_Gdata-Introduction.xml | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/documentation/manual/en/module_specs/Zend_Gdata-Introduction.xml b/documentation/manual/en/module_specs/Zend_Gdata-Introduction.xml index a3f5c70a8..26c03d298 100644 --- a/documentation/manual/en/module_specs/Zend_Gdata-Introduction.xml +++ b/documentation/manual/en/module_specs/Zend_Gdata-Introduction.xml @@ -634,25 +634,25 @@ foreach ($feed as $entry) { Posting Entries to Google Servers - The Zend_Gdata object has a function post() - with which you can upload data to save new entries - to Google Data services. + The Zend_Gdata object has a function + insertEntry() with which you can upload data to save + new entries to Google Data services. - You can use the data model classes for each service to - construct the appropriate entry to post to Google's - services. The post() function will - accept a child of Zend_Gdata_App_Entry as data to - post to the service. The method returns a child - of Zend_Gdata_App_Entry which represents the state - of the entry as it was returned from the server. + You can use the data model classes for each service to construct + the appropriate entry to post to Google's services. The + insertEntry() function will accept a child of + Zend_Gdata_App_Entry as data to post to the service. + The method returns a child of Zend_Gdata_App_Entry + which represents the state of the entry as it was returned from + the server. - Alternatively, you could construct the XML structure - for an entry as a string and pass the string to the - post() function. + Alternatively, you could construct the XML structure for an entry + as a string and pass the string to the insertEntry() + function.