Changeset 844
- Timestamp:
- 02/08/08 17:59:29
- Files:
-
- apps/notifier/app/models/note.php (added)
- apps/notifier/app/resources (added)
- apps/notifier/app/resources/notes_resource.php (added)
- apps/notifier/app/resources/public_timeline_resource.php (added)
- apps/notifier/conf/environments/development.php (modified) (1 diff)
- apps/notifier/conf/routes.php (modified) (1 diff)
- apps/notifier/db/db_schema.php (added)
- apps/notifier/log/development.log (deleted)
- apps/notifier/log/production.log (deleted)
- apps/notifier/log/test.log (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
apps/notifier/conf/environments/development.php
r835 r844 2 2 3 3 // Show full error reports and disable caching 4 $config->action_controller->consider_all_requests_local = true;4 $config->action_controller->consider_all_requests_local = false; 5 5 $config->action_controller->perform_caching = false; 6 $config->active_record->log_sql = true; 6 7 7 8 ?> apps/notifier/conf/routes.php
r835 r844 2 2 3 3 $map = new SRouteSet(); 4 $map->connect('api/notes/:id', array('resource' => 'notes')); 5 $map->connect('api/public_timeline', array('resource' => 'public_timeline')); 4 6 $map->connect(':controller/:action/:id'); 5 7
