| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-08-08 | Add in the missing 'error' count. | Bharat Mediratta | |
| 2010-06-07 | Improve a comment. | Bharat Mediratta | |
| 2010-03-03 | Update the copyright to 2010. It's only 3 months into the year :-) | Bharat Mediratta | |
| 2010-02-09 | Move diff::compare to be test::diff | Bharat Mediratta | |
| 2010-01-31 | Fix lots of warnings that pop up when we're in E_STRICT mode. They're | Bharat Mediratta | |
| mostly issues around uninitialized variables, calling non-static functions in a static context, calling Session functions directly instead of on its singleton, passing non-variables by reference, and subclasses not using the same interface as the parent class. | |||
| 2010-01-22 | Reload items after saving so that we convert their members to strings. | Bharat Mediratta | |
| 2010-01-21 | Add random_group(). | Bharat Mediratta | |
| 2010-01-20 | improve comment. | Bharat Mediratta | |
| 2010-01-20 | Use the exception itself to print out a nice text message. | Bharat Mediratta | |
| 2010-01-20 | Guard against missing/empty $description. | Bharat Mediratta | |
| 2010-01-20 | Move the error page to the expected location for K24. | Bharat Mediratta | |
| 2010-01-20 | Add random_tag(). | Bharat Mediratta | |
| 2010-01-20 | Add assert_array_equal_to_json(). | Bharat Mediratta | |
| 2010-01-19 | Extend Gallery_Unit_Test_Case instead of Unit_Test_Case. | Bharat Mediratta | |
| 2010-01-19 | Our own version of Unit_Test_Case that adds useful functions like | Bharat Mediratta | |
| assert_equal_array(). | |||
| 2010-01-18 | Add starts_with(). | Bharat Mediratta | |
| 2010-01-18 | Add random_name(). | Bharat Mediratta | |
| 2010-01-17 | Create xxx_unsaved() versions for the case where you want to tinker with the ↵ | Bharat Mediratta | |
| item before it gets saved. | |||
| 2010-01-17 | Add random_photo() | Bharat Mediratta | |
| 2010-01-17 | Add album title in random_album(). | Bharat Mediratta | |
| 2010-01-17 | Helper class for common test methods (like creating albums, photos, | Bharat Mediratta | |
| etc). | |||
| 2010-01-17 | Add special output support for ORM_Validation_Exception | Bharat Mediratta | |
| 2010-01-17 | Special case output for ORM_Validation_Exceptions | Bharat Mediratta | |
| 2009-12-22 | Fix some function definitions (they should be static) | Bharat Mediratta | |
| 2009-12-21 | Add a helper for doing complex string comparisons | Bharat Mediratta | |
| 2009-12-21 | Stop using Kohana::lang. | Bharat Mediratta | |
| 2009-12-21 | Updated for K24 | Bharat Mediratta | |
| 2009-11-25 | Kohana::show_404() -> throw new Kohana_404_Exception() | Bharat Mediratta | |
| 2009-10-28 | Only install and activate modules that have tests to run. | Tim Almdal | |
| 2009-10-23 | Only look for tests that are in the active modules. Update the controller ↵ | Tim Almdal | |
| golden file to reflect the current location of files. | |||
| 2009-10-23 | Change the gallery_unit test to only intall into the test environment, ↵ | Tim Almdal | |
| modules that are active in the non-test environment. | |||
| 2009-09-02 | Run 'graphics::choose_default_toolkit();' to pick a toolkit, which we | Bharat Mediratta | |
| normally do as part of a regular install. | |||
| 2009-06-10 | Update test code to match the change made in ↵ | Bharat Mediratta | |
| 47810c9aec1e6b190a1a90505899669a2c89b770 where we adjust the site_domain in config.php | |||
| 2009-05-28 | Reset the cascading file path properly before reinstalling. | Bharat Mediratta | |
| 2009-05-28 | Print out exception traces for most errors | Bharat Mediratta | |
| 2009-05-27 | Convert a few more references of APPPATH to MODPATH/gallery | Bharat Mediratta | |
| 2009-05-27 | Update all references to the core application to now point to the | Bharat Mediratta | |
| gallery module. This type of mass update is prone to some small bugs. | |||
| 2009-05-26 | Restructure the module lifecycle. | Bharat Mediratta | |
| Install: <module>_installer::install() is called, any necessary tables are created. Activate: <module>_installer::activate() is called. Module controllers are routable, helpers are accessible, etc. The module is in use. Deactivate: <module>_installer::deactivate() is called. Module code is not accessible or routable. Module is *not* in use, but its tables are still around. Uninstall: <module>_installer::uninstall() is called. Module is completely removed from the database. Admin > Modules will install and activate modules, but will only deactivate (will NOT uninstall modules). | |||
| 2009-05-18 | Fix security preambles | Bharat Mediratta | |
| 2009-05-18 | There's a new view for CLI unit test output in the Unit_Test library | Bharat Mediratta | |
| 2009-05-13 | Gee it's May already. Update copyright to 2009. | Bharat Mediratta | |
| 2009-03-19 | Rejigger the way we do reinstalls while Kohana is running. | Bharat Mediratta | |
| core_installer::install() now takes an $initial_install param that allows us to enforce that we're doing a clean install. Use this in both the scaffolding and the unit test code. Greatly simplify the scaffolding uninstall/reinstall code. | |||
| 2009-03-17 | Fix correctness issue if there are no tables (list_tables will return null) | Bharat Mediratta | |
| Clean out the module caches directly now that the module loading robustness code is gone. | |||
| 2009-02-24 | Fix bootstrap / installation issue for unit test framework: | Andy Staudacher | |
| Install user module before installing other modules. E.g. local_import's installation routine depends on the user module to be installed. | |||
| 2009-01-20 | Use xxx_test as the default database name. This means that we no | Bharat Mediratta | |
| longer have to manually tweak database.php, yay! | |||
| 2009-01-08 | Windows fixes: Use mkdir($path, 0777, true) instead of the unportable ↵ | Andy Staudacher | |
| system("mkdir -p $path") | |||
| 2009-01-01 | Change the preamble for views in two ways: | Bharat Mediratta | |
| 1) drop unnecessary semicolon 2) start with <?php for extra security in the case that the server itself doesn't have short_tags enabled (the app won't work, but we need to make sure that we're still secure) | |||
| 2008-12-22 | Remove module.info from infrastructure modules that are effectively | Bharat Mediratta | |
| libraries that would ship with the core. Refactor welcome.php to use the newly refactored module::available() | |||
| 2008-12-22 | Change the way that we track modules. | Bharat Mediratta | |
| Each module now has a "module.info" file that has information about the module, including the core. We can display the installed version, and the version in the code. Also take a first shot at a modules admin page. | |||
| 2008-12-20 | Fix a problem with magenta | Bharat Mediratta | |
