summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2010-03-02rewrite of Loader classDerek Jones1-142/+198
killed scaffolding added @PHP4 tags
2010-03-02renamed classDerek Jones1-9/+22
added ability to specify arbitrary path for language file (packages!) added ability to specify lang files that don't end in _lang, or to call file with _lang directly without it adding another _lang suffix
2010-03-02significant rewrite to Input classDerek Jones1-705/+192
some items will be moved to Security class added set_cookie() added UTF-8 uniformity to input
2010-03-02update Hooks to use load_class() from coreDerek Jones1-2/+1
2010-03-02adding @PHP4 tags to Base classesDerek Jones2-2/+4
2010-03-02@PHP4 tags to CodeIgniter.phpDerek Jones1-1/+2
2010-03-02added @PHP4 tags to Compat functionsDerek Jones1-0/+3
2010-03-02killed scaffolding from Controller classDerek Jones1-58/+12
reworked to use is_loaded() and is_php() from Common added PHP4 tag
2010-03-02added config paths class propertyDerek Jones1-36/+107
added assign_to_config() method to override config items via index.php files
2010-03-02whitespace and doc block update to Compat functionsDerek Jones1-1/+4
2010-03-02updated Common functionsDerek Jones1-232/+296
- whitespace formatting - load_class() changes for new structure
2010-03-02updating CodeIgniter.php init fileDerek Jones1-112/+180
2010-03-02adding Unicode class to coreDerek Jones1-0/+165
2010-03-02fixed EOF code comment file locationsDerek Jones17-17/+17
2010-03-02moving core library files out of libraries into new core folderDerek Jones18-0/+0
2010-02-05display_error in driver needs no db referenceDerek Allard2-4/+4
2010-02-04fixing a series of errors in (ironically) error display in some database driversDerek Allard3-5/+5
2010-02-04database_exists extension to allow for databases without list_databases() ↵Derek Allard1-2/+13
functionality
2010-02-04database exists function in dbutilDerek Allard1-0/+14
2010-01-26Misspelled class property in db class. _like_escape_chr, not _like_escape_charGreg Aker6-6/+6
http://codeigniter.com/bug_tracker/bug/9518/
2010-01-26Fixing bug in DB Driver where identifiers could be escaped in some drivers ↵Greg Aker3-3/+3
that can't accept it in the list_fields() function. http://codeigniter.com/bug_tracker/bug/5865/ http://codeigniter.com/bug_tracker/bug/11218/
2010-01-23Added alpha, and sha1 string types to random_string() in the String Helper.Derek Allard1-5/+20
2010-01-18nongreedy regexDerek Allard1-1/+1
2010-01-18updated lang file for unit test changesDerek Allard1-0/+1
2010-01-18The Unit Test Class now has an optional "notes" field available to it, and ↵Derek Allard1-12/+48
allows for discrete display of test result items using $this->unit->set_test_items().
2010-01-17Added 'application/x-msdownload' for .exe files and ↵Derek Allard1-3/+3
''application/x-gzip-compressed' for .tgz files to config/mimes.php
2010-01-17optional precision argument in byte_format()Derek Allard1-6/+8
2010-01-17Added Flock to the list of browsers in the user agent classDerek Allard1-0/+1
2010-01-17adding Chrome to list of browsers for user-agent classDerek Allard1-0/+1
2010-01-17change already made - revertDerek Allard1-1/+1
2010-01-17making get_mime_by_extension case insensitiveDerek Allard1-1/+1
2010-01-17adding the ability for form_open_multipart() to accept string attribute ↵Derek Allard1-1/+9
arguments
2010-01-16adding http headers and config to CI profilerDerek Allard2-6/+77
2010-01-16preg_quote() in parserDerek Allard1-1/+1
2010-01-15adding parse_string methodDerek Allard2-7/+46
adding null values generating an empty cell in table lib
2010-01-15Update to file helper to return FALSE on failure.Greg Aker1-2/+6
2010-01-07changing the second parameter in directory_map to an integer that controls ↵Pascal Kriete1-18/+14
recursion depth. A depth of 0 is fully recursive to maintain backward compatibility with the boolean values.
2010-01-06changed isset() to array_key_exists() in values_parsing() conditional of ↵Derek Jones1-1/+1
XML-RPC class to allow for array keys set with NULL values
2010-01-05updated copyrightsDerek Jones99-99/+99
2009-12-23tweaking the regex for reduce_double_slashes to correctly handle duplicates ↵Pascal Kriete1-1/+1
at the beginning of the string
2009-12-22Added "is_object" into the list of unit tests capable of being run.Derek Allard1-1/+1
2009-12-16Change to CI's db->version() function to allow a list of exceptions for dbs ↵Derek Allard1-5/+11
with functions to return version string, vs SQL queries to return version strings. Currently this list only includes Oracle and SQLite.
2009-12-07Fixed a language key in the profiler: "profiler_no_memory_usage" to ↵Derek Allard1-1/+1
"profiler_no_memory".
2009-12-07Fixed an error in the Zip library that didn't allow downloading on PHP 4 ↵Derek Allard1-2/+4
servers.
2009-12-05tweak in database() to match change to $active_record variableDerek Jones1-1/+1
2009-12-05fixed bug where active record override wasn't being honored properlyDerek Jones2-4/+4
2009-11-27non-backwards compatible change to get_dir_file_info() for performance ↵Derek Jones1-6/+8
reasons, as well as fixing recursive bug
2009-11-20margin fixDerek Allard1-1/+1
2009-11-09incorrect variable name in the smiley helper jsPascal Kriete1-1/+1
2009-11-05added hyphens to allowed characters in GET keys and vals in submitted URLs ↵Derek Jones1-1/+1
in xss_clean()