My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Older

  • Feb 18, 2009
    issue 16 (Work out cascading deletes for HABTM) Status changed by sam.sjk   -  
    Status: Verified
    Status: Verified
  • Feb 18, 2009
    issue 15 (implement Form helper select) Status changed by sam.sjk   -  
    Status: Verified
    Status: Verified
  • Feb 18, 2009
    issue 13 (Add Auth component) Status changed by sam.sjk   -  
    Status: Verified
    Status: Verified
  • Feb 18, 2009
    issue 12 (Create a Blog sample app) Status changed by sam.sjk   -  
    Status: Verified
    Status: Verified
  • Feb 18, 2009
    issue 11 (Feedback not appeaing on screen) Status changed by sam.sjk   -  
    Status: Verified
    Status: Verified
  • Feb 18, 2009
    issue 8 (finish Form::form_get()) Status changed by sam.sjk   -  
    Status: Verified
    Status: Verified
  • Feb 18, 2009
    issue 7 (refactor Form to use ref to controller) Status changed by sam.sjk   -  
    Status: Fixed
    Status: Fixed
  • Feb 18, 2009
    issue 5 (Implement Model relationships for aabot) Status changed by sam.sjk   -  
    Status: Verified
    Status: Verified
  • Feb 18, 2009
    issue 6 (re-implement how models are accessed in views) Status changed by sam.sjk   -  
    Status: Verified
    Status: Verified
  • Feb 18, 2009
    issue 4 (Implemnt form helper for aabot) Status changed by sam.sjk   -  
    Status: Verified
    Status: Verified
  • Feb 18, 2009
    r74 (further cahnges to enable habtm ) committed by sam.sjk   -   further cahnges to enable habtm
    further cahnges to enable habtm
  • Feb 18, 2009
    issue 16 (Work out cascading deletes for HABTM) reported by sam.sjk   -   if a model is deleted, delete all its rows in join tables
    if a model is deleted, delete all its rows in join tables
  • Feb 16, 2009
    r73 (further cahnges to enable habtm ) committed by sam.sjk   -   further cahnges to enable habtm
    further cahnges to enable habtm
  • Feb 15, 2009
    r72 (save habtm working) committed by sam.sjk   -   save habtm working
    save habtm working
  • Feb 13, 2009
    r71 (rewrote the signature to Form::select() public function sele...) committed by sam.sjk   -   rewrote the signature to Form::select() public function select($select_name, $options = array()) {
    rewrote the signature to Form::select() public function select($select_name, $options = array()) {
  • Feb 13, 2009
    r70 (form helper select working for related models) committed by sam.sjk   -   form helper select working for related models
    form helper select working for related models
  • Jan 30, 2009
    issue 15 (implement Form helper select) reported by sam.sjk   -   needs to work with Model has_one has_many and habtm. build generic Model get lookup list for related models (i.e. return id => label, id => label, ...
    needs to work with Model has_one has_many and habtm. build generic Model get lookup list for related models (i.e. return id => label, id => label, ...
  • Jan 29, 2009
    issue 13 (Add Auth component) reported by sam.sjk   -   Use this to determine how to arch components for aabot. At minimum make Auth context aware Use top down development, determine what auth will look like from a controller perspective first.
    Use this to determine how to arch components for aabot. At minimum make Auth context aware Use top down development, determine what auth will look like from a controller perspective first.
  • Jan 29, 2009
    issue 12 (Create a Blog sample app) commented on by sam.sjk   -   === Initial needs === Models: - Users - Posts - Tags Components - Auth
    === Initial needs === Models: - Users - Posts - Tags Components - Auth
  • Jan 29, 2009
    issue 12 (Create a Blog sample app) reported by sam.sjk   -   this will be my first use of abbot so might as well kill 2 birds w/ 1 stone
    this will be my first use of abbot so might as well kill 2 birds w/ 1 stone
  • Jan 29, 2009
    r69 (corrected redirect paths in Users controller) committed by sam.sjk   -   corrected redirect paths in Users controller
    corrected redirect paths in Users controller
  • Jan 29, 2009
    r68 (various bug fixes, still getting back to base functionality...) committed by sam.sjk   -   various bug fixes, still getting back to base functionality so no specifics at this point
    various bug fixes, still getting back to base functionality so no specifics at this point
  • Jan 29, 2009
    issue 11 (Feedback not appeaing on screen) reported by sam.sjk   -   ex: after user::edit, the controller calls if ($user->save($this->form_data)) { $this->feedback = "The User has been updated"; $this->redirect('/admin/users'); .... but nothing on screen
    ex: after user::edit, the controller calls if ($user->save($this->form_data)) { $this->feedback = "The User has been updated"; $this->redirect('/admin/users'); .... but nothing on screen
  • Jan 29, 2009
    issue 10 (form helper is not taking context into account when writing ...) Status changed by sam.sjk   -   fixed, now determine path with this beast $relative_action_url = ltrim(implode('/',array($this->controller->context,$this->controller->name,$this->controller->action)),'/');
    Status: Verified
    fixed, now determine path with this beast $relative_action_url = ltrim(implode('/',array($this->controller->context,$this->controller->name,$this->controller->action)),'/');
    Status: Verified
  • Jan 28, 2009
    issue 10 (form helper is not taking context into account when writing ...) reported by sam.sjk   -   currently for example: Users/edit form posts to /users/edit rather than /admin/users/edit
    currently for example: Users/edit form posts to /users/edit rather than /admin/users/edit
  • Jan 28, 2009
    issue 9 (model->find not working) Status changed by sam.sjk   -   fixed. were not determining action correctly when there was a context so never got to the correct controller action after all
    Status: Invalid
    fixed. were not determining action correctly when there was a context so never got to the correct controller action after all
    Status: Invalid
  • Jan 28, 2009
    issue 9 (model->find not working) reported by sam.sjk   -   Model_Base::find not showing any changed attribs even after setting in controller. protected function admin__over20() { $user = new Model_User(); // could also be: $user->set('active','=',true); $user->set('active',true); $user->set('age','>','20'); $this->set_template('admin/users/index'); $this->payload->users = $user->find(); }
    Model_Base::find not showing any changed attribs even after setting in controller. protected function admin__over20() { $user = new Model_User(); // could also be: $user->set('active','=',true); $user->set('active',true); $user->set('age','>','20'); $this->set_template('admin/users/index'); $this->payload->users = $user->find(); }
  • Jan 25, 2009
    r67 (context now works for actions {context}__{action}() and v...) committed by sam.sjk   -   context now works for actions {context}__{action}() and view folders {context}/{action}.php
    context now works for actions {context}__{action}() and view folders {context}/{action}.php
  • Jan 25, 2009
    r66 (refactored get_segment_value_suffix_parts) committed by sam.sjk   -   refactored get_segment_value_suffix_parts
    refactored get_segment_value_suffix_parts
  • Jan 25, 2009
    r65 (cleanup + debug template working again) committed by sam.sjk   -   cleanup + debug template working again
    cleanup + debug template working again
  • Jan 25, 2009
    r64 (cleanup) committed by sam.sjk   -   cleanup
    cleanup
  • Jan 23, 2009
    r63 (changing mind on dirs for context) committed by sam.sjk   -   changing mind on dirs for context
    changing mind on dirs for context
  • Jan 23, 2009
    r62 (changing mind on dirs for context) committed by sam.sjk   -   changing mind on dirs for context
    changing mind on dirs for context
  • Jan 23, 2009
    r61 (implementing new Router) committed by sam.sjk   -   implementing new Router
    implementing new Router
  • Jan 19, 2009
    r60 (request object for abstraction (this fnctionality was in Rou...) committed by sam.sjk   -   request object for abstraction (this fnctionality was in Router, made sense to move it here)
    request object for abstraction (this fnctionality was in Router, made sense to move it here)
  • Dec 18, 2008
    r59 (working to support /admin/users) committed by sam.sjk   -   working to support /admin/users
    working to support /admin/users
  • Dec 01, 2008
    r58 (renamed default to index removed _action from action method ...) committed by sam.sjk   -   renamed default to index removed _action from action method names
    renamed default to index removed _action from action method names
  • Dec 01, 2008
    r57 (renamed default to index ) committed by sam.sjk   -   renamed default to index
    renamed default to index
  • Dec 01, 2008
    r56 ([No log message]) committed by sam.sjk   -   [No log message]
    [No log message]
  • Nov 30, 2008
    issue 8 (finish Form::form_get()) reported by sam.sjk   -   finish moving from base controller to the form class.
    finish moving from base controller to the form class.
  • Nov 30, 2008
    issue 7 (refactor Form to use ref to controller) reported by sam.sjk   -   replace... private $model_name; private $controller_name; with the ref to controller values
    replace... private $model_name; private $controller_name; with the ref to controller values
  • Nov 27, 2008
    r55 (implemented add/edit to channel and service) committed by sam.sjk   -   implemented add/edit to channel and service
    implemented add/edit to channel and service
  • Nov 27, 2008
    r54 (started form helper build select works) committed by sam.sjk   -   started form helper build select works
    started form helper build select works
  • Nov 23, 2008
    issue 6 (re-implement how models are accessed in views) reported by sam.sjk   -   See User::view now using $this->payload->user = new SimpleDTO($user->findOne()); view is <h1>View User</h1> <?php $user = $payload->user; ?> <dl> <dt><?php h($user->username); ?> (<?php h($user->user_id); ?>)</dt> <dd>SMS Number: <?php h($user->sms_number); ?></dd> <dd>JID: <?php h($user->xmpp_jid); ?></dd> <dd>Age: <?php h($user->age); ?></dd> <dd>Active: <?php h($user->active?'Y':'N'); ?></dd> <?php if($user->Profile) { foreach ($user->Profile as $profile) { ?> <?php } } ?> </dl> <a href="/users">All Users</a>
    See User::view now using $this->payload->user = new SimpleDTO($user->findOne()); view is <h1>View User</h1> <?php $user = $payload->user; ?> <dl> <dt><?php h($user->username); ?> (<?php h($user->user_id); ?>)</dt> <dd>SMS Number: <?php h($user->sms_number); ?></dd> <dd>JID: <?php h($user->xmpp_jid); ?></dd> <dd>Age: <?php h($user->age); ?></dd> <dd>Active: <?php h($user->active?'Y':'N'); ?></dd> <?php if($user->Profile) { foreach ($user->Profile as $profile) { ?> <?php } } ?> </dl> <a href="/users">All Users</a>
  • Nov 23, 2008
    issue 5 (Implement Model relationships for aabot) reported by sam.sjk   -   implement has_one has_many has_and_belongs_to_many belongs_to
    implement has_one has_many has_and_belongs_to_many belongs_to
  • Nov 23, 2008
    issue 4 (Implemnt form helper for aabot) reported by sam.sjk   -   in spirit of cake form helper do $form->text, $form->select, ... then do $form->input (use validation settings for determination)
    in spirit of cake form helper do $form->text, $form->select, ... then do $form->input (use validation settings for determination)
  • Nov 23, 2008
    issue 3 (rework x2http plugin to use botz lib) Status changed by sam.sjk   -   done. working as expected
    Status: Fixed
    done. working as expected
    Status: Fixed
  • Nov 23, 2008
    issue 2 (xmpp reply comes back under a new (random) user) Status changed by sam.sjk   -   fixed by re-implementing as a intercepter
    Status: Fixed
    fixed by re-implementing as a intercepter
    Status: Fixed
  • Nov 23, 2008
    issue 1 (XMPP channel user not showing online) Status changed by sam.sjk   -   fixed by re-implementing plugin as an intercept
    Status: Fixed
    fixed by re-implementing plugin as an intercept
    Status: Fixed
  • Nov 23, 2008
    r53 (CRUD for service and channel implemented) committed by sam.sjk   -   CRUD for service and channel implemented
    CRUD for service and channel implemented
 
Hosted by Google Code