Changeset 22374
- Timestamp:
- 10/30/08 18:15:27 (5 years ago)
- Location:
- events/phpframework/akelos/trunk
- Files:
-
- 44 added
- 8 modified
-
app/controllers/user_controller.php (modified) (1 diff)
-
app/installers/admin_plugin_installer.php (modified) (1 diff)
-
app/installers/status_installer.php (added)
-
app/locales/user/en.php (modified) (1 diff)
-
app/locales/user/ja.php (modified) (1 diff)
-
app/models/status.php (added)
-
app/views/status (added)
-
app/views/status/_form.tpl (added)
-
app/views/status/_pagination.tpl (added)
-
app/views/status/_timeline.tpl (added)
-
app/views/user/_device.tpl (added)
-
app/views/user/_friends.tpl (added)
-
app/views/user/_profile.tpl (added)
-
app/views/user/_tabmenu.tpl (added)
-
app/views/user/home.tpl (added)
-
app/views/user/show.tpl (added)
-
config/admin.yml (modified) (1 diff)
-
config/cache/development/admin.php (modified) (1 diff)
-
config/cache/production/admin.php (modified) (1 diff)
-
config/cache/testing/admin.php (modified) (1 diff)
-
test/fixtures/app/installers/status_installer.php (added)
-
test/fixtures/app/models/status.php (added)
-
test/unit/app/models/status.php (added)
-
tmp/installer_versions/development_status_version.txt (added)
-
tmp/views/app/views/account (added)
-
tmp/views/app/views/account/compiled (added)
-
tmp/views/app/views/account/compiled/sign_in.tpl.php (added)
-
tmp/views/app/views/help (added)
-
tmp/views/app/views/help/compiled (added)
-
tmp/views/app/views/help/compiled/_what.tpl.php (added)
-
tmp/views/app/views/help/compiled/_why.tpl.php (added)
-
tmp/views/app/views/layouts/compiled/page.tpl.php (added)
-
tmp/views/app/views/page (added)
-
tmp/views/app/views/page/compiled (added)
-
tmp/views/app/views/page/compiled/_lang_select.tpl.php (added)
-
tmp/views/app/views/page/compiled/_sign_in.tpl.php (added)
-
tmp/views/app/views/page/compiled/index.tpl.php (added)
-
tmp/views/app/views/status (added)
-
tmp/views/app/views/status/compiled (added)
-
tmp/views/app/views/status/compiled/_form.tpl.php (added)
-
tmp/views/app/views/status/compiled/_listing.tpl.php (added)
-
tmp/views/app/views/status/compiled/_pagination.tpl.php (added)
-
tmp/views/app/views/status/compiled/_timeline.tpl.php (added)
-
tmp/views/app/views/user (added)
-
tmp/views/app/views/user/compiled (added)
-
tmp/views/app/views/user/compiled/_device.tpl.php (added)
-
tmp/views/app/views/user/compiled/_form_status.tpl.php (added)
-
tmp/views/app/views/user/compiled/_friends.tpl.php (added)
-
tmp/views/app/views/user/compiled/_profile.tpl.php (added)
-
tmp/views/app/views/user/compiled/_tabmenu.tpl.php (added)
-
tmp/views/app/views/user/compiled/home.tpl.php (added)
-
tmp/views/app/views/user/compiled/show.tpl.php (added)
Legend:
- Unmodified
- Added
- Removed
-
events/phpframework/akelos/trunk/app/controllers/user_controller.php
r22366 r22374 3 3 class UserController extends ApplicationController 4 4 { 5 public function home() 6 { 7 print_r($this); 8 } 9 10 public function show() 11 { 12 die('tinko'); 13 } 5 14 } 6 7 ?> -
events/phpframework/akelos/trunk/app/installers/admin_plugin_installer.php
r21289 r22374 12 12 password_salt string(16) not null, 13 13 last_login_at, 14 image string, 15 is_private, 14 16 is_enabled bool default 1 15 17 '); -
events/phpframework/akelos/trunk/app/locales/user/en.php
r21289 r22374 39 39 $dictionary['%attribute_name %error'] = '%attribute_name %error'; 40 40 41 // 2008-10-30 15:18:21 42 43 44 $dictionary['Title'] = 'Title'; 45 $dictionary['Footer'] = 'Footer'; 46 $dictionary['About Us'] = 'About Us'; 47 $dictionary['Contact'] = 'Contact'; 48 $dictionary['Blog'] = 'Blog'; 49 $dictionary['Status'] = 'Status'; 50 $dictionary['API'] = 'API'; 51 $dictionary['Search'] = 'Search'; 52 $dictionary['Help'] = 'Help'; 53 $dictionary['Jobs'] = 'Jobs'; 54 $dictionary['TOS'] = 'TOS'; 55 $dictionary['Privacy'] = 'Privacy'; 56 41 57 42 58 ?> -
events/phpframework/akelos/trunk/app/locales/user/ja.php
r21289 r22374 39 39 $dictionary['%attribute_name %error'] = '%attribute_name %error'; 40 40 41 // 2008-10-30 15:18:21 42 43 44 $dictionary['Title'] = 'Title'; 45 $dictionary['Footer'] = 'Footer'; 46 $dictionary['About Us'] = 'About Us'; 47 $dictionary['Contact'] = 'Contact'; 48 $dictionary['Blog'] = 'Blog'; 49 $dictionary['Status'] = 'Status'; 50 $dictionary['API'] = 'API'; 51 $dictionary['Search'] = 'Search'; 52 $dictionary['Help'] = 'Help'; 53 $dictionary['Jobs'] = 'Jobs'; 54 $dictionary['TOS'] = 'TOS'; 55 $dictionary['Privacy'] = 'Privacy'; 56 41 57 42 58 ?> -
events/phpframework/akelos/trunk/config/admin.yml
r22365 r22374 17 17 action: logout 18 18 authentication_url: 19 controller: home20 module: false19 controller: user 20 action: home -
events/phpframework/akelos/trunk/config/cache/development/admin.php
r22365 r22374 28 28 'authentication_url' => 29 29 array ( 30 'controller' => ' dashboard',31 ' module' => 'admin',30 'controller' => 'user', 31 'action' => 'home', 32 32 ), 33 33 ); -
events/phpframework/akelos/trunk/config/cache/production/admin.php
r22365 r22374 28 28 'authentication_url' => 29 29 array ( 30 'controller' => ' dashboard',31 ' module' => 'admin',30 'controller' => 'user', 31 'action' => 'home', 32 32 ), 33 33 ); -
events/phpframework/akelos/trunk/config/cache/testing/admin.php
r22365 r22374 28 28 'authentication_url' => 29 29 array ( 30 'controller' => ' dashboard',31 ' module' => 'admin',30 'controller' => 'user', 31 'action' => 'home', 32 32 ), 33 33 );
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)