]> Dogcows Code - chaz/p5-CGI-Ex/blob - Changes
CGI::Ex 2.24
[chaz/p5-CGI-Ex] / Changes
1 2.24
2 2008-02-26
3 * Allow for smith.name
4 * Simplify some code in App.
5 * Allow for post_navigate to get called even in case of error.
6 * Added morph_base to App
7 * Added validate_when_data hook.
8 * Added samples/app/app1 which is a path based application
9
10 2.23
11 2007-12-20
12 * Add the onevent load option - make sure validate_if figures into dependencies
13 * Add was_valid, had_error, and was_checked validation options
14 * Add vif_disable option.
15 * Pass more information to clear/set hooks using named args
16
17 2.22
18 2007-12-14
19 * Allow for no errors with a username of "0"
20 * Run hash_form hook before others so dump_history shows it in order of use
21 * Fix Validate error with passing in the field name
22 * Simplify and modernize validate.js
23 * Add onevent: change, blur and submit types.
24 * Add hooks and better overriding to valiate.js
25 * Cleanup Validate.pm pod
26 * Be sure Conf json read requires JSON
27
28 2.21
29 2007-10-18
30 * Add logout_hook to Auth
31 * Remove key_payload
32 * Only accept payload from cram styles
33 * Added disable_simple_cram to enforce protecting server generated payloads
34
35 2.20
36 2007-10-08
37 * Added success_hook and failure_hook to Auth (not documented)
38 * Fix precedence issue in conf reading in App (thanks to Krassimir Berov)
39 * Fix bug in validate.js with LOCAL_PART matching (thanks to Thomas den Braber)
40 * Add support for clear_on_error to validate.js (thanks to Thomas den Braber)
41
42 2.19
43 2007-10-05
44 * Make verify_token more granualar in Auth
45 * Added parse_token method and/or property
46 * Added verify_password method and/or property
47 * Added verify_payload method and/or property
48 * Fix filename based conf reading in App
49 * Added check_valid_auth, handle_success, handle_failure
50 key_loggedout, bounce_on_logout to Auth.
51
52 2.18
53 2007-07-24
54 * Merry Pioneer Day - http://en.wikipedia.org/wiki/Pioneer_Day_(Utah)
55 * Allow for check_valid_auth in App
56 * Allow for set_cookie, delete_cookie, location_bounce to be overridden in Auth
57 * Add get_valid_auth to the history
58 * Massive refactor of CGI::Ex::App
59 * Rename conf_ext to ext_conf to be similar to ext_print and ext_val
60 * Add undocumented conf_die_on_fail (which defaults to true)
61 * Fix bug in handle_error
62 * Allow empty hashrefs passed to Validate - (broken in 2.17)
63 * Add tests to help with Devel::Cover coverage.
64
65 2.17
66 2007-06-26
67 * Add load_conf and conf* methods to App to allow for easier external configuration
68 * Add more documentation
69 * Allow print_content_type('text/html', 'utf-8')
70 * Allow App to pass mimetime and charset to print_out.
71 * Update path methods.
72
73 2.16
74 2007-06-21
75 * Add default __error step which is called by default handle_error method.
76 * Default base_dir_abs to '.'
77
78 2.15
79 2007-06-20
80 * Fix some warning issues with the Recipe sample in App
81 * Cleanup require_auth interface in App (you will want to
82 double check if you have overwritten require_auth in your
83 application to make sure your implementation is still compatible)
84 * Require latest Template::Alloy
85
86 2.14
87 2007-06-12
88 * Moved CGI::Ex::Template to Template::Alloy
89 * Template::Alloy is now required as a dependency
90 * Update some portions of App POD.
91
92 2.13
93 2007-05-21
94 * Added full support for HTML::Template and HTML::Template::Expr.
95 * Added missing HTML::Template::Expr vmethods.
96 * Added support for using Text vmethods as top level items.
97 * Added SYNTAX configuration item.
98 * Added V2EQUALS configuration item.
99 * Broke Extra and HTE out to its own area.
100 * Added many more tests.
101 * Allow QR_PRIVATE to be false.
102
103
104 2.12
105 2007-05-11
106 * Add STAT_TTL
107 * Add NEGATIVE_STAT_TTL
108 * Add WRAPPER configuation
109 * Add ERROR and ERRORS configuration
110 * Cleanup handling of PRE_PROCESS and POST_PROCESS
111 * Add more tests for the file operations
112 * Cleanup some potential argument issues on cached USE and THROW
113
114 2.11 2007-05-07
115 * Add more samples to App synopsis.
116 * Add VIEW directive support to Template.
117 * Update data storage to more easily support TT2 parsers.
118 * Add regex support in Template.
119 * Add CONFIG directive in Template.
120 * Better error reporting.
121 * Allow parser to parse all TT2 tests in TT2 test suite.
122 * Add V2PIPE configuration to provide backward support for TT2 non-inline pipes.
123 * Add vmethod url.
124 * Cleanup argument parsing to be more compatible with TT2.
125
126 2.10 2007-04-27
127 * Allow for fully regex grammar based engine.
128 * Move to generic operator parse tree. All constructs are now only arrayrefs.
129 This should allow for easy porting to other languages.
130 * Allow for nested tags [% "[% 2 %]" | eval %].
131 * Added back in references in Template - but fast and simple.
132 * Allow for regex based TAGS.
133 * Allow for "unquoted" in TAGS.
134 * Catch parsing bug in "1 - + 2" in Template.
135 * Fix minor bug in Template qw() construct.
136 * Re-added ANYCASE support.
137 * Added V1DOLLAR support.
138 * Remove GROUP support from CGI::Ex::Validate.
139 * Allow for crypted passwords to work in Auth.
140
141 2.09 2007-04-05
142 * Add more documentation about file paths
143 * Allow for base_dir_abs to return a single value, or an arrayref of values, or
144 a coderef that returns a single value or arrayref.
145 * Allow CGI::Ex send_status to work on mod_perl2.
146 * Add tests to cover all virtual methods in CGI::Ex::Template.
147 * Bring all virtual methods into line with TT2.18
148
149 2.08 2007-03-02
150 * Allow for digits passed to %*s patterns in format, and fmt or CGI::Ex::Template
151 * Fix bug in validate.js to allow for non-existant fields (with replace)
152 * Warn clean in Validate.pm for non-existant field (with replace)
153 * Fix bug in validate.js with trim_control_chars - was broken entirely
154 * Add no_tag_splitting flag to JSONDump
155 * Allow for more types of numbers to be quoted in JSONDump
156 * Add path_info_map_base method to CGI::Ex::App
157 * Add path_info_map hook to CGI::Ex::App
158 * Updated and added much documentation to CGI::Ex::App
159
160 2.07 2007-01-30
161 * Add clear_app method which flushes items pertaining to navigation.
162 * Allow for CGI::Ex::Template PLUGIN_BASE to be a scalar OR an arrayref.
163 * Add sort keys to DUMP directive
164 * Add trim_control_chars as a validate directive
165 * Allow for . in the QR_PRIVATE of Template
166 * Add dump_parse_expr to CGI::Ex::Template
167 * Fix JSONDump to handle more number cases
168 * Fix JSONDump to output more IE friendly JS
169 * Allow fill to work only with form elements with attributes
170
171 2.06 2006-07-21
172 * Allow for JSONDump to swap --> to --"+">
173 * Fix memory issue in App with closures
174 * Remove weak_copy routine from Template (memory issue)
175
176 2.05 2006-07-19
177 * Allow for CGI::Ex to be compatible with Mandrake and Fedora mod_perl 2, as well as debian mod_perl2
178 and older mod_perl1.
179 * Allow for CGI::Ex::Dump to localize the Data::Dumper options to not stomp on anybody elses toes.
180 * Update various perldoc bugs
181 * Fix JSONDump of \t and \r
182 * Change .as to .fmt to coincide with Perl6 (.as is still there - just not documented)
183
184 2.04 2006-07-10
185 * Allow for items not in group order to get added to validation correctly in CGI::Ex::Validate.
186 * Add samples/index.cgi
187 * Fix samples/app/cgi_ex_* to actually work.
188 * Added CGI::Ex::JSONDump
189 * Change Validate to use JSONDump instaed of JSON
190 * Various perldoc and other bug fixes.
191 * Removed CGI-Ex.spec - use cpan2rpm or cpan2deb instead.
192
193 2.03 2006-06-10
194 * Fix the associativity of operators in Template to match perl
195 * Allow for multiple prefix operators.
196 * Change name of parse_variable to parse_expr
197 * Change name of get_variable to play_expr
198
199 2.02 2006-06-08
200 * Fix the yaml tests
201 * Add failed_sleep to Auth
202 * Various pod fixes
203 * Allow for conf_read and write errors to die - we really do need to have those bubble up.
204 * Fix all tests
205 * Allow for validate.js to work with existing onsubmit handlers of forms
206 * Added "as" virtual methods to Template
207 * Added Virtual Objects to Template
208 * Added self modifiers (*= etc) to Template
209 * Added increment and decrement (++ --) to Template
210 * Allow for scientific notation and hexidecimal in Template
211 * Added int, rand and random virtual methods to Template
212
213 2.01 2006-05-31
214 * Added App refine_path hook.
215 * Added App destroy method.
216 * Fix CGI::Ex::Template perldoc.
217
218 2.00 2006-05-30
219 * Added CGI::Ex::Template and test suites
220 * Allow for CGI::Ex::Template to be fully TT2 syntax compliant
221 * Re-implementation of CGI::Ex::Auth
222 * Allow for step to be automatically untainted during loop in CGI::Ex::App
223 * Fix base_dir_rel to work with "" as the dir in CGI::Ex::App
224 * Bug fixes in CGI::Ex::Fill
225 * Better perldoc in CGI::Ex::Fill
226 * Add named parameter function called fill in CGI::Ex::Fill
227 * DProfd CGI::Ex::Conf for improvements
228 * DProfd CGI::Ex::Validate for improvements
229 * Added conf_read and conf_write methods for Conf
230 * Cleanup of all of the test
231 * Add missing tests
232 * Add Array Prototype fixes from Eamon Daly
233 * Add examples and cleanup to CGI::Ex::App
234 * Cleanup hooks in App (add fill_args and template_args)
235 * Change run_hook syntax in App
236 * Add dump_history with more history information
237 * Integrate CGI::Ex::Auth with App
238
239 1.14 2005-02-28
240 * Bug fix in validate (OR's were not working)
241 * Allow for checking for package existence without require in App
242 * Add hash_swap
243 * Add hash_base
244 * Add add_to_ methods for swap, fill, form, common, and errors
245 * Swap the run_hook order of step and hookname
246 * Allow for untaint in CGI::Ex::Validate
247 * Allow for !field in equals of CGI::Ex::Validate
248 * Allow for return of names in CGI::Ex::Validate
249 * Allow CGI::Ex to work better with CGI/mod_perl1/mod_perl2
250 * Fix required => 0 in javascript
251
252 1.13 2004-12-02
253 * Show more App perldoc examples
254 * Fix some App path bugs
255 * Add more app hooks
256 * Cleanup app code
257 * Allow for Conf to write to each of the types
258
259 1.12 2004-11-10
260 * Show more App perldoc examples
261 * Fix some App path bugs
262 * Change some App method names
263 * Allow for App js_validation
264 * Allow for App validation redirection
265
266 1.11 2004-11-08
267 * Let file path dependent tests succeed
268 * Allow for next current and previous steps in App
269 * Couple of warn cleans in App
270
271 1.10 2004-11-05
272 * Make CGI::Ex::App->print really work with Template
273 * Fix very large javascript variable swapping bug
274 * Numerous upgrades to App
275 * Fix module access in CGI::Ex
276 * Allow validate to populate what_was_validated array
277 * Allow for App to cleanup crossed references
278
279 1.00 2004-04-23
280 * Added set_path method
281 * Added Auth module
282 * Fix validate.js for select-multiple
283 * Fix validate.js for max_values
284 * Add min_in_set and max_in_set types for validate
285 * Add default for validate (sets default value)
286
287 0.99 2004-03-22
288 * Allow swap_template to be called with one argument
289 * Added extended examples in t/samples/cgi_ex_*
290 * Remove dependency on CGI::Util (doesn't exists on some perls)
291 * A few fixes on App
292 * Added set_form
293 * Updated tests
294
295 0.98 2004-03-19
296 * Multiple fixes in Fill module
297 * Updates on perldocs (thanks to Simon Bellwood for bug reports)
298 * Addition of Dump (debug) module
299 * Addition of Die module
300 * Addition of App module
301
302 0.97 2004-03-05
303 * Allow for custom_js type
304 * Fix unshift, shift, and push in ie 5.0
305 * Fix type CC in validate.js
306 * Allow for duplicate field definitions
307
308 0.96 2003-11-26
309 * Fix for pos not resetting in CGI::Ex::Fill
310 * Fix for general items set in self not being passed to generate_js
311 * Workaround for yaml_load.js |- not properly trimming whitespace
312
313 0.94 2003-11-26
314 * Javascript functionality is in.
315
316 0.0 2003-11-01
317 * Version 0.0 checked in
This page took 0.044389 seconds and 4 git commands to generate.