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: ListQuery.php 20096 2010-01-06 02:05:09Z bkarwin $ |
21 * @version $Id: ListQuery.php 24593 2012-01-05 20:35:02Z matthew $ |
22 */ |
22 */ |
23 |
23 |
24 /** |
24 /** |
25 * Zend_Gdata_App_util |
25 * Zend_Gdata_App_util |
26 */ |
26 */ |
37 * @link http://code.google.com/apis/gdata/calendar/ |
37 * @link http://code.google.com/apis/gdata/calendar/ |
38 * |
38 * |
39 * @category Zend |
39 * @category Zend |
40 * @package Zend_Gdata |
40 * @package Zend_Gdata |
41 * @subpackage Spreadsheets |
41 * @subpackage Spreadsheets |
42 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
42 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
43 * @license http://framework.zend.com/license/new-bsd New BSD License |
43 * @license http://framework.zend.com/license/new-bsd New BSD License |
44 */ |
44 */ |
45 class Zend_Gdata_Spreadsheets_ListQuery extends Zend_Gdata_Query |
45 class Zend_Gdata_Spreadsheets_ListQuery extends Zend_Gdata_Query |
46 { |
46 { |
47 |
47 |
48 const SPREADSHEETS_LIST_FEED_URI = 'http://spreadsheets.google.com/feeds/list'; |
48 const SPREADSHEETS_LIST_FEED_URI = 'https://spreadsheets.google.com/feeds/list'; |
49 |
49 |
50 protected $_defaultFeedUri = self::SPREADSHEETS_LIST_FEED_URI; |
50 protected $_defaultFeedUri = self::SPREADSHEETS_LIST_FEED_URI; |
51 protected $_visibility = 'private'; |
51 protected $_visibility = 'private'; |
52 protected $_projection = 'full'; |
52 protected $_projection = 'full'; |
53 protected $_spreadsheetKey = null; |
53 protected $_spreadsheetKey = null; |