- Adding TYPE_BIN and support for it in api.php
[isso.git] / dev / changes.txt
1 2.0.1
2 ===============
3 - Added TYPE_NONE as an alias for TYPE_NOCLEAN
4 - Added TYPE_BIN to create a macro in the API that will escape the string as binary, instead of a string
5 - DB_MySQL can now properly escape binary
6
7 2.0.0
8 ===============
9 - Using GNU GPL
10 - Cleaning up phpDoc variable type declarations
11 - Removed iff() [kernel.php]
12 - Removed all phpDoc @see declarations
13 - Cleaning up specifications for phpDoc comments; -type is now cleaner and @access is set for all
14 - Added printer class [printer.php]
15 - Added explain_error_reporting() [kernel.php]
16 - Added installer subsystem functions [installer.php]
17 - Added two style sheets, printer.css.php and installer.css.php
18 - Renamed _message() to message() [kernel.php]
19 - Added PHP5 __construct() support
20 - Removed the magic-quote-mimicing functionality of ISSO's input sanitization system. Applications should now store all text in unescaped form and then use ISSO->escape() when querying the database
21 - In message(), the debug stack is now printed in debug mode [kernel.php]
22 - Added an input_clean() function to sanitize input to a given type [kernel.php]
23 - Added a clean() function that will sanitize any value to a given type; this should be used instead of manually calling intval() [kernel.php]
24 - Added an API module to make it easy to manage database interaction. All API classes should sub-class this. [api.php]
25 - Added a force option to ISSO->sanitize() to ignore the magic quotes setting [kernel.php]
26 - Abstracted the database layer to introduce support for MySQL, MySQLi, and PostgreSQL [db.php]
27 - Instance variables are no longer directly accessed; you set them using set() and fetch them using get()
28 - Added check_isso_fields() to see all the available ISSO fields [kernel.php]
29 - Using load() is now done with three parameters: module, name of object to init into, and whether to globalize it [kernel.php]
30 - Added unify_node() in the XML module to make sure that all nodes are unified to make parsed interpretation easier [xml.php]
31 - Added pagination module [pagination.php]
32 - If there are multiple classes under the same function (db_mysql and db_mysqli for instance), they initialize under a package name as well
33 - ISSO->sourcepath is attempted to be automatically set [kernel.php]
34 - Renamed the kernel class from Shared_Object_Framework to ISSO [kernel.php]
35 - Moved Mail->_convert_line_breaks() to Functions->convert_line_breaks()
36 - Optimized the rand() function [functions.php]
37 - Objects no longer use $_isso as a call back, but rather $this->registry (in objects) or $GLOBALS['isso:callback'] (in global scope)
38 - Added explain_error_reporting() so you can get an overview of all the constants and if they're enabled [kernel.php]
39 - Added transaction capabilities to database layers
40 - The mail module now supports multiple recipients and HTML multiparts [mail.php]
41 - ISSO->escape() no longer has a binary option [kernel.php]
42 - Added UTF-8 support to the XML parser [xml.php]
43 - Added a new graphing module to create pie charts [graph_pie.php]
44 - Added ISSO->input_escape() to run ISSO->escape() directly on ISSO->in[] data [kernel.php]
45 - Fixed a long-standing bug of _error_handler() not working properly always [kernel.php]
46