実験的に開発した小さなプログラムやWebサービスを公開。また、気になった最新IT技術情報をブログ形式でメモ。
ファイル構成 (Ver1.0.0)
大きく分けて以下の構成になっています。
・ demos ディレクトリ
- サンプルコードが置かれているディレクトリ
・ incubator ディレクトリ
- コア(library)に採用予定のファイルが置かれ、一部コアライブラリに連携して使用される。安定版として認められた時点でコアへ移動する。
・ library ディレクトリ
- Zend Frameworkのコアライブラリが置かれている。
・ tests ディレクトリ
- 各ライブラリをテストするコードが置かれている。利用するにはPEAR::PHPUnit2が必要。
・ INSTALL.txt - インストールに関する説明
・ LICENSE.txt - ライセンス情報
・ NEW.txt - 前リリースとの差異が箇条書きで書かれている
・ README.txt - 全体の概要を説明
・ VERSION.txt - バージョン情報
以下ディレクトリツリー
├─tests
│ └─Zend
│ ├─_files
│ │ ├─_testDir2
│ │ └─_testDir1
│ │ └─Class1
│ ├─XmlRpc
│ │ ├─Server
│ │ └─Request
│ ├─View
│ │ ├─_templates
│ │ ├─_stubs
│ │ │ ├─HelperDir2
│ │ │ ├─HelperDir1
│ │ │ └─FilterDir1
│ │ └─Helper
│ ├─Validate
│ ├─Uri
│ ├─Translate
│ │ └─_files
│ ├─Session
│ ├─Service
│ │ ├─Yahoo
│ │ ├─StrikeIron
│ │ ├─Flickr
│ │ │ └─_files
│ │ ├─Delicious
│ │ ├─Audioscrobbler
│ │ └─Amazon
│ ├─Server
│ │ └─Reflection
│ ├─Search
│ │ └─Lucene
│ │ ├─_files
│ │ │ ├─_indexSource
│ │ │ ├─_indexSample
│ │ │ └─_index
│ │ ├─Storage
│ │ │ ├─_tempFiles
│ │ │ └─_files
│ │ └─Index
│ │ └─_files
│ │ └─_source
│ ├─Rest
│ │ └─responses
│ ├─Pdf
│ │ ├─_fonts
│ │ ├─_files
│ │ └─Element
│ │ ├─String
│ │ └─Object
│ ├─Mime
│ ├─Memory
│ │ └─_files
│ ├─Measure
│ │ ├─Viscosity
│ │ ├─Flow
│ │ └─Cooking
│ ├─Mail
│ │ └─_files
│ │ ├─test.mbox
│ │ │ └─subfolder
│ │ └─test.maildir
│ ├─Log
│ │ ├─Writer
│ │ ├─Formatter
│ │ └─Filter
│ ├─Locale
│ ├─Loader
│ ├─Http
│ │ ├─_files
│ │ └─Client
│ │ └─_files
│ ├─Gdata
│ │ ├─_files
│ │ ├─Spreadsheets
│ │ │ └─_files
│ │ ├─Calendar
│ │ │ └─_files
│ │ └─App
│ │ └─_files
│ ├─Filter
│ │ └─_files
│ │ └─TestNamespace
│ ├─Feed
│ │ └─_files
│ ├─Db
│ │ ├─TestUtil
│ │ │ └─Pdo
│ │ ├─Table
│ │ │ ├─_files
│ │ │ ├─Rowset
│ │ │ │ └─Pdo
│ │ │ ├─Row
│ │ │ │ └─Pdo
│ │ │ ├─Relationships
│ │ │ │ └─Pdo
│ │ │ └─Pdo
│ │ ├─Statement
│ │ │ └─Pdo
│ │ ├─Select
│ │ │ └─Pdo
│ │ ├─Profiler
│ │ │ └─Pdo
│ │ └─Adapter
│ │ └─Pdo
│ ├─Date
│ ├─Controller
│ │ ├─_files
│ │ │ ├─modules
│ │ │ │ ├─foo
│ │ │ │ │ ├─views
│ │ │ │ │ │ └─helpers
│ │ │ │ │ └─controllers
│ │ │ │ │ └─Admin
│ │ │ │ ├─default
│ │ │ │ │ └─controllers
│ │ │ │ └─bar
│ │ │ │ ├─views
│ │ │ │ │ ├─helpers
│ │ │ │ │ └─filters
│ │ │ │ └─controllers
│ │ │ ├─Helpers
│ │ │ └─Admin
│ │ ├─views
│ │ │ ├─helpers
│ │ │ └─filters
│ │ ├─Router
│ │ │ └─Route
│ │ ├─Response
│ │ ├─Request
│ │ ├─Plugin
│ │ ├─Dispatcher
│ │ └─Action
│ │ └─Helper
│ ├─Console
│ ├─Config
│ │ └─_files
│ ├─Cache
│ └─Auth
│ └─Adapter
│ ├─Http
│ │ ├─_files
│ │ └─Resolver
│ ├─Digest
│ │ └─_files
│ └─DbTable
├─library
│ └─Zend
│ ├─XmlRpc
│ │ ├─Value
│ │ ├─Server
│ │ ├─Response
│ │ ├─Request
│ │ └─Client
│ ├─View
│ │ ├─Helper
│ │ └─Filter
│ ├─Validate
│ │ └─Hostname
│ ├─Uri
│ ├─Translate
│ │ └─Adapter
│ ├─Session
│ │ ├─Validator
│ │ └─SaveHandler
│ ├─Service
│ │ ├─Yahoo
│ │ ├─StrikeIron
│ │ ├─Simpy
│ │ ├─Flickr
│ │ ├─Delicious
│ │ └─Amazon
│ ├─Server
│ │ └─Reflection
│ │ └─Function
│ ├─Search
│ │ └─Lucene
│ │ ├─Storage
│ │ │ ├─File
│ │ │ └─Directory
│ │ ├─Search
│ │ │ ├─Weight
│ │ │ ├─Similarity
│ │ │ ├─QueryEntry
│ │ │ └─Query
│ │ ├─Index
│ │ │ └─SegmentWriter
│ │ ├─Document
│ │ └─Analysis
│ │ ├─TokenFilter
│ │ └─Analyzer
│ │ └─Common
│ │ ├─TextNum
│ │ └─Text
│ ├─Rest
│ │ ├─Server
│ │ └─Client
│ ├─Request
│ ├─Pdf
│ │ ├─Trailer
│ │ ├─Resource
│ │ │ ├─Image
│ │ │ └─Font
│ │ │ ├─Standard
│ │ │ └─OpenType
│ │ ├─Parser
│ │ ├─Filter
│ │ │ └─Compression
│ │ ├─FileParserDataSource
│ │ ├─FileParser
│ │ │ ├─Image
│ │ │ └─Font
│ │ │ └─OpenType
│ │ ├─ElementFactory
│ │ ├─Element
│ │ │ ├─String
│ │ │ ├─Reference
│ │ │ └─Object
│ │ ├─Color
│ │ └─Cmap
│ │ └─ByteEncoding
│ ├─Mime
│ ├─Memory
│ │ └─Container
│ ├─Measure
│ │ ├─Viscosity
│ │ ├─Flow
│ │ └─Cooking
│ ├─Mail
│ │ ├─Transport
│ │ ├─Storage
│ │ │ ├─Writable
│ │ │ └─Folder
│ │ └─Protocol
│ │ └─Smtp
│ │ └─Auth
│ ├─Log
│ │ ├─Writer
│ │ ├─Formatter
│ │ └─Filter
│ ├─Locale
│ │ ├─Math
│ │ └─Data
│ ├─Json
│ ├─Http
│ │ └─Client
│ │ └─Adapter
│ ├─Gdata
│ │ ├─Spreadsheets
│ │ │ └─Extension
│ │ ├─Kind
│ │ ├─Extension
│ │ ├─Calendar
│ │ │ └─Extension
│ │ └─App
│ │ └─Extension
│ ├─Filter
│ ├─Feed
│ │ ├─Entry
│ │ └─Builder
│ │ └─Header
│ ├─Db
│ │ ├─Table
│ │ │ ├─Rowset
│ │ │ └─Row
│ │ ├─Statement
│ │ │ ├─Oracle
│ │ │ ├─Mysqli
│ │ │ └─Db2
│ │ ├─Select
│ │ ├─Profiler
│ │ └─Adapter
│ │ ├─Pdo
│ │ ├─Oracle
│ │ ├─Mysqli
│ │ └─Db2
│ ├─Date
│ ├─Controller
│ │ ├─Router
│ │ │ └─Route
│ │ ├─Response
│ │ ├─Request
│ │ ├─Plugin
│ │ ├─Dispatcher
│ │ └─Action
│ │ └─Helper
│ ├─Console
│ │ └─Getopt
│ ├─Config
│ ├─Cache
│ │ ├─Frontend
│ │ └─Backend
│ ├─Auth
│ │ ├─Storage
│ │ └─Adapter
│ │ └─Http
│ │ └─Resolver
│ └─Acl
│ ├─Role
│ │ └─Registry
│ ├─Resource
│ └─Assert
├─incubator
│ ├─tools
│ │ └─http_server
│ │ └─src
│ ├─tests
│ │ └─Zend
│ │ ├─Soap
│ │ │ ├─Wsdl
│ │ │ └─schemas
│ │ ├─Service
│ │ ├─Registry
│ │ ├─Json
│ │ ├─Http
│ │ ├─Filter
│ │ │ └─_files
│ │ ├─Db
│ │ │ ├─TestUtil
│ │ │ │ └─Pdo
│ │ │ ├─Table
│ │ │ │ ├─Rowset
│ │ │ │ │ └─Pdo
│ │ │ │ ├─Row
│ │ │ │ │ └─Pdo
│ │ │ │ ├─Relationships
│ │ │ │ │ └─Pdo
│ │ │ │ └─Pdo
│ │ │ ├─Statement
│ │ │ │ └─Pdo
│ │ │ ├─Select
│ │ │ │ └─Pdo
│ │ │ └─Adapter
│ │ │ └─Pdo
│ │ ├─Currency
│ │ └─Cache
│ ├─library
│ │ └─Zend
│ │ ├─TimeSync
│ │ ├─Soap
│ │ │ ├─Wsdl
│ │ │ │ └─Parser
│ │ │ └─Server
│ │ ├─Service
│ │ ├─Registry
│ │ ├─Mime
│ │ ├─Mail
│ │ │ └─Transport
│ │ ├─Json
│ │ │ └─Server
│ │ ├─Http
│ │ │ └─Client
│ │ │ └─Adapter
│ │ ├─Filter
│ │ ├─Environment
│ │ │ ├─View
│ │ │ │ ├─Text
│ │ │ │ └─Html
│ │ │ ├─Security
│ │ │ │ └─Test
│ │ │ │ ├─Session
│ │ │ │ ├─Curl
│ │ │ │ ├─Core
│ │ │ │ └─CGI
│ │ │ ├─Module
│ │ │ └─Container
│ │ ├─Db
│ │ │ ├─Xml
│ │ │ ├─Statement
│ │ │ │ └─Pdo
│ │ │ └─Adapter
│ │ │ └─Pdo
│ │ ├─Controller
│ │ │ └─Action
│ │ │ └─Helper
│ │ ├─Cache
│ │ │ └─Backend
│ │ └─Auth
│ │ └─Adapter
│ └─demos
│ └─Zend
│ ├─Service
│ │ └─Audioscrobbler
│ ├─Locale
│ ├─Gdata
│ └─Acl
└─demos
└─Zend
├─WebServices
│ ├─Yahoo
│ ├─Protocols
│ ├─Flickr
│ └─Amazon
├─Search
│ └─Lucene
│ ├─indexing
│ │ └─IndexSource
│ └─feed-search
├─Pdf
├─Mail
│ ├─mbox
│ │ └─subfolder
│ └─maildir
├─Gdata
└─Feeds
│ └─Zend
│ ├─_files
│ │ ├─_testDir2
│ │ └─_testDir1
│ │ └─Class1
│ ├─XmlRpc
│ │ ├─Server
│ │ └─Request
│ ├─View
│ │ ├─_templates
│ │ ├─_stubs
│ │ │ ├─HelperDir2
│ │ │ ├─HelperDir1
│ │ │ └─FilterDir1
│ │ └─Helper
│ ├─Validate
│ ├─Uri
│ ├─Translate
│ │ └─_files
│ ├─Session
│ ├─Service
│ │ ├─Yahoo
│ │ ├─StrikeIron
│ │ ├─Flickr
│ │ │ └─_files
│ │ ├─Delicious
│ │ ├─Audioscrobbler
│ │ └─Amazon
│ ├─Server
│ │ └─Reflection
│ ├─Search
│ │ └─Lucene
│ │ ├─_files
│ │ │ ├─_indexSource
│ │ │ ├─_indexSample
│ │ │ └─_index
│ │ ├─Storage
│ │ │ ├─_tempFiles
│ │ │ └─_files
│ │ └─Index
│ │ └─_files
│ │ └─_source
│ ├─Rest
│ │ └─responses
│ │ ├─_fonts
│ │ ├─_files
│ │ └─Element
│ │ ├─String
│ │ └─Object
│ ├─Mime
│ ├─Memory
│ │ └─_files
│ ├─Measure
│ │ ├─Viscosity
│ │ ├─Flow
│ │ └─Cooking
│ │ └─_files
│ │ ├─test.mbox
│ │ │ └─subfolder
│ │ └─test.maildir
│ ├─Log
│ │ ├─Writer
│ │ ├─Formatter
│ │ └─Filter
│ ├─Locale
│ ├─Loader
│ ├─Http
│ │ ├─_files
│ │ └─Client
│ │ └─_files
│ ├─Gdata
│ │ ├─_files
│ │ ├─Spreadsheets
│ │ │ └─_files
│ │ ├─Calendar
│ │ │ └─_files
│ │ └─App
│ │ └─_files
│ ├─Filter
│ │ └─_files
│ │ └─TestNamespace
│ ├─Feed
│ │ └─_files
│ ├─Db
│ │ ├─TestUtil
│ │ │ └─Pdo
│ │ ├─Table
│ │ │ ├─_files
│ │ │ ├─Rowset
│ │ │ │ └─Pdo
│ │ │ ├─Row
│ │ │ │ └─Pdo
│ │ │ ├─Relationships
│ │ │ │ └─Pdo
│ │ │ └─Pdo
│ │ ├─Statement
│ │ │ └─Pdo
│ │ ├─Select
│ │ │ └─Pdo
│ │ ├─Profiler
│ │ │ └─Pdo
│ │ └─Adapter
│ │ └─Pdo
│ ├─Date
│ ├─Controller
│ │ ├─_files
│ │ │ ├─modules
│ │ │ │ ├─foo
│ │ │ │ │ ├─views
│ │ │ │ │ │ └─helpers
│ │ │ │ │ └─controllers
│ │ │ │ │ └─Admin
│ │ │ │ ├─default
│ │ │ │ │ └─controllers
│ │ │ │ └─bar
│ │ │ │ ├─views
│ │ │ │ │ ├─helpers
│ │ │ │ │ └─filters
│ │ │ │ └─controllers
│ │ │ ├─Helpers
│ │ │ └─Admin
│ │ ├─views
│ │ │ ├─helpers
│ │ │ └─filters
│ │ ├─Router
│ │ │ └─Route
│ │ ├─Response
│ │ ├─Request
│ │ ├─Plugin
│ │ ├─Dispatcher
│ │ └─Action
│ │ └─Helper
│ ├─Console
│ ├─Config
│ │ └─_files
│ ├─Cache
│ └─Auth
│ └─Adapter
│ ├─Http
│ │ ├─_files
│ │ └─Resolver
│ ├─Digest
│ │ └─_files
│ └─DbTable
├─library
│ └─Zend
│ ├─XmlRpc
│ │ ├─Value
│ │ ├─Server
│ │ ├─Response
│ │ ├─Request
│ │ └─Client
│ ├─View
│ │ ├─Helper
│ │ └─Filter
│ ├─Validate
│ │ └─Hostname
│ ├─Uri
│ ├─Translate
│ │ └─Adapter
│ ├─Session
│ │ ├─Validator
│ │ └─SaveHandler
│ ├─Service
│ │ ├─Yahoo
│ │ ├─StrikeIron
│ │ ├─Simpy
│ │ ├─Flickr
│ │ ├─Delicious
│ │ └─Amazon
│ ├─Server
│ │ └─Reflection
│ │ └─Function
│ ├─Search
│ │ └─Lucene
│ │ ├─Storage
│ │ │ ├─File
│ │ │ └─Directory
│ │ ├─Search
│ │ │ ├─Weight
│ │ │ ├─Similarity
│ │ │ ├─QueryEntry
│ │ │ └─Query
│ │ ├─Index
│ │ │ └─SegmentWriter
│ │ ├─Document
│ │ └─Analysis
│ │ ├─TokenFilter
│ │ └─Analyzer
│ │ └─Common
│ │ ├─TextNum
│ │ └─Text
│ ├─Rest
│ │ ├─Server
│ │ └─Client
│ ├─Request
│ │ ├─Trailer
│ │ ├─Resource
│ │ │ ├─Image
│ │ │ └─Font
│ │ │ ├─Standard
│ │ │ └─OpenType
│ │ ├─Parser
│ │ ├─Filter
│ │ │ └─Compression
│ │ ├─FileParserDataSource
│ │ ├─FileParser
│ │ │ ├─Image
│ │ │ └─Font
│ │ │ └─OpenType
│ │ ├─ElementFactory
│ │ ├─Element
│ │ │ ├─String
│ │ │ ├─Reference
│ │ │ └─Object
│ │ ├─Color
│ │ └─Cmap
│ │ └─ByteEncoding
│ ├─Mime
│ ├─Memory
│ │ └─Container
│ ├─Measure
│ │ ├─Viscosity
│ │ ├─Flow
│ │ └─Cooking
│ │ ├─Transport
│ │ ├─Storage
│ │ │ ├─Writable
│ │ │ └─Folder
│ │ └─Protocol
│ │ └─Smtp
│ │ └─Auth
│ ├─Log
│ │ ├─Writer
│ │ ├─Formatter
│ │ └─Filter
│ ├─Locale
│ │ ├─Math
│ │ └─Data
│ ├─Json
│ ├─Http
│ │ └─Client
│ │ └─Adapter
│ ├─Gdata
│ │ ├─Spreadsheets
│ │ │ └─Extension
│ │ ├─Kind
│ │ ├─Extension
│ │ ├─Calendar
│ │ │ └─Extension
│ │ └─App
│ │ └─Extension
│ ├─Filter
│ ├─Feed
│ │ ├─Entry
│ │ └─Builder
│ │ └─Header
│ ├─Db
│ │ ├─Table
│ │ │ ├─Rowset
│ │ │ └─Row
│ │ ├─Statement
│ │ │ ├─Oracle
│ │ │ ├─Mysqli
│ │ │ └─Db2
│ │ ├─Select
│ │ ├─Profiler
│ │ └─Adapter
│ │ ├─Pdo
│ │ ├─Oracle
│ │ ├─Mysqli
│ │ └─Db2
│ ├─Date
│ ├─Controller
│ │ ├─Router
│ │ │ └─Route
│ │ ├─Response
│ │ ├─Request
│ │ ├─Plugin
│ │ ├─Dispatcher
│ │ └─Action
│ │ └─Helper
│ ├─Console
│ │ └─Getopt
│ ├─Config
│ ├─Cache
│ │ ├─Frontend
│ │ └─Backend
│ ├─Auth
│ │ ├─Storage
│ │ └─Adapter
│ │ └─Http
│ │ └─Resolver
│ └─Acl
│ ├─Role
│ │ └─Registry
│ ├─Resource
│ └─Assert
├─incubator
│ ├─tools
│ │ └─http_server
│ │ └─src
│ ├─tests
│ │ └─Zend
│ │ ├─Soap
│ │ │ ├─Wsdl
│ │ │ └─schemas
│ │ ├─Service
│ │ ├─Registry
│ │ ├─Json
│ │ ├─Http
│ │ ├─Filter
│ │ │ └─_files
│ │ ├─Db
│ │ │ ├─TestUtil
│ │ │ │ └─Pdo
│ │ │ ├─Table
│ │ │ │ ├─Rowset
│ │ │ │ │ └─Pdo
│ │ │ │ ├─Row
│ │ │ │ │ └─Pdo
│ │ │ │ ├─Relationships
│ │ │ │ │ └─Pdo
│ │ │ │ └─Pdo
│ │ │ ├─Statement
│ │ │ │ └─Pdo
│ │ │ ├─Select
│ │ │ │ └─Pdo
│ │ │ └─Adapter
│ │ │ └─Pdo
│ │ ├─Currency
│ │ └─Cache
│ ├─library
│ │ └─Zend
│ │ ├─TimeSync
│ │ ├─Soap
│ │ │ ├─Wsdl
│ │ │ │ └─Parser
│ │ │ └─Server
│ │ ├─Service
│ │ ├─Registry
│ │ ├─Mime
│ │ │ └─Transport
│ │ ├─Json
│ │ │ └─Server
│ │ ├─Http
│ │ │ └─Client
│ │ │ └─Adapter
│ │ ├─Filter
│ │ ├─Environment
│ │ │ ├─View
│ │ │ │ ├─Text
│ │ │ │ └─Html
│ │ │ ├─Security
│ │ │ │ └─Test
│ │ │ │ ├─Session
│ │ │ │ ├─Curl
│ │ │ │ ├─Core
│ │ │ │ └─CGI
│ │ │ ├─Module
│ │ │ └─Container
│ │ ├─Db
│ │ │ ├─Xml
│ │ │ ├─Statement
│ │ │ │ └─Pdo
│ │ │ └─Adapter
│ │ │ └─Pdo
│ │ ├─Controller
│ │ │ └─Action
│ │ │ └─Helper
│ │ ├─Cache
│ │ │ └─Backend
│ │ └─Auth
│ │ └─Adapter
│ └─demos
│ └─Zend
│ ├─Service
│ │ └─Audioscrobbler
│ ├─Locale
│ ├─Gdata
│ └─Acl
└─demos
└─Zend
├─WebServices
│ ├─Yahoo
│ ├─Protocols
│ ├─Flickr
│ └─Amazon
├─Search
│ └─Lucene
│ ├─indexing
│ │ └─IndexSource
│ └─feed-search
│ ├─mbox
│ │ └─subfolder
│ └─maildir
├─Gdata
└─Feeds

RSS Feed