Changeset 20
- Timestamp:
- 12/01/06 18:23:38 (2 years ago)
- Files:
-
- trunk/config/boot.php (modified) (3 diffs)
- trunk/lib/AkActionWebservice.php (modified) (1 diff)
- trunk/lib/AkActionWebservice/AkActionWebServiceApi.php (added)
- trunk/lib/AkCharset.php (modified) (1 diff)
- trunk/test/fixtures/app/apis (added)
- trunk/test/fixtures/app/apis/todo_api.php (added)
- trunk/test/unit/lib/AkActionWebservice (added)
- trunk/test/unit/lib/AkActionWebservice/AkActionWebserviceApi.php (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/config/boot.php
r2 r20 74 74 75 75 ak_define('APP_DIR', AK_BASE_DIR.DS.'app'); 76 ak_define('APIS_DIR', AK_APP_DIR.DS.'apis'); 76 77 ak_define('MODELS_DIR', AK_APP_DIR.DS.'models'); 77 78 ak_define('CONTROLLERS_DIR', AK_APP_DIR.DS.'controllers'); … … 200 201 require_once(AK_LIB_DIR.DS.'Ak.php'); 201 202 203 /* 202 204 if(!AK_CLI && (AK_DEBUG || AK_ENVIRONMENT == 'setup')){ 203 205 include_once(AK_LIB_DIR.DS.'AkDevelopmentErrorHandler.php'); … … 205 207 set_error_handler(array(&$__AkDevelopmentErrorHandler, 'raiseError')); 206 208 } 209 */ 207 210 208 211 ak_define('ACTION_CONTROLLER_DEFAULT_REQUEST_TYPE', 'web_request'); trunk/lib/AkActionWebservice.php
r2 r20 1 1 <?php 2 2 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ 3 4 // WARNING THIS IS EXPERIMENTAL5 3 6 4 // +----------------------------------------------------------------------+ trunk/lib/AkCharset.php
r2 r20 663 663 { 664 664 if(!isset($mapping_array[$char])){ 665 //echo "$char\n<hr>";666 665 return; 667 666 }else{
