equal
deleted
inserted
replaced
14 * to license@zend.com so we can send you a copy immediately. |
14 * to license@zend.com so we can send you a copy immediately. |
15 * |
15 * |
16 * @category Zend |
16 * @category Zend |
17 * @package Zend_Gdata |
17 * @package Zend_Gdata |
18 * @subpackage Spreadsheets |
18 * @subpackage Spreadsheets |
19 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
20 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @license http://framework.zend.com/license/new-bsd New BSD License |
21 * @version $Id: Spreadsheets.php 20096 2010-01-06 02:05:09Z bkarwin $ |
21 * @version $Id: Spreadsheets.php 24593 2012-01-05 20:35:02Z matthew $ |
22 */ |
22 */ |
23 |
23 |
24 /** |
24 /** |
25 * Zend_Gdata |
25 * Zend_Gdata |
26 */ |
26 */ |
87 * @link http://code.google.com/apis/gdata/spreadsheets.html |
87 * @link http://code.google.com/apis/gdata/spreadsheets.html |
88 * |
88 * |
89 * @category Zend |
89 * @category Zend |
90 * @package Zend_Gdata |
90 * @package Zend_Gdata |
91 * @subpackage Spreadsheets |
91 * @subpackage Spreadsheets |
92 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
92 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
93 * @license http://framework.zend.com/license/new-bsd New BSD License |
93 * @license http://framework.zend.com/license/new-bsd New BSD License |
94 */ |
94 */ |
95 class Zend_Gdata_Spreadsheets extends Zend_Gdata |
95 class Zend_Gdata_Spreadsheets extends Zend_Gdata |
96 { |
96 { |
97 const SPREADSHEETS_FEED_URI = 'http://spreadsheets.google.com/feeds/spreadsheets'; |
97 const SPREADSHEETS_FEED_URI = 'https://spreadsheets.google.com/feeds/spreadsheets'; |
98 const SPREADSHEETS_POST_URI = 'http://spreadsheets.google.com/feeds/spreadsheets/private/full'; |
98 const SPREADSHEETS_POST_URI = 'https://spreadsheets.google.com/feeds/spreadsheets/private/full'; |
99 const WORKSHEETS_FEED_LINK_URI = 'http://schemas.google.com/spreadsheets/2006#worksheetsfeed'; |
99 const WORKSHEETS_FEED_LINK_URI = 'http://schemas.google.com/spreadsheets/2006#worksheetsfeed'; |
100 const LIST_FEED_LINK_URI = 'http://schemas.google.com/spreadsheets/2006#listfeed'; |
100 const LIST_FEED_LINK_URI = 'http://schemas.google.com/spreadsheets/2006#listfeed'; |
101 const CELL_FEED_LINK_URI = 'http://schemas.google.com/spreadsheets/2006#cellsfeed'; |
101 const CELL_FEED_LINK_URI = 'http://schemas.google.com/spreadsheets/2006#cellsfeed'; |
102 const AUTH_SERVICE_NAME = 'wise'; |
102 const AUTH_SERVICE_NAME = 'wise'; |
103 |
103 |