- Starting to convert from the fields system to a get-set system
[isso.git] / dev / changes.txt
1 2.1.0
2 ===============
3 - Removed the unspecifc set() functions in place of hard-coded ones
4 - ** API BRAEK ** removed the tag handler feature of the XML processor
5 - ** API BREAK ** removed the localization module
6 - Use gettext internally for strings
7
8 2.0.2
9 ===============
10 - ** API BREAK ** changed Printer->page_start() to be more internationalization-friendly and to use more CSS rather than nested <div>s [printer.php]
11
12 2.0.1
13 ===============
14 - Added TYPE_NONE as an alias for TYPE_NOCLEAN
15 - Added TYPE_BIN to create a macro in the API that will escape the string as binary, instead of a string
16 - DB_MySQL can now properly escape binary
17 - No longer populate API->values[] when calling API->fetch() [api.php]
18 - Added a parameter in Mail->send() to optionally clear the to list after sending [mail.php]
19 - Added a parameter in API->delete() to optionally stop the running of API->set_existing() [api.php]
20 - Changed some of the API error messages to reflect what actually caused the error [api.php]
21 - Made the Printer->row_text() colspan parameter work more normally [printer.php]
22 - Added Functions->array_strip_empty() to strip empty and null elements from a given array [functions.php]
23
24 2.0.0
25 ===============
26 - Using GNU GPL
27 - Cleaning up phpDoc variable type declarations
28 - Removed iff() [kernel.php]
29 - Removed all phpDoc @see declarations
30 - Cleaning up specifications for phpDoc comments; -type is now cleaner and @access is set for all
31 - Added printer class [printer.php]
32 - Added explain_error_reporting() [kernel.php]
33 - Added installer subsystem functions [installer.php]
34 - Added two style sheets, printer.css.php and installer.css.php
35 - Renamed _message() to message() [kernel.php]
36 - Added PHP5 __construct() support
37 - 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
38 - In message(), the debug stack is now printed in debug mode [kernel.php]
39 - Added an input_clean() function to sanitize input to a given type [kernel.php]
40 - Added a clean() function that will sanitize any value to a given type; this should be used instead of manually calling intval() [kernel.php]
41 - Added an API module to make it easy to manage database interaction. All API classes should sub-class this. [api.php]
42 - Added a force option to ISSO->sanitize() to ignore the magic quotes setting [kernel.php]
43 - Abstracted the database layer to introduce support for MySQL, MySQLi, and PostgreSQL [db.php]
44 - Instance variables are no longer directly accessed; you set them using set() and fetch them using get()
45 - Added check_isso_fields() to see all the available ISSO fields [kernel.php]
46 - Using load() is now done with three parameters: module, name of object to init into, and whether to globalize it [kernel.php]
47 - Added unify_node() in the XML module to make sure that all nodes are unified to make parsed interpretation easier [xml.php]
48 - Added pagination module [pagination.php]
49 - If there are multiple classes under the same function (db_mysql and db_mysqli for instance), they initialize under a package name as well
50 - ISSO->sourcepath is attempted to be automatically set [kernel.php]
51 - Renamed the kernel class from Shared_Object_Framework to ISSO [kernel.php]
52 - Moved Mail->_convert_line_breaks() to Functions->convert_line_breaks()
53 - Optimized the rand() function [functions.php]
54 - Objects no longer use $_isso as a call back, but rather $this->registry (in objects) or $GLOBALS['isso:callback'] (in global scope)
55 - Added explain_error_reporting() so you can get an overview of all the constants and if they're enabled [kernel.php]
56 - Added transaction capabilities to database layers
57 - The mail module now supports multiple recipients and HTML multiparts [mail.php]
58 - ISSO->escape() no longer has a binary option [kernel.php]
59 - Added UTF-8 support to the XML parser [xml.php]
60 - Added a new graphing module to create pie charts [graph_pie.php]
61 - Added ISSO->input_escape() to run ISSO->escape() directly on ISSO->in[] data [kernel.php]
62 - Fixed a long-standing bug of _error_handler() not working properly always [kernel.php]
63