Preparing to release 0.45.
[awl.git] / ChangeLog
bloba28b8f2de787c50d85894ebe98dbca5d7a95defa
1 2010-09-20  Andrew McMillan  <andrew@morphoss.com>
2         * [AWLDbDialect] Quote hex numbers as strings.
4 2010-09-11  Andrew McMillan  <andrew@morphoss.com>
5         * [iCalendar/vComponent/vEvent] UTF8 mode for RFC5545 wrap regexes
7 2010-09-10  Andrew McMillan  <andrew@morphoss.com>
8         * [AWLUtilities] Undeclared globals in force_utf8.
9         * [iCalendar,vEvent,vComponent] Fix the line wrapping in V* components.
11 2010-08-30  Andrew McMillan  <andrew@morphoss.com>
12         * [vComponent] Add a function to return a single property.
13         * Slightly better TZname to Olson matching.
15 2010-08-28  Andrew McMillan  <andrew@morphoss.com>
16         * [vComponent] Various changes in use with VCard.
17           - Enforce upercase property names.
18           - Invert array sense for MaskComponents / MaskProperties to match
19             the way it is with the GetProperties, GetComponents.
21 2010-08-26  Andrew McMillan  <andrew@morphoss.com>
22         * Add some basic filter processing for addressbook-query usage.
23         * Wrap password logging in logs behind $c->dbg['password'] = 1;
25 2010-06-23  Andrew McMillan  <andrew@morphoss.com>
26         * [XMLDocument] Add helper for CardDAVElement.
28 2010-06-17  Andrew McMillan  <andrew@morphoss.com>
29         * [Session] Try and clarify the lost password text a little better.
30         * Don't send multipart/form-data if the form is GET.
32 2010-05-28  Andrew McMillan  <debian@mcmillan.net.nz>
33         * [AwlQuery] Fixing backward compatibility with PgQuery.
34         * [AwlQuery] Fix handling of queries with no parameters.
36 2010-05-27  Andrew McMillan  <andrew@morphoss.com>
37         * [iCalendar] Apply correct wrapping for RFC5545.
38         * [iCalendar] Don't add a trailling space when wrapping for RFC5545.
40 2010-05-19  Andrew McMillan  <andrew@morphoss.com>
41         * [vComponent] Generic base class for handling VCALENDAR, VCARD, etc.
42         * Expose transaction state at query level.
43         * No need to return anything from the schema update.
45 2010-05-09  Andrew McMillan  <andrew@morphoss.com>
46         * [Translation] If gettext is not installed, fall back to English.
48 2010-05-08  Andrew McMillan  <andrew@morphoss.com>
49         * Add Australia to the list of possible TZ continents.
51 2010-04-28  Andrew McMillan  <andrew@morphoss.com>
52         * [AwlQuery] Handle setting an alternative connection somewhat better.
53         * [Session] _CheckLogin needs to access $c for external authentication.
54         * Allow for multiple records to have somehow got into the DB.
55         * Better parameter escaping, including escaping ? for older PHP::PDO.
57 2010-04-20  Andrew McMillan  <andrew@morphoss.com>
58         * Replace deprecated split() calls.
60 2010-04-17  Andrew McMillan  <andrew@morphoss.com>
61         * Release 0.43
63 2010-04-15  Andrew McMillan  <andrew@morphoss.com>
64         * [iCalendar] Add and use a new olson_from_tzstring() function.
66 2010-04-14  Andrew McMillan  <andrew@morphoss.com>
67         * We can close this bug now, since it was fixed a wee while ago.
68         * [AwlQuery] Warn if named parameters are passed in incorrectly.
69         * Fix strange alternate reality definition of aparche_read_header.
71 2010-04-12  Andrew McMillan  <andrew@morphoss.com>
72         * Preparing to release 0.43
73         * The new database libraries should be with the library code.
74           Especially since they're being used for more than just DAViCal now.
75 karora@dave:~/projects/awl$ gitlog-to-changelog --since=2010-04-13
76 2010-09-11  Andrew McMillan  <andrew@morphoss.com>
77         * [vComponent] Tweak wrapping one last time.
78         * [iCalendar/vComponent/vEvent] UTF8 mode for RFC5545 wrap regexes
79           The regexes used for wrapping to 72 characters in line with
80           RFC5545 wrapping rules need to be UTF8 aware, otherwise they
81           will break lines in the middle of UTF8 sequences and we get
82           to fail to put both broken parts into the database.
84 2010-09-10  Andrew McMillan  <andrew@morphoss.com>
85         * [AWLUtilities] Undeclared globals in force_utf8.
86         * Ignore Eclipse droppings.
87         * [iCalendar,vEvent,vComponent] Fix the line wrapping in V* components.
88           The wordwrap was not being done in a repeatably reversible manner
89           due to a misguided effort to make it more readable.  This gives up
90           on readability in favour of reversability.
92 2010-09-02  Andrew McMillan  <andrew@morphoss.com>
93         * [vComponent] Revert that last change.
95 2010-08-30  Andrew McMillan  <andrew@morphoss.com>
96         * [vComponent] Add a function to return a single property.
97         * Slightly better TZname to Olson matching.
99 2010-08-28  Andrew McMillan  <andrew@morphoss.com>
100         * [vComponent] Various changes in use with VCard.
101           - Enforce upercase property names.
102           - Invert array sense for MaskComponents / MaskProperties to match
103             the way it is with the GetProperties, GetComponents.
104           - Generally improve the consistency.
106 2010-08-26  Andrew McMillan  <andrew@morphoss.com>
107         * Add some basic filter processing for addressbook-query usage.
108         * Wrap password logging in logs behind $c->dbg['password'] = 1;
110 2010-06-23  Andrew McMillan  <andrew@morphoss.com>
111         * [XMLDocument] Add helper for CardDAVElement.
113 2010-06-17  Andrew McMillan  <andrew@morphoss.com>
114         * [Session] Try and clarify the lost password text a little better.
115         * Don't send multipart/form-data if the form is GET.
117 2010-05-28  Andrew McMillan  <debian@mcmillan.net.nz>
118         * [AwlQuery] Fixing backward compatibility with PgQuery.
119         * [AwlQuery] Fix handling of queries with no parameters.
121 2010-05-27  Andrew McMillan  <andrew@morphoss.com>
122         * [iCalendar] Apply correct wrapping for RFC5545.
123         * [iCalendar] Don't add a trailling space when wrapping for RFC5545.
125 2010-05-19  Andrew McMillan  <andrew@morphoss.com>
126         * [vComponent] Generic base class for handling VCALENDAR, VCARD, etc.
127         * Expose transaction state at query level.
128         * No need to return anything from the schema update.
130 2010-05-09  Andrew McMillan  <andrew@morphoss.com>
131         * [Translation] If gettext is not installed, fall back to English.
133 2010-05-08  Andrew McMillan  <andrew@morphoss.com>
134         * Add Australia to the list of possible TZ continents.
136 2010-04-28  Andrew McMillan  <andrew@morphoss.com>
137         * [AwlQuery] Handle setting an alternative connection somewhat better.
138         * [Session] _CheckLogin needs to access $c for external authentication.
139         * Allow for multiple records to have somehow got into the DB.
140         * Better parameter escaping, including escaping ? for older PHP::PDO.
142 2010-04-20  Andrew McMillan  <andrew@morphoss.com>
143         * Replace deprecated split() calls.
145 2010-04-17  Andrew McMillan  <andrew@morphoss.com>
146         * Release 0.43
148 2010-04-15  Andrew McMillan  <andrew@morphoss.com>
149         * [iCalendar] Add and use a new olson_from_tzstring() function.
151 2010-04-14  Andrew McMillan  <andrew@morphoss.com>
152         * We can close this bug now, since it was fixed a wee while ago.
153         * [AwlQuery] Warn if named parameters are passed in incorrectly.
154         * Fix strange alternate reality definition of aparche_read_header.
156 2010-04-12  Andrew McMillan  <andrew@morphoss.com>
157         * [AwlQuery] Move new database libraries into AWL
159 2010-04-01  Andrew McMillan  <andrew@morphoss.com>
160         * [classEditor] Tidy up logging.
161         * [DataUpdate] Merge sql_from_post() and sql_from_object().
163 2010-03-21  Andrew McMillan  <andrew@morphoss.com>
164         * [PgQuery] Add forward compatibility rows() method.
166 2010-03-18  Andrew McMillan  <andrew@morphoss.com>
167         * [iCalendar] Provide a better deprecation indication.
168         * [iCalendar] Add explicit need for PgQuery and mark stuff deprecated.
170 2010-03-10  Andrew McMillan  <andrew@morphoss.com>
171         * Switch to LGPL v3 license.
173 2010-03-08  Andrew McMillan  <andrew@morphoss.com>
174         * Release 0.42
175         * [XMLDocument] Return any created node. Also parse namespace in tag.
176           These functions are much more useful if we can actually use any
177           returned reference as another location within a document, so we
178           can have a hold of the root, and then add within each new tag
179           we add, supporting outer -> inner construction approaches along
180           with the existing inner -> outer approach used currently.
182 2010-03-07  Andrew McMillan  <andrew@morphoss.com>
183         * Note that the iCalendar class is DEPRECATED.
184         * Don't try to translate null/empty strings.
186 2010-03-05  Andrew McMillan  <andrew@morphoss.com>
187         * Add a PostToValues() method to update form data from POST.
189 2010-02-23  Andrew McMillan  <andrew@morphoss.com>
190         * Release 0.41
191         * [classEditor] Make Create/Apply form translatable.
192         * [User] Yes/No should be translatable.
194 2010-02-18  Andrew McMillan  <andrew@morphoss.com>
195         * [PgQuery] Don't log connection string on error as it may expose the password.
197 2010-02-17  Andrew McMillan  <andrew@morphoss.com>
198         * [DataUpdate] Translate empty string to NULL for bitfields.
200 2010-02-16  Andrew McMillan  <andrew@morphoss.com>
201         * [AWLUtilities] Add support for a legacy plain MD5 password hash
203 2010-02-01  Andrew McMillan  <andrew@morphoss.com>
204         * Move editor widget class into standard libraries.
206 2010-01-30  Andrew McMillan  <andrew@morphoss.com>
207         * [MenuSet] Remove deprecated backward compatibility with PHP4.
208         * Comply with E_STRICT and friends.
209         * [PgQuery] Make duration() conditional in case it is defined elsewhere.
211 2009-12-28  Andrew McMillan  <andrew@morphoss.com>
212         * [XMLElement] Make all properties protected, provide __tostring()
214 2009-12-27  Andrew McMillan  <andrew@morphoss.com>
215         * [XMLDocument] Fix for NS helpers assigning used NS alias.
217 2009-11-22  Andrew McMillan  <andrew@morphoss.com>
218         * [classBrowser] Add a Title() get/set method.
219         * [AWLUtilties] Support precision in type names.
221 2009-11-17  Andrew McMillan  <andrew@morphoss.com>
222         * [XMLElement] Looking for the xmlns attribute should return it.
224 2009-11-14  Andrew McMillan  <andrew@morphoss.com>
225         * Remove opportunity for unassigned value warning.
226         * [XMLElement] Allow the GetElements() method to be called with no tag.
228 2009-11-11  Andrew McMillan  <andrew@morphoss.com>
229         * [AWLUtilities] More generic implementation of request_headers.
231 2009-11-03  Andrew McMillan  <andrew@morphoss.com>
232         * [iCalendar] Comment a bunch of debugging messages.
234 2009-10-30  Matthias Mohr  <Matthias@Mohrenclan.de>
235         * Add translation features.
237 2009-10-20  Andrew McMillan  <andrew@morphoss.com>
238         * Restructure the external link handling.
239         * Add an option for links to open in a new tab/page.
241 2009-10-16  Andrew McMillan  <andrew@morphoss.com>
242         * [Session] Allow username/e-mail for forgotten password to be case-insensitive.
244 2009-09-25  Andrew McMillan <andrew@morphoss.com>
245         * [DataEntry] Remove uninitialised warning possibility.
246         * [XMLDocument] Remove uninitialised warning possibilty.
247         * [iCalendar] Remove deprecated function.  Add some convenience methods.
248         * [classBrowser] Add new replaceable variable for row even/odd ness.
250 2009-09-07  Andrew McMillan <andrew@morphoss.com>
251         * [AWLUtilities] Add a fix_latin() function to convert mixed charset into UTF-8.
253 2008-08-25 Andrew McMillan <andrew@morphoss.com>
255         * [PgQuery] Extend clean_string to recurse through an array.
256         * [DataUpdate] When value for an integer is null or empty string, use db NULL.
258 2009-06-25  Andrew McMillan <andrew@morphoss.com>
259         * [PgQuery] Add the ability for PgQuery to search a non-default schema.
261 2009-06-22  Andrew McMillan <andrew@morphoss.com>
263         * Release 0.37