Zend Framework 가 1.10으로 업데이트 되었다.
작년 이맘때쯤 1.x 초반대였던것을 생각해보면 지난 일년간 꽤 많은 업데이트가 있었다.

재밌는것은 바코드 라이브러리가 들어있다는 사실과 LiveDocx에 대해서 지원한다는 점이다. 공식적으로 패키징되었다는게 매우 의미가 있는것 같다.

또한 Jquery에 대한 지원도 늘어났다는 점이 반갑다.
이전에 ZF에 탑재된 Dojo로 개발하다가 너무 느렸다. 그래서 가장 널리 쓰이는 Jquery로 갈아탔는데, 확실히 이전보다 낫다. 다양한 예제도 많고, 앞으로도 Jquery에 대한 지원을 늘려주면 좋겠다.

이전버전부터 Zend Framework와 Zend Server를 같이 패키지화 하고 있는데 한번 Zend Server도 사용해봐야겠다.

NEW FEATURES

* Zend_Barcode, contributed by Mikael Perraud and Thomas Weidner
* Zend_Cache_Backend_Static, contributed by Pádraic Brady
* Zend_Cache_Manager, contributed by Pádraic Brady
* Zend_Exception - previous exception support, contributed by Marc Bennewitz
* Zend_Feed_Pubsubhubbub, contributed by Pádraic Brady
* Zend_Feed_Writer, contributed by Pádraic Brady
* Zend_Filter_Boolean, contributed by Thomas Weidner
* Zend_Filter_Compress/Decompress, contributed by Thomas Weidner
* Zend_Filter_Null, contributed by Thomas Weidner
* Zend_Log::factory(), contributed by Mark van der Velden and Martin Roest ibuildings
* Zend_Log_Writer_ZendMonitor, contributed by Matthew Weier O'Phinney
* Zend_Markup, contributed by Pieter Kokx
* Zend_Oauth, contributed by Pádraic Brady
* Zend_Serializer, contributed by Marc Bennewitz
* Zend_Service_DeveloperGarden, contributed by Marco Kaiser
* Zend_Service_LiveDocx, contributed by Jonathan Maron
* Zend_Service_WindowsAzure, contributed by Maarten Balliauw
* Zend_Validate_Barcode, contributed by Thomas Weidner
* Zend_Validate_Callback, contributed by Thomas Weidner
* Zend_Validate_CreditCard, contributed by Thomas Weidner
* Zend_Validate_PostCode, contributed by Thomas Weidner
* Additions to Zend_Application resources, including Cachemanager, Dojo, Jquery,
  Layout, Log, Mail, and Multidb (contributed by Dolf Schimmel)
* Refactoring of Zend_Loader::loadClass() to conform to PHP Framework Interop
  Group reference implementation, which allows for autoloading PHP 5.3
  namespaced code
* Updated Dojo version to 1.4

http://www.zendframework.com/download/current/

저작자 표시 비영리 변경 금지
Posted by iHWAN
많은 웹 2.0을 지향하는 서비스들에는 구글(지메일) 연락처를 가져와서 서비스를 한번에 홍보하거나 친구로 등록할 수 있는 기능들이 있다. 

이를 휴팟에 구현하려고 하다가 그 난해함과 국내 자료가 부족하였다. OAuth도 공부하게 되었는데 문제는 구글에서 소개하는 PHP로 하는 방법을 사용하면 오류가 나고 공부해서 구현하려면 몇일은 그냥 까먹을거 같았다. 

결국 한 이틀을 구글링을 하면서 씨름을하다가 IBM Developerworks 에서 찾아냈다. 
PHP + Zend Framework 기반이라 사용하기도 쉽고, 서버에 따로 작업을 할 필요가 없다는 점이 장점이다.

PHP 애플리케이션과 Google Contacts 통합하기

요약:  Google Contacts Data API는 사용자의 개인용 Gmail 연락처 정보를 읽고 수정할 수 있는 강력한 클라이언트 중립적 API를 제공합니다. 애플리케이션 컨텍스트에서 이 API와 함께 사용자 정의 PHP 애플리케이션을 통해 연락처를 검색, 추가, 삭제 및 수정하는 방법에 대해 설명합니다.

구글 주소록 레퍼런스 
http://code.google.com/intl/ko-KR/apis/contacts/docs/3.0/reference.html
저작자 표시
Posted by iHWAN