Changeset 1185 for trunk/config
- Timestamp:
- 10/07/08 11:03:16 (2 months ago)
- Files:
-
- trunk (modified) (1 prop)
- trunk/config (modified) (1 prop)
- trunk/config/DEFAULT-config.php (modified) (1 diff)
- trunk/config/DEFAULT-database.yml (copied) (copied from branches/arnoschn/cache/config/DEFAULT-database.yml)
- trunk/config/caching.yml (copied) (copied from branches/arnoschn/cache/config/caching.yml) (1 diff)
- trunk/config/inflector (copied) (copied from branches/arnoschn/cache/config/inflector)
- trunk/config/inflector.yml (copied) (copied from branches/arnoschn/cache/config/inflector.yml)
- trunk/config/inflector/es.yml (copied) (copied from branches/arnoschn/cache/config/inflector/es.yml)
- trunk/config/locales/en.php (modified) (1 diff)
- trunk/config/locales/es.php (modified) (1 diff)
- trunk/config/locales/ja.php (modified) (1 diff)
- trunk/config/mailer.yml (modified) (1 diff)
- trunk/config/sample (copied) (copied from branches/arnoschn/cache/config/sample)
- trunk/config/sample/DEFAULT-DB-caching.yml (copied) (copied from branches/arnoschn/cache/config/sample/DEFAULT-DB-caching.yml)
- trunk/config/sample/DEFAULT-DB-sessions.yml (copied) (copied from branches/arnoschn/cache/config/sample/DEFAULT-DB-sessions.yml)
- trunk/config/sample/DEFAULT-FILE-caching.yml (copied) (copied from branches/arnoschn/cache/config/sample/DEFAULT-FILE-caching.yml)
- trunk/config/sample/DEFAULT-MEMCACHE-caching.yml (copied) (copied from branches/arnoschn/cache/config/sample/DEFAULT-MEMCACHE-caching.yml)
- trunk/config/sample/DEFAULT-MEMCACHE-sessions.yml (copied) (copied from branches/arnoschn/cache/config/sample/DEFAULT-MEMCACHE-sessions.yml)
- trunk/config/sessions.yml (copied) (copied from branches/arnoschn/cache/config/sessions.yml)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk
- Property svn:ignore changed from
tmp/*
to
.project
- Property svn:ignore changed from
trunk/config
- Property svn:ignore set to
plugin_repositories.txt
config.php
routes.php
cache
ci-config.php
ci-config.yaml
mysql.yml
postgres.yml
sqlite.yml
- Property svn:ignore set to
trunk/config/DEFAULT-config.php
r290 r1185 1 1 <?php 2 3 $database_settings = array( 4 'production' => array( 5 'type' => 'mysql', // mysql, sqlite or pgsql 6 'database_file' => '/home/bermi/database.sqlite', // you only need this for SQLite 7 'host' => 'localhost', 8 'port' => '', 9 'database_name' => '', 10 'user' => '', 11 'password' => '', 12 'options' => '' // persistent, debug, fetchmode, new 13 ), 14 15 'development' => array( 16 'type' => 'mysql', 17 'database_file' => '', 18 'host' => 'localhost', 19 'port' => '', 20 'database_name' => '', 21 'user' => '', 22 'password' => '', 23 'options' => '' 24 ), 25 26 // Warning: The database defined as 'testing' will be erased and 27 // re-generated from your development database when you run './script/test app'. 28 // Do not set this db to the same as development or production. 29 'testing' => array( 30 'type' => 'mysql', 31 'database_file' => '', 32 'host' => 'localhost', 33 'port' => '', 34 'database_name' => '', 35 'user' => '', 36 'password' => '', 37 'options' => '' 38 ) 39 ); 40 2 /** 3 * Database configuration in database.yml 4 */ 41 5 // If you want to write/delete/create files or directories using ftp instead of local file 42 6 // access, you can set an ftp connection string like: trunk/config/caching.yml
r1084 r1185 4 4 type: 1 #1=PEAR,2=AdoDB,3=Memcache 5 5 options: 6 cacheDir: ${AK_TMP_DIR} 6 cacheDir: ${AK_TMP_DIR}/cache 7 hashedDirectoryLevel: 2 trunk/config/locales/en.php
r400 r1185 5 5 $locale['charset'] = 'UTF-8'; 6 6 $locale['date_time_format'] = 'Y-m-d H:i:s'; 7 $locale['db_date_time_format'] = 'Y-m-d H:i:s'; 7 8 $locale['date_format'] = 'Y-m-d'; 8 9 $locale['long_date_format'] = 'Y-m-d'; trunk/config/locales/es.php
r400 r1185 5 5 $locale['charset'] = 'UTF-8'; 6 6 $locale['date_time_format'] = 'd/m/Y H:i:s'; 7 $locale['db_date_time_format'] = 'Y-m-d H:i:s'; 7 8 $locale['date_format'] = 'd/m/Y'; 8 9 $locale['long_date_format'] = 'd/m/Y'; trunk/config/locales/ja.php
r409 r1185 5 5 $locale['charset'] = 'UTF-8'; 6 6 $locale['date_time_format'] = 'Y-m-d H:i:s'; 7 $locale['db_date_time_format'] = 'Y-m-d H:i:s'; 7 8 $locale['date_format'] = 'Y-m-d'; 8 9 $locale['long_date_format'] = 'Y-m-d'; trunk/config/mailer.yml
r977 r1185 1 server_settings: 2 address: smtp.gmail.com 3 port: 587 4 domain: localhost 5 user_name: username@gmail.com 6 password: 1234 7 authentication: login 1 default: 2 server_settings: 3 address: smtp.gmail.com 4 port: 587 5 domain: localhost 6 user_name: username@gmail.com 7 password: 1234 8 authentication: login
